Preface PHP is a powerful Web development language. High development efficiency, simple syntax, tailored for dynamic websites, and enhanced object-oriented (moving closer to C ++ and setting aside points with JAVA). Unfortunately, a single thread (this is a weakness of life, it is said that PHP is written with CC ++ .), It can also use the C, C ++, and JAVA development middle layers to call COM, SyntaxHighlighte
Preface
PHP is a powerful Web development language. High development efficiency, simple syntax, tailored for dynamic websites, and enhanced object-oriented (moving closer to C ++ and setting aside points with JAVA). Unfortunately, a single thread (this is a weakness of life, it is said that PHP is written with CC ++ .), It can also use the C, C ++, and JAVA development middle layers to call COM. it is difficult to maintain servers and has fewer faults.
Since it is tailored for dynamic websites, it is doomed that super scanners such as X-scan cannot be developed. However, if you want to implement some simple functions, it is more than enough.
Port scanning is our most common method of stepping on. It is troublesome to download a dedicated scanner in a place like an Internet cafe. if you use a port scan provided by an existing Web service. That really saves a lot of trouble.
Let's take a look at the source code of the PHP port scanner I wrote:
$ Youip = $ HTTP_SERVER_VARS ["REMOTE_ADDR"]; // Obtain the local IP address
$ Remoteip = $ HTTP_POST_VARS [remoteip]; // obtain the IP address submitted in the form
?>
Online Port detection
If (! Empty ($ remoteip )){
// Judge the IP address format if the form is not empty
Function err (){
Die ("Sorry, this IP address is illegal
Click here to return ");
}
// Defines the prompt message for an incorrect IP address submission.
$ Ips = explode (".", $ remoteip );
// Use. to separate IP addresses
If (intval ($ ips [0]) <1 or intval ($ ips [0])> 255 or intval ($ ips [3]) <1
Or intval ($ ips [3]> 255) err ();
// If the number of the first and last IP segments is smaller than 1 or greater than 255, an error is returned.
If (intval ($ ips [1]) <0 or intval ($ ips [1])> 255 or intval ($ ips [2]) <0
Or intval ($ ips [2]> 255) err ();
// If the number of the second and third IP addresses is less than 0 or greater than 255, an error is returned.
$ Closed = This port is currently closed .;
$ Opened = This port is currently open !;
$ Close = "close ";
$ Open = "open ";
$ Port = array (80,110,135,137,138,139,143,443,445,143, 3389 );
$ Msg = array (
Ftp,
Telnet,
Smtp,
Finger,
Http,
Pop3,
Location Service,
Netbios-NS,
Netbios-DGM,
Netbios-SSN,
IMAP,
Https,
Microsoft-DS,
MSSQL,
MYSQL,
Terminal Services
);
// After checking the IP format, use an array to define the service name and status of each port.
Echo"
";Echo"
";Echo"
IP address you scanned: Color = red> ". $ remoteip ." | ";Echo"
";Echo"
";
Echo"
{
$ Fp = @ fsockopen ($ remoteip, $ port [$ I], & $ errno, & $ errstr, 1 );
If (! $ Fp ){
Echo"
There are two pages in this news. Currently, there are two pages in page 1st.
";Echo"
";Echo"
Port | ";Echo"
Service | ";Echo"
Detection result | ";Echo"
Description | ";Echo"
";// Output the displayed tableFor ($ I = 0; $ I
". $ Port [$ I]." |
". $ Msg [$ I]." |
Align = center> ". $ close ." |
". $ Closed ." |
";} Else {Echo"
". $ Port [$ I]." |
". $ Msg [$ I]." |
Align = center> ". $ open ." |
". $ Opened ." |
";}}// Use the for statement to connect the port of the remote host using the fsockopen function and output the result.Echo"
";
Echo "continue scanning >>> | ";Echo"Echo"
";
Echo"
";Echo"
";Echo"
Copyright©2004 Security Angel Team [S4T] All Rights Reserved. | ";Echo"
";Echo"
";
Echo" ";
Echo"";
Echo"";
Exit;
}
// Detection complete
Echo"
";Echo"
";Echo"
Your IP address: ". $ youip ." | ";Echo"
";Echo "";Echo"
";
// If the form is empty, the IP address submission form is displayed.
?>
Copyright©2004 Security Angel Team [S4T] All Rights Reserved. |
Postscript
This scanner is simple. An array is used to define the port information. The principle is to use the fsockopen function to connect. if the port can be connected, the port is opened. Otherwise, the port is closed.
The biggest drawback is that PHP is a single thread, so the speed will be very slow. it is convenient and simple at the cost. In fact, what I want to write this code is to tell you, PHP is not only used for the development of dynamic websites, but also for the network security field. if you pay too much attention to your work, you will ignore other features.
There are two pages in this news. Currently, there are two pages in page 2nd.