Home  >  Article  >  php教程  >  Php做的端口嗅探器--可以指定网站和端口

Php做的端口嗅探器--可以指定网站和端口

WBOY
WBOYOriginal
2016-06-13 12:38:422031browse


  //Php做的端口嗅探器--可以指定网站和端口
//并返回嗅探结果
    function http_request($server, $port) {
    $data = "";
    $query = "HEAD / HTTP/1.0";
    $fp = fsockopen($server, $port);
    if($fp) {
    fputs($fp, $query."rnn");
    while(!feof($fp)) {
    $data .= fread($fp, 1000);
    }
    fclose($fp);
    }
    return $data;
    }
    ?>
    


    
    Site: (ie: www.wackowoh.com)

    Port:

    
    

    
    if($action == "query") {
    $data = http_request($server, $port);
    echo "Connected To $server on port $port.

";
    echo "Output:

$data

";
    }
    ?> 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn