|
|
|
<?php
// Usage: echo finger(hostname [,username, [port]]);
Function finger ($host, $user= "", $port=79) {
$rc=fsockopen($host,$port);
fputs($rc, "$user\n");
while (!feof($rc)) { $str .= fgets($rc,128); }
fclose($rc);
return $str;
}
?> |
|
| Class for sending mail with MIME attachments in multipart format using external sendmail, mimencode and zip Categories : Email, Network, PHP, PHP Classes | | | PHP4 HTTP Compression Speeds up the Web Categories : PHP, Zlib, HTML and PHP, HTTP, Network | | | WebServerSpy checks which kind of Webserver is running, Apache, Netscape, Fasttrack, IIS, HTTP-Header, HTTP 1.0, GET, spy, WWW Categories : HTTP, Network, Apache, PHP, Web Servers | | | Examines the user's computer for open Netbus (the trojan horse) port and reports the conclusion to the user. Categories : Network, PHP | | | Client classes for Dictionary servers UPDATED: 2000-06-06 Categories : Network, Search, Complete Programs, PHP Classes, PHP | | | whois domain name lookup dns url Categories : PHP, Search, Network | | | How to get the exit code and result of an exec() command. Categories : PHP, Network | | | Create MRTG Graphic from rrd database (Need MRTG and RRDTool installed). Categories : PHP, Network, Graphics | | | Sample usage of IPv6 and IPv4 with PHP Categories : PHP, PHP Classes, Network | | | IPTables Bandwidth statics Categories : PHP, Security, Network | | | An email validation script that actually checks against the recipient's mail server. Categories : Email, Complete Programs, PHP, Network, Debugging | | | Function that returns an IP Address if it's correct. IMPROVED!!! Categories : PHP, Algorithms, Network | | | redirect redirection ip address authentication authenticate addr Categories : Authentication, HTTP, Network, PHP | | | Class that allows the PHP developer to establish connections with a POP3 mail server amd be able to list, retrieve and delete mail messages from a given mail box.
Categories : Network, Email, PHP, PHP Classes | | | Query2Report : Generating Html, Pdf and Csv Reports from SQL Query Categories : PHP, PHP, HTML, PDF, Excel | |
|
|
|