当前位置:首页 > PHP教程 > php函数 > 列表

PHP fsockopen函数详解

发布:smiling 来源: PHP粉丝网  添加日期:2022-06-04 09:10:12 浏览: 评论:0 

PHP fsockopen是一个功能比较强大的函数,我们在这篇文章中将会对这个函数做一个具体的介绍,希望对大家有所帮助,记得以前的B2C网站就是通过这个函数实现前台和订单处理系统的交互。

PHP fsockopen函数说明:

语法:

resource fsockopen ( string $hostname [, int KaTeX parse error: Expected 'EOF', got '&' at position 20: … = -1 [, int &̲errno [, string &$errstr [, float $timeout = ini_get(“default_socket_timeout”) ]]]] )

开启PHP fsockopen这个函数

PHP fsockopen需要 PHP.ini 中 allow_url_fopen 选项开启。

allow_url_fopen = On

参数:

hostname:如果安装了OpenSSL,那么你也许应该在你的主机名地址前面添加访问协议ssl://或者是tls://,从而可以使用基于TCP/IP协议的SSL或者TLS的客户端连接到远程主机。

port:端口号。如果对该参数传一个-1,则表示不使用端口,例如unix://。

errno:如果errno的返回值为0,而且这个函数的返回值为 FALSE ,那么这表明该错误发生在套接字连接(connect())调用之前,导致连接失败的原因最大的可能是初始化套接字的时候发生了错误。

errstr:错误信息将以字符串的信息返回。

timeout:设置连接的时限,单位为秒。

返回值:

fsockopen() 将返回一个文件句柄,之后可以被其他文件类函数调用(例如: fgets() , fgetss() , fwrite() , fclose() 还有 feof() )。如果调用失败,将返回 FALSE 。

php fsockopen使用案例

1、fsockopen 来模拟生成 HTTP 连接

  1. <?php 
  2.  
  3.     $fp = fsockopen("127.0.0.1",80,$errno,$errstr,30); 
  4.  
  5.     if(!$fp){ 
  6.  
  7.         echo "$errstr ($errno)<br />\n"
  8.  
  9.     }else
  10.  
  11.         $out = "GET / HTTP/1.1\r\n"
  12.  
  13.         $out .= "Host: 127.0.0.1\r\n"
  14.  
  15.         $out .= "Connection: Close\r\n\r\n"
  16.  
  17.         fwrite($fp,$out); 
  18.  
  19.         $content = ''
  20.  
  21.         while(!feof($fp)){ 
  22.  
  23.             $content .= fgets($fp,128); 
  24.  
  25.         } 
  26.  
  27.         echo $content
  28.  
  29.         fclose($fp); 
  30.  
  31.     } 
  32.  
  33. ?> 

运行结果:

1.jpg

2、PHP fsockopen模拟POST/GET方法

fsockopen除了像上面实例模拟生成 HTTP 连接之外,还能实现很多功能,比如模拟post 和 get 传送数据的方法。

get :

  1. <?php 
  2.  
  3. $url = "http://localhost/test2.php?site=www.phpfensi.com"
  4.  
  5. print_r(parse_url($url));// 解析 URL,返回其组成部分  
  6.  
  7. /* get提交 */ 
  8.  
  9. sock_get($url,'user=gonn');  
  10.  
  11. // fsocket模拟get提交 
  12.  
  13. function sock_get($url,$query){ 
  14.  
  15.     $data = array
  16.  
  17.         'foo' => 'bar'
  18.  
  19.         'baz' => 'boom'
  20.  
  21.         'site' => 'www.tbrer.com'
  22.  
  23.         'name' => 'nowa magic' 
  24.  
  25.     ); 
  26.   
  27.     $query_str = http_build_query($data);// http_build_query()函数的作用是使用给出的关联(或下标)数组生成一个经过 URL-encode 的请求字符串  
  28.  
  29.     $info = parse_url($url); 
  30.  
  31.     $fp = fsockopen($info["host"],80,$errno,$errstr,30); 
  32.  
  33.     $head = "GET " . $info['path'] . '?' . $query_str . " HTTP/1.0\r\n"
  34.  
  35.     $head .= "Host: " . $info['host'] . "\r\n"
  36.  
  37.     $head .= "\r\n"
  38.  
  39.     $write = fputs($fp,$head); 
  40.  
  41.     while(!feof($fp)){ 
  42.  
  43.         $line = fread($fp,4096); 
  44.  
  45.         echo $line
  46.  
  47.     } 
  48.  
  49.  
  50. ?> 

post :

  1. <?php 
  2.  
  3. $url = "http://localhost/test2.php?site=www.phpfensi.com"
  4.  
  5. print_r(parse_url($url));// 解析 URL,返回其组成部分 
  6.  
  7.  
  8.  
  9. /* get提交 */ 
  10.  
  11. sock_post($url,'user=gonn'); 
  12.  
  13.  
  14.  
  15. // fsocket模拟get提交 
  16.  
  17. function sock_post($url,$query){ 
  18.  
  19.     $info = parse_url($url); 
  20.  
  21.     $fp = fsockopen($info["host"],80,$errno,$errstr,30); 
  22.  
  23.     $head = "POST " . $info['path'] . "?" . $info["query"] . " HTTP/1.0\r\n"
  24.  
  25.     $head .= "Host: " . $info['host'] . "\r\n"
  26.  
  27.     $head .= "Referer: http://" . $info['host'] . $info['path'] . "\r\n"
  28.  
  29.     $head .= "Content-type: application/x-www-form-urlencoded\r\n"
  30.  
  31.     $head .= "Content-Length: "strlen(trim($query)) . "\r\n"
  32.  
  33.     $head .= "\r\n"
  34.  
  35.     $head  .= trim($query); 
  36.  
  37.     $write = fputs($fp,$head); 
  38.  
  39.     while(!feof($fp)){ 
  40.  
  41.         $line = fread($fp,4096); 
  42.  
  43.         echo $line
  44.  
  45.     } 
  46.  
  47.  
  48. ?> 

接收页面 test2.php 的代码为:

  1. <?php 
  2.  
  3.     $data = $_REQUEST
  4.  
  5.     echo '<pre>'
  6.  
  7.     print_r($data); 
  8.  
  9.     echo '</pre>'
  10.  
  11. ?> 

3、fsockopen以Socket方式模拟HTTP下载文件

  1. <?php 
  2.  
  3.     /*  
  4.  
  5.         *   Socket 模拟HTTP协议传输文件 
  6.  
  7.         *   Http是应用层协议使用80端口 
  8.  
  9.     */ 
  10.  
  11.     $hostname = '127.0.0.1'
  12.  
  13.     $port = '80'
  14.  
  15.  
  16.  
  17.     // 建立连接 
  18.  
  19.     $fp = fsockopen($hostname,$port,$errno,$errstr); 
  20.  
  21.     stream_set_blocking($fp,true); 
  22.  
  23.     if(!$fp){ 
  24.  
  25.         echo "$errno : $errstr<br />"
  26.  
  27.     }else
  28.  
  29.         // 发送一个HTTP请求信息头 
  30.  
  31.         $request_header = "GET /aaa.txt"
  32.  
  33.  
  34.  
  35.         // 起始行 
  36.  
  37.         // 头域  
  38.  
  39.         $request_header .= "Host: $hostname\n"
  40.  
  41.           
  42.  
  43.         // 再一个回车换行表示头信息结束 
  44.  
  45.         $request_header .= "\n"
  46.  
  47.  
  48.  
  49.         // 发送请求到服务器 
  50.  
  51.         fputs($fp,$request_header); 
  52.  
  53.  
  54.  
  55.         // 接受响应 
  56.  
  57.         $fp2 = fopen('aaa.txt','w'); 
  58.  
  59.  
  60.  
  61.         while(!feof($fp)){ 
  62.  
  63.             $line = fputs($fp2,fgets($fp,128)); 
  64.  
  65.             echo $line
  66.  
  67.         } 
  68.  
  69.  
  70.  
  71.         // 关闭 
  72.  
  73.         fclose($fp2); 
  74.  
  75.         fclose($fp); 
  76.  
  77.     } 
  78.  
  79. ?> 

执行程序,你会发现在这个程序文件的同级目录就会出现那个你需要下载的文件了。

这实质上是 Socket 模拟HTTP协议传输文件。同时还要注意一下 PHP 的超时限制,这里设置我 PHP 服务器超时为无限才能正确下载,否则可能下载不全 PHP 程序就停止了。

注意:

bool stream_set_blocking ( resource $stream , int $mode )

为 stream 设置阻塞或者阻塞模。

此函数适用于支持非阻塞模式的任何资源流(常规文件,套接字资源流等)。

参数

stream:资源流。

mode:如果 mode 为0,资源流将会被转换为非阻塞模式;如果是1,资源流将会被转换为阻塞模式。 该参数的设置将会影响到像 fgets() 和 fread() 这样的函数从资源流里读取数据。 在非阻塞模式下,调用 fgets() 总是会立即返回;而在阻塞模式下,将会一直等到从资源流里面获取到数据才能返回。

返回值

成功时返回 TRUE, 或者在失败时返回 FALSE。

4、使用 fsockopen 伪造来路

  1. <?php 
  2.  
  3. $host = "127.0.0.1"//你要访问的域名 
  4.  
  5. $ip = '127.0.0.1'
  6.  
  7. $target = "/test2.php"//你要访问的页面地址 
  8.  
  9. $referer = "http://www.phpfensi.com/"; //伪造来路页面 
  10.  
  11. //$fp = fsockopen($host, 80, $errno, $errstr, 30); 
  12.  
  13. $fp = fsockopen($ip, 80, $errno$errstr, 30); 
  14.  
  15. if(!$fp
  16.  
  17.  
  18.     echo "$errstr($errno)<br />\n"
  19.  
  20.  
  21. else 
  22.  
  23.  
  24.     $end = "\r\n"
  25.  
  26.     $out = "GET $target HTTP/1.1$end"
  27.  
  28.     $out .= "Host: $ip$end"
  29.  
  30.     $out .= "Referer: $referer$end"
  31.  
  32.     $out .= "Connection: Close$end"
  33.  
  34.     $out .= "$end"
  35.  
  36.     fwrite($fp$out); 
  37.  
  38.     while(!feof($fp)) 
  39.  
  40.     { 
  41.  
  42.         echo fgets($fp, 1024); 
  43.  
  44.     } 
  45.  
  46.     fclose($fp); 
  47.  
  48.  
  49. ?> 

test2.php 的代码为:

  1. <?php 
  2.  
  3.     $data = $_REQUEST 
  4.  
  5.     echo '<pre>'
  6.  
  7.     print_r($data); 
  8.  
  9.     echo '</pre>'
  10.  
  11. ?> 

可以看到 HTTP_REFERER 的值为 http://www.phpfensi.com/,即来路已经伪造成功。

Tags: fsockopen

分享到: