| » Metadata |
» Status |
-
Category: Authentication
-
Proposer: Thorsten Rinne
-
License: BSD license
|
|
| » Description |
Proxy for access to NTLM secured resources
Example usage:
<?php
$content = $_SESSION['proxy']->get('192.168.0.1', 'www.example.com', '/');
if (is_string($content)) {
print htmlspecialchars($content);
} elseif (false === $content) {
die("Error!");
}
?>
You have to start the NTLMProxy class like that:
<?php
session_start();
if (!isset($_SESSION['proxy'])) {
$_SESSION['proxy'] = new NTLMProxy();
}
$_SESSION['proxy']->handleHandshake(); |
| » Dependencies |
» Links |
|
|
|
| » Timeline |
» Changelog |
-
First Draft: 2006-05-15
- Proposal: 2006-06-25
- Call for Votes: 2006-07-04
|
|