PDF rausgenommen
This commit is contained in:
148
msd2/myoos/includes/lib/phpmailer/extras/EasyPeasyICS.php
Normal file
148
msd2/myoos/includes/lib/phpmailer/extras/EasyPeasyICS.php
Normal file
@ -0,0 +1,148 @@
|
||||
<?php
|
||||
/**
|
||||
* EasyPeasyICS Simple ICS/vCal data generator.
|
||||
* @author Marcus Bointon <phpmailer@synchromedia.co.uk>
|
||||
* @author Manuel Reinhard <manu@sprain.ch>
|
||||
*
|
||||
* Built with inspiration from
|
||||
* http://stackoverflow.com/questions/1463480/how-can-i-use-php-to-dynamically-publish-an-ical-file-to-be-read-by-google-calend/1464355#1464355
|
||||
* History:
|
||||
* 2010/12/17 - Manuel Reinhard - when it all started
|
||||
* 2014 PHPMailer project becomes maintainer
|
||||
*/
|
||||
|
||||
/**
|
||||
* Class EasyPeasyICS.
|
||||
* Simple ICS data generator
|
||||
* @package phpmailer
|
||||
* @subpackage easypeasyics
|
||||
*/
|
||||
class EasyPeasyICS
|
||||
{
|
||||
/**
|
||||
* The name of the calendar
|
||||
* @var string
|
||||
*/
|
||||
protected $calendarName;
|
||||
/**
|
||||
* The array of events to add to this calendar
|
||||
* @var array
|
||||
*/
|
||||
protected $events = array();
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
* @param string $calendarName
|
||||
*/
|
||||
public function __construct($calendarName = "")
|
||||
{
|
||||
$this->calendarName = $calendarName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Add an event to this calendar.
|
||||
* @param string $start The start date and time as a unix timestamp
|
||||
* @param string $end The end date and time as a unix timestamp
|
||||
* @param string $summary A summary or title for the event
|
||||
* @param string $description A description of the event
|
||||
* @param string $url A URL for the event
|
||||
* @param string $uid A unique identifier for the event - generated automatically if not provided
|
||||
* @return array An array of event details, including any generated UID
|
||||
*/
|
||||
public function addEvent($start, $end, $summary = '', $description = '', $url = '', $uid = '')
|
||||
{
|
||||
if (empty($uid)) {
|
||||
$uid = md5(uniqid(mt_rand(), true)) . '@EasyPeasyICS';
|
||||
}
|
||||
$event = array(
|
||||
'start' => gmdate('Ymd', $start) . 'T' . gmdate('His', $start) . 'Z',
|
||||
'end' => gmdate('Ymd', $end) . 'T' . gmdate('His', $end) . 'Z',
|
||||
'summary' => $summary,
|
||||
'description' => $description,
|
||||
'url' => $url,
|
||||
'uid' => $uid
|
||||
);
|
||||
$this->events[] = $event;
|
||||
return $event;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array Get the array of events.
|
||||
*/
|
||||
public function getEvents()
|
||||
{
|
||||
return $this->events;
|
||||
}
|
||||
|
||||
/**
|
||||
* Clear all events.
|
||||
*/
|
||||
public function clearEvents()
|
||||
{
|
||||
$this->events = array();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the name of the calendar.
|
||||
* @return string
|
||||
*/
|
||||
public function getName()
|
||||
{
|
||||
return $this->calendarName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the name of the calendar.
|
||||
* @param $name
|
||||
*/
|
||||
public function setName($name)
|
||||
{
|
||||
$this->calendarName = $name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Render and optionally output a vcal string.
|
||||
* @param bool $output Whether to output the calendar data directly (the default).
|
||||
* @return string The complete rendered vlal
|
||||
*/
|
||||
public function render($output = true)
|
||||
{
|
||||
//Add header
|
||||
$ics = 'BEGIN:VCALENDAR
|
||||
METHOD:PUBLISH
|
||||
VERSION:2.0
|
||||
X-WR-CALNAME:' . $this->calendarName . '
|
||||
PRODID:-//hacksw/handcal//NONSGML v1.0//EN';
|
||||
|
||||
//Add events
|
||||
foreach ($this->events as $event) {
|
||||
$ics .= '
|
||||
BEGIN:VEVENT
|
||||
UID:' . $event['uid'] . '
|
||||
DTSTAMP:' . gmdate('Ymd') . 'T' . gmdate('His') . 'Z
|
||||
DTSTART:' . $event['start'] . '
|
||||
DTEND:' . $event['end'] . '
|
||||
SUMMARY:' . str_replace("\n", "\\n", $event['summary']) . '
|
||||
DESCRIPTION:' . str_replace("\n", "\\n", $event['description']) . '
|
||||
URL;VALUE=URI:' . $event['url'] . '
|
||||
END:VEVENT';
|
||||
}
|
||||
|
||||
//Add footer
|
||||
$ics .= '
|
||||
END:VCALENDAR';
|
||||
|
||||
if ($output) {
|
||||
//Output
|
||||
$filename = $this->calendarName;
|
||||
//Filename needs quoting if it contains spaces
|
||||
if (strpos($filename, ' ') !== false) {
|
||||
$filename = '"'.$filename.'"';
|
||||
}
|
||||
header('Content-type: text/calendar; charset=utf-8');
|
||||
header('Content-Disposition: inline; filename=' . $filename . '.ics');
|
||||
echo $ics;
|
||||
}
|
||||
return $ics;
|
||||
}
|
||||
}
|
17
msd2/myoos/includes/lib/phpmailer/extras/README.md
Normal file
17
msd2/myoos/includes/lib/phpmailer/extras/README.md
Normal file
@ -0,0 +1,17 @@
|
||||
# PHPMailer Extras
|
||||
|
||||
These classes provide optional additional functions to PHPMailer.
|
||||
|
||||
These are not loaded by the PHPMailer autoloader, so in some cases you may need to `require` them yourself before using them.
|
||||
|
||||
## EasyPeasyICS
|
||||
|
||||
This class was originally written by Manuel Reinhard and provides a simple means of generating ICS/vCal files that are used in sending calendar events. PHPMailer does not use it directly, but you can use it to generate content appropriate for placing in the `Ical` property of PHPMailer. The PHPMailer project is now its official home as Manuel has given permission for that and is no longer maintaining it himself.
|
||||
|
||||
## htmlfilter
|
||||
|
||||
This class by Konstantin Riabitsev and Jim Jagielski implements HTML filtering to remove potentially malicious tags, such as `<script>` or `onclick=` attributes that can result in XSS attacks. This is a simple filter and is not as comprehensive as [HTMLawed](http://www.bioinformatics.org/phplabware/internal_utilities/htmLawed/) or [HTMLPurifier](http://htmlpurifier.org), but it's easier to use and considerably better than nothing! PHPMailer does not use it directly, but you may want to apply it to user-supplied HTML before using it as a message body.
|
||||
|
||||
## NTLM_SASL_client
|
||||
|
||||
This class by Manuel Lemos (bundled with permission) adds the ability to authenticate with Microsoft Windows mail servers that use NTLM-based authentication. It is used by PHPMailer if you send via SMTP and set the `AuthType` property to `NTLM`; you will also need to use the `Realm` and `Workstation` properties. The original source is [here](http://www.phpclasses.org/browse/file/7495.html).
|
1159
msd2/myoos/includes/lib/phpmailer/extras/htmlfilter.php
Normal file
1159
msd2/myoos/includes/lib/phpmailer/extras/htmlfilter.php
Normal file
File diff suppressed because it is too large
Load Diff
185
msd2/myoos/includes/lib/phpmailer/extras/ntlm_sasl_client.php
Normal file
185
msd2/myoos/includes/lib/phpmailer/extras/ntlm_sasl_client.php
Normal file
@ -0,0 +1,185 @@
|
||||
<?php
|
||||
/*
|
||||
* ntlm_sasl_client.php
|
||||
*
|
||||
* @(#) $Id: ntlm_sasl_client.php,v 1.3 2004/11/17 08:00:37 mlemos Exp $
|
||||
*
|
||||
*/
|
||||
|
||||
define("SASL_NTLM_STATE_START", 0);
|
||||
define("SASL_NTLM_STATE_IDENTIFY_DOMAIN", 1);
|
||||
define("SASL_NTLM_STATE_RESPOND_CHALLENGE", 2);
|
||||
define("SASL_NTLM_STATE_DONE", 3);
|
||||
define("SASL_FAIL", -1);
|
||||
define("SASL_CONTINUE", 1);
|
||||
|
||||
class ntlm_sasl_client_class
|
||||
{
|
||||
public $credentials = array();
|
||||
public $state = SASL_NTLM_STATE_START;
|
||||
|
||||
public function initialize(&$client)
|
||||
{
|
||||
if (!function_exists($function = "mcrypt_encrypt")
|
||||
|| !function_exists($function = "mhash")
|
||||
) {
|
||||
$extensions = array(
|
||||
"mcrypt_encrypt" => "mcrypt",
|
||||
"mhash" => "mhash"
|
||||
);
|
||||
$client->error = "the extension " . $extensions[$function] .
|
||||
" required by the NTLM SASL client class is not available in this PHP configuration";
|
||||
return (0);
|
||||
}
|
||||
return (1);
|
||||
}
|
||||
|
||||
public function ASCIIToUnicode($ascii)
|
||||
{
|
||||
for ($unicode = "", $a = 0; $a < strlen($ascii); $a++) {
|
||||
$unicode .= substr($ascii, $a, 1) . chr(0);
|
||||
}
|
||||
return ($unicode);
|
||||
}
|
||||
|
||||
public function typeMsg1($domain, $workstation)
|
||||
{
|
||||
$domain_length = strlen($domain);
|
||||
$workstation_length = strlen($workstation);
|
||||
$workstation_offset = 32;
|
||||
$domain_offset = $workstation_offset + $workstation_length;
|
||||
return (
|
||||
"NTLMSSP\0" .
|
||||
"\x01\x00\x00\x00" .
|
||||
"\x07\x32\x00\x00" .
|
||||
pack("v", $domain_length) .
|
||||
pack("v", $domain_length) .
|
||||
pack("V", $domain_offset) .
|
||||
pack("v", $workstation_length) .
|
||||
pack("v", $workstation_length) .
|
||||
pack("V", $workstation_offset) .
|
||||
$workstation .
|
||||
$domain
|
||||
);
|
||||
}
|
||||
|
||||
public function NTLMResponse($challenge, $password)
|
||||
{
|
||||
$unicode = $this->ASCIIToUnicode($password);
|
||||
$md4 = mhash(MHASH_MD4, $unicode);
|
||||
$padded = $md4 . str_repeat(chr(0), 21 - strlen($md4));
|
||||
$iv_size = mcrypt_get_iv_size(MCRYPT_DES, MCRYPT_MODE_ECB);
|
||||
$iv = mcrypt_create_iv($iv_size, MCRYPT_RAND);
|
||||
for ($response = "", $third = 0; $third < 21; $third += 7) {
|
||||
for ($packed = "", $p = $third; $p < $third + 7; $p++) {
|
||||
$packed .= str_pad(decbin(ord(substr($padded, $p, 1))), 8, "0", STR_PAD_LEFT);
|
||||
}
|
||||
for ($key = "", $p = 0; $p < strlen($packed); $p += 7) {
|
||||
$s = substr($packed, $p, 7);
|
||||
$b = $s . ((substr_count($s, "1") % 2) ? "0" : "1");
|
||||
$key .= chr(bindec($b));
|
||||
}
|
||||
$ciphertext = mcrypt_encrypt(MCRYPT_DES, $key, $challenge, MCRYPT_MODE_ECB, $iv);
|
||||
$response .= $ciphertext;
|
||||
}
|
||||
return $response;
|
||||
}
|
||||
|
||||
public function typeMsg3($ntlm_response, $user, $domain, $workstation)
|
||||
{
|
||||
$domain_unicode = $this->ASCIIToUnicode($domain);
|
||||
$domain_length = strlen($domain_unicode);
|
||||
$domain_offset = 64;
|
||||
$user_unicode = $this->ASCIIToUnicode($user);
|
||||
$user_length = strlen($user_unicode);
|
||||
$user_offset = $domain_offset + $domain_length;
|
||||
$workstation_unicode = $this->ASCIIToUnicode($workstation);
|
||||
$workstation_length = strlen($workstation_unicode);
|
||||
$workstation_offset = $user_offset + $user_length;
|
||||
$lm = "";
|
||||
$lm_length = strlen($lm);
|
||||
$lm_offset = $workstation_offset + $workstation_length;
|
||||
$ntlm = $ntlm_response;
|
||||
$ntlm_length = strlen($ntlm);
|
||||
$ntlm_offset = $lm_offset + $lm_length;
|
||||
$session = "";
|
||||
$session_length = strlen($session);
|
||||
$session_offset = $ntlm_offset + $ntlm_length;
|
||||
return (
|
||||
"NTLMSSP\0" .
|
||||
"\x03\x00\x00\x00" .
|
||||
pack("v", $lm_length) .
|
||||
pack("v", $lm_length) .
|
||||
pack("V", $lm_offset) .
|
||||
pack("v", $ntlm_length) .
|
||||
pack("v", $ntlm_length) .
|
||||
pack("V", $ntlm_offset) .
|
||||
pack("v", $domain_length) .
|
||||
pack("v", $domain_length) .
|
||||
pack("V", $domain_offset) .
|
||||
pack("v", $user_length) .
|
||||
pack("v", $user_length) .
|
||||
pack("V", $user_offset) .
|
||||
pack("v", $workstation_length) .
|
||||
pack("v", $workstation_length) .
|
||||
pack("V", $workstation_offset) .
|
||||
pack("v", $session_length) .
|
||||
pack("v", $session_length) .
|
||||
pack("V", $session_offset) .
|
||||
"\x01\x02\x00\x00" .
|
||||
$domain_unicode .
|
||||
$user_unicode .
|
||||
$workstation_unicode .
|
||||
$lm .
|
||||
$ntlm
|
||||
);
|
||||
}
|
||||
|
||||
public function start(&$client, &$message, &$interactions)
|
||||
{
|
||||
if ($this->state != SASL_NTLM_STATE_START) {
|
||||
$client->error = "NTLM authentication state is not at the start";
|
||||
return (SASL_FAIL);
|
||||
}
|
||||
$this->credentials = array(
|
||||
"user" => "",
|
||||
"password" => "",
|
||||
"realm" => "",
|
||||
"workstation" => ""
|
||||
);
|
||||
$defaults = array();
|
||||
$status = $client->GetCredentials($this->credentials, $defaults, $interactions);
|
||||
if ($status == SASL_CONTINUE) {
|
||||
$this->state = SASL_NTLM_STATE_IDENTIFY_DOMAIN;
|
||||
}
|
||||
unset($message);
|
||||
return ($status);
|
||||
}
|
||||
|
||||
public function step(&$client, $response, &$message, &$interactions)
|
||||
{
|
||||
switch ($this->state) {
|
||||
case SASL_NTLM_STATE_IDENTIFY_DOMAIN:
|
||||
$message = $this->typeMsg1($this->credentials["realm"], $this->credentials["workstation"]);
|
||||
$this->state = SASL_NTLM_STATE_RESPOND_CHALLENGE;
|
||||
break;
|
||||
case SASL_NTLM_STATE_RESPOND_CHALLENGE:
|
||||
$ntlm_response = $this->NTLMResponse(substr($response, 24, 8), $this->credentials["password"]);
|
||||
$message = $this->typeMsg3(
|
||||
$ntlm_response,
|
||||
$this->credentials["user"],
|
||||
$this->credentials["realm"],
|
||||
$this->credentials["workstation"]
|
||||
);
|
||||
$this->state = SASL_NTLM_STATE_DONE;
|
||||
break;
|
||||
case SASL_NTLM_STATE_DONE:
|
||||
$client->error = "NTLM authentication was finished without success";
|
||||
return (SASL_FAIL);
|
||||
default:
|
||||
$client->error = "invalid NTLM authentication step state";
|
||||
return (SASL_FAIL);
|
||||
}
|
||||
return (SASL_CONTINUE);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user