php 采集snoopy类

阅读: 评论:0

php 采集snoopy类

php 采集snoopy类

来源 /

Snoopy的一些特点:

抓取网页的内容 fetch
抓取网页的文本内容 (去除HTML标签) fetchtext
抓取网页的链接,表单 fetchlinks fetchform
支持代理主机
支持基本的用户名/密码验证
支持设置 user_agent, referer(来路), cookies 和 header content(头文件)
支持浏览器重定向,并能控制重定向深度
能把网页中的链接扩展成高质量的url(默认)
提交数据并且获取返回值
支持跟踪HTML框架
支持重定向的时候传递cookies
要求php4以上就可以了 由于本身是php一个类 无需扩支持 服务器不支持curl时候的最好选择,

Snoopy类方法及示例:

fetch($URI)

这是为了抓取网页的内容而使用的方法。
$URI参数是被抓取网页的URL地址。
抓取的结果被存储在 $this->results 中。
如果你正在抓取的是一个框架,Snoopy将会将每个框架追踪后存入数组中,然后存入 $this->results。

fetchtext($URI)

本方法类似于fetch(),唯一不同的就是本方法会去除HTML标签和其他的无关数据,只返回网页中的文字内容。

fetchform($URI)
本方法类似于fetch(),唯一不同的就是本方法会去除HTML标签和其他的无关数据,只返回网页中表单内容(form)。

fetchlinks($URI)
本方法类似于fetch(),唯一不同的就是本方法会去除HTML标签和其他的无关数据,只返回网页中链接(link)。
默认情况下,相对链接将自动补全,转换成完整的URL。

submit( U R I , URI, URI,formvars)
本方法向 U R L 指 定 的 链 接 地 址 发 送 确 认 表 单 。 URL指定的链接地址发送确认表单。 URL指定的链接地址发送确认表单。formvars是一个存储表单参数的数组。

submittext( U R I , URI, URI,formvars)
本方法类似于submit(),唯一不同的就是本方法会去除HTML标签和其他的无关数据,只返回登陆后网页中的文字内容。

submitlinks($URI)
本方法类似于submit(),唯一不同的就是本方法会去除HTML标签和其他的无关数据,只返回网页中链接(link)。
默认情况下,相对链接将自动补全,转换成完整的URL。

Snoopy采集类属性: (默认值在括号里)

$host 连接的主机
$port 连接的端口
$proxy_host 使用的代理主机,如果有的话
$proxy_port 使用的代理主机端口,如果有的话
$agent 用户代理伪装 (Snoopy v0.1)
$referer 来路信息,如果有的话
$cookies cookies 如果有的话
$rawheaders 其他的头信息, 如果有的话
$maxredirs 最大重定向次数, 0=不允许 (5)
$offsiteok whether or not to allow redirects off-site. (true)
$expandlinks 是否将链接都补全为完整地址 (true)
$user 认证用户名, 如果有的话
$pass 认证用户名, 如果有的话
$accept http 接受类型 (image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, /)
$error 哪里报错, 如果有的话
$response_code 从服务器返回的响应代码
$headers 从服务器返回的头信息
$maxlength 最长返回数据长度
$read_timeout 读取操作超时 (requires PHP 4 Beta 4+) 设置为0为没有超时
$timed_out 如果一次读取操作超时了,本属性返回 true (requires PHP 4 Beta 4+)
$maxframes 允许追踪的框架最大数量
$status 抓取的http的状态
$temp_dir 网页服务器能够写入的临时文件目录 (/tmp)
$curl_path cURL binary 的目录, 如果没有cURL binary就设置为 false

include "Snoopy.class.php";$snoopy = new Snoopy;$snoopy->proxy_host = "";$snoopy->proxy_port = "80";$snoopy->agent = "(compatible; MSIE 4.01; MSN 2.5; AOL 4.0; Windows 98)";$snoopy->referer = "";$snoopy->cookies["SessionID"] = 238472834723489l;$snoopy->cookies["favoriteColor"] = "RED";$snoopy->rawheaders["Pragma"] = "no-cache";$snoopy->maxredirs = 2;$snoopy->offsiteok = false;$snoopy->expandlinks = false;$snoopy->user = "joe";$snoopy->pass = "bloe";if($snoopy->fetchtext("")){echo "<PRE>".htmlspecialchars($snoopy->results)."</PRE>n";}elseecho "error fetching document: ".$snoopy->error."n";

获取指定url内容

<?php$url = "";include("snoopy.php");$snoopy = new Snoopy;$snoopy->fetch($url); //获取所有内容echo $snoopy->results; //显示结果//可选以下$snoopy->fetchtext //获取文本内容(去掉html代码)$snoopy->fetchlinks //获取链接$snoopy->fetchform  //获取表单?>

表单提交

<?php$formvars["username"] = "admin";$formvars["pwd"] = "admin";$action = "";//</a>表单提交地址$snoopy->submit($action,$formvars);//$formvars为提交的数组echo $snoopy->results; //获取表单提交后的 返回的结果//可选以下$snoopy->submittext; //提交后只返回 去除html的 文本$snoopy->submitlinks;//提交后只返回 链接?>

既然已经提交的表单 那就可以做很多事情 接下来我们来伪装ip,伪装浏览器
伪装浏览器

<?php$formvars["username"] = "lanfengye";$formvars["pwd"] = "lanfengye";$action = "";include "snoopy.php";$snoopy = new Snoopy;$snoopy->cookies["PHPSESSID"] = 'fc106b1918bd522cc863f36890e6fff7'; //伪装sessionid$snoopy->agent = "(compatible; MSIE 4.01; MSN 2.5; AOL 4.0; Windows 98)"; //伪装浏览器$snoopy->referer = ""; //伪装来源页地址 http_referer$snoopy->rawheaders["Pragma"] = "no-cache"; //cache 的http头信息$snoopy->rawheaders["X_FORWARDED_FOR"] = "127.0.0.101"; //伪装ip$snoopy->submit($action,$formvars);echo $snoopy->results;?>

原来我们可以伪装session 伪装浏览器 ,伪装ip, haha 可以做很多事情了。
例如 带验证码,验证ip 投票, 可以不停的投。
ps:这里伪装ip ,其实是伪装http头, 所以一般的通过 REMOTE_ADDR 获取的ip是伪装不了,
反而那些通过http头来获取ip的(可以防止代理的那种) 就可以自己来制造ip。
关于如何验证码 ,简单说下:
首先用普通的浏览器, 查看页面 , 找到验证码所对应的sessionid,
同时记下sessionid和验证码值,
接下来就用snoopy去伪造 。
原理:由于是同一个sessionid 所以取得的验证码和第一次输入的是一样的。

有时我们可能需要伪造更多的东西,snoopy完全为我们想到了

<?php
$snoopy->proxy_host = "";
$snoopy->proxy_port = "8080"; //使用代理
$snoopy->maxredirs = 2; //重定向次数
$snoopy->expandlinks = true; //是否补全链接 在采集的时候经常用到
// 例如链接为 /images/taoav.gif 可改为它的全链接 <a href=".gif">.gif</a>
$snoopy->maxframes = 5 //允许的最大框架数
//注意抓取框架的时候 $snoopy->results 返回的是一个数组
$snoopy->error //返回报错信息
?>

源码

<?php/*************************************************** Snoopy - the PHP net client* Author: Monte Ohrt <monte@ohrt>* Copyright (c): 1999-2014, all rights reserved* Version: 2.0.0* This library is free software; you can redistribute it and/or* modify it under the terms of the GNU Lesser General Public* License as published by the Free Software Foundation; either* version 2.1 of the License, or (at your option) any later version.** This library is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU* Lesser General Public License for more details.** You should have received a copy of the GNU Lesser General Public* License along with this library; if not, write to the Free Software* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA** You may contact the author of Snoopy by e-mail at:* monte@ohrt** The latest version of Snoopy can be obtained from:* /*************************************************/
class Snoopy
{/**** Public variables ****//* user definable vars */var $scheme = 'http'; // http or httpsvar $host = "www.php"; // host name we are connecting tovar $port = 80; // port we are connecting tovar $proxy_host = ""; // proxy host to usevar $proxy_port = ""; // proxy port to usevar $proxy_user = ""; // proxy user to usevar $proxy_pass = ""; // proxy password to usevar $agent = "Snoopy v2.0.0"; // agent we masquerade asvar $referer = ""; // referer info to passvar $cookies = array(); // array of cookies to pass// $cookies["username"]="joe";var $rawheaders = array(); // array of raw headers to send// $rawheaders["Content-type"]="text/html";var $maxredirs = 5; // http redirection depth maximum. 0 = disallowvar $lastredirectaddr = ""; // contains address of last redirected addressvar $offsiteok = true; // allows redirection off-sitevar $maxframes = 0; // frame content depth maximum. 0 = disallowvar $expandlinks = true; // expand links to fully qualified URLs.// this only applies to fetchlinks()// submitlinks(), and submittext()var $passcookies = true; // pass set cookies back through redirects// NOTE: this currently does not respect// dates, domains or paths.var $user = ""; // user for http authenticationvar $pass = ""; // password for http authentication// http accept typesvar $accept = "image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*";var $results = ""; // where the content is putvar $error = ""; // error messages sent herevar $response_code = ""; // response code returned from servervar $headers = array(); // headers returned from server sent herevar $maxlength = 500000; // max return data length (body)var $read_timeout = 0; // timeout on read operations, in seconds// supported only since PHP 4 Beta 4// set to 0 to disallow timeoutsvar $timed_out = false; // if a read operation timed outvar $status = 0; // http request statusvar $temp_dir = "/tmp"; // temporary directory that the webserver// has permission to write to.// under Windows, this should be C:tempvar $curl_path = false;// deprecated, snoopy no longer uses curl for https requests,// but instead requires the openssl extension.// send Accept-encoding: gzip?var $use_gzip = true;// file or directory with CA certificates to verify remote host withvar $cafile;var $capath;/**** Private variables ****/var $_maxlinelen = 4096; // max line length (headers)var $_httpmethod = "GET"; // default http request methodvar $_httpversion = "HTTP/1.0"; // default http request versionvar $_submit_method = "POST"; // default submit methodvar $_submit_type = "application/x-www-form-urlencoded"; // default submit typevar $_mime_boundary = ""; // MIME boundary for multipart/form-data submit typevar $_redirectaddr = false; // will be set if page fetched is a redirectvar $_redirectdepth = 0; // increments on an http redirectvar $_frameurls = array(); // frame src urlsvar $_framedepth = 0; // increments on frame depthvar $_isproxy = false; // set if using a proxy servervar $_fp_timeout = 30; // timeout for socket connection/*======================================================================*Function:	fetchPurpose:	fetch the contents of a web page(and possibly other protocols in thefuture like ftp, nntp, gopher, etc.)Input:		$URI	the location of the page to fetchOutput:		$this->results	the output text from the fetch*======================================================================*/function fetch($URI){$URI_PARTS = parse_url($URI);if (!empty($URI_PARTS["user"]))$this->user = $URI_PARTS["user"];if (!empty($URI_PARTS["pass"]))$this->pass = $URI_PARTS["pass"];if (empty($URI_PARTS["query"]))$URI_PARTS["query"] = '';if (empty($URI_PARTS["path"]))$URI_PARTS["path"] = '';$fp = null;switch (strtolower($URI_PARTS["scheme"])) {case "https":if (!extension_loaded('openssl')) {trigger_error("openssl extension required for HTTPS", E_USER_ERROR);exit;}$this->port = 443;case "http":$this->scheme = strtolower($URI_PARTS["scheme"]);$this->host = $URI_PARTS["host"];if (!empty($URI_PARTS["port"]))$this->port = $URI_PARTS["port"];if ($this->_connect($fp)) {if ($this->_isproxy) {// using proxy, send entire URI$this->_httprequest($URI, $fp, $URI, $this->_httpmethod);} else {$path = $URI_PARTS["path"] . ($URI_PARTS["query"] ? "?" . $URI_PARTS["query"] : "");// no proxy, send only the path$this->_httprequest($path, $fp, $URI, $this->_httpmethod);}$this->_disconnect($fp);if ($this->_redirectaddr) {/* url was redirected, check if we've hit the max depth */if ($this->maxredirs > $this->_redirectdepth) {// only follow redirect if it's on this site, or offsiteok is trueif (preg_match("|^https?://" . preg_quote($this->host) . "|i", $this->_redirectaddr) || $this->offsiteok) {/* follow the redirect */$this->_redirectdepth++;$this->lastredirectaddr = $this->_redirectaddr;$this->fetch($this->_redirectaddr);}}}if ($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0) {$frameurls = $this->_frameurls;$this->_frameurls = array();while (list(, $frameurl) = each($frameurls)) {if ($this->_framedepth < $this->maxframes) {$this->fetch($frameurl);$this->_framedepth++;} elsebreak;}}} else {return false;}return $this;break;default:// not a valid protocol$this->error = 'Invalid protocol "' . $URI_PARTS["scheme"] . '"n';return false;break;}return $this;}/*======================================================================*Function:	submitPurpose:	submit an http(s) formInput:		$URI	the location to post the data$formvars	the formvars to use.format: $formvars["var"] = "val";$formfiles  an array of files to submitformat: $formfiles["var"] = "/";Output:		$this->results	the text output from the post*======================================================================*/function submit($URI, $formvars = "", $formfiles = ""){unset($postdata);$postdata = $this->_prepare_post_body($formvars, $formfiles);$URI_PARTS = parse_url($URI);if (!empty($URI_PARTS["user"]))$this->user = $URI_PARTS["user"];if (!empty($URI_PARTS["pass"]))$this->pass = $URI_PARTS["pass"];if (empty($URI_PARTS["query"]))$URI_PARTS["query"] = '';if (empty($URI_PARTS["path"]))$URI_PARTS["path"] = '';switch (strtolower($URI_PARTS["scheme"])) {case "https":if (!extension_loaded('openssl')) {trigger_error("openssl extension required for HTTPS", E_USER_ERROR);exit;}$this->port = 443;case "http":$this->scheme = strtolower($URI_PARTS["scheme"]);$this->host = $URI_PARTS["host"];if (!empty($URI_PARTS["port"]))$this->port = $URI_PARTS["port"];if ($this->_connect($fp)) {if ($this->_isproxy) {// using proxy, send entire URI$this->_httprequest($URI, $fp, $URI, $this->_submit_method, $this->_submit_type, $postdata);} else {$path = $URI_PARTS["path"] . ($URI_PARTS["query"] ? "?" . $URI_PARTS["query"] : "");// no proxy, send only the path$this->_httprequest($path, $fp, $URI, $this->_submit_method, $this->_submit_type, $postdata);}$this->_disconnect($fp);if ($this->_redirectaddr) {/* url was redirected, check if we've hit the max depth */if ($this->maxredirs > $this->_redirectdepth) {if (!preg_match("|^" . $URI_PARTS["scheme"] . "://|", $this->_redirectaddr))$this->_redirectaddr = $this->_expandlinks($this->_redirectaddr, $URI_PARTS["scheme"] . "://" . $URI_PARTS["host"]);// only follow redirect if it's on this site, or offsiteok is trueif (preg_match("|^https?://" . preg_quote($this->host) . "|i", $this->_redirectaddr) || $this->offsiteok) {/* follow the redirect */$this->_redirectdepth++;$this->lastredirectaddr = $this->_redirectaddr;if (strpos($this->_redirectaddr, "?") > 0)$this->fetch($this->_redirectaddr); // the redirect has changed the request method from post to getelse$this->submit($this->_redirectaddr, $formvars, $formfiles);}}}if ($this->_framedepth < $this->maxframes && count($this->_frameurls) > 0) {$frameurls = $this->_frameurls;$this->_frameurls = array();while (list(, $frameurl) = each($frameurls)) {if ($this->_framedepth < $this->maxframes) {$this->fetch($frameurl);$this->_framedepth++;} elsebreak;}}} else {return false;}return $this;break;default:// not a valid protocol$this->error = 'Invalid protocol "' . $URI_PARTS["scheme"] . '"n';return false;break;}return $this;}/*======================================================================*Function:	fetchlinksPurpose:	fetch the links from a web pageInput:		$URI	where you are fetching fromOutput:		$this->results	an array of the URLs*======================================================================*/function fetchlinks($URI){if ($this->fetch($URI) !== false) {if ($this->lastredirectaddr)$URI = $this->lastredirectaddr;if (is_array($this->results)) {for ($x = 0; $x < count($this->results); $x++)$this->results[$x] = $this->_striplinks($this->results[$x]);} else$this->results = $this->_striplinks($this->results);if ($this->expandlinks)$this->results = $this->_expandlinks($this->results, $URI);return $this;} elsereturn false;}/*======================================================================*Function:	fetchformPurpose:	fetch the form elements from a web pageInput:		$URI	where you are fetching fromOutput:		$this->results	the resulting html form*======================================================================*/function fetchform($URI){if ($this->fetch($URI) !== false) {if (is_array($this->results)) {for ($x = 0; $x < count($this->results); $x++)$this->results[$x] = $this->_stripform($this->results[$x]);} else$this->results = $this->_stripform($this->results);return $this;} elsereturn false;}/*======================================================================*Function:	fetchtextPurpose:	fetch the text from a web page, stripping the linksInput:		$URI	where you are fetching fromOutput:		$this->results	the text from the web page*======================================================================*/function fetchtext($URI){if ($this->fetch($URI) !== false) {if (is_array($this->results)) {for ($x = 0; $x < count($this->results); $x++)$this->results[$x] = $this->_striptext($this->results[$x]);} else$this->results = $this->_striptext($this->results);return $this;} elsereturn false;}/*======================================================================*Function:	submitlinksPurpose:	grab links from a form submissionInput:		$URI	where you are submitting fromOutput:		$this->results	an array of the links from the post*======================================================================*/function submitlinks($URI, $formvars = "", $formfiles = ""){if ($this->submit($URI, $formvars, $formfiles) !== false) {if ($this->lastredirectaddr)$URI = $this->lastredirectaddr;if (is_array($this->results)) {for ($x = 0; $x < count($this->results); $x++) {$this->results[$x] = $this->_striplinks($this->results[$x]);if ($this->expandlinks)$this->results[$x] = $this->_expandlinks($this->results[$x], $URI);}} else {$this->results = $this->_striplinks($this->results);if ($this->expandlinks)$this->results = $this->_expandlinks($this->results, $URI);}return $this;} elsereturn false;}/*======================================================================*Function:	submittextPurpose:	grab text from a form submissionInput:		$URI	where you are submitting fromOutput:		$this->results	the text from the web page*======================================================================*/function submittext($URI, $formvars = "", $formfiles = ""){if ($this->submit($URI, $formvars, $formfiles) !== false) {if ($this->lastredirectaddr)$URI = $this->lastredirectaddr;if (is_array($this->results)) {for ($x = 0; $x < count($this->results); $x++) {$this->results[$x] = $this->_striptext($this->results[$x]);if ($this->expandlinks)$this->results[$x] = $this->_expandlinks($this->results[$x], $URI);}} else {$this->results = $this->_striptext($this->results);if ($this->expandlinks)$this->results = $this->_expandlinks($this->results, $URI);}return $this;} elsereturn false;}/*======================================================================*Function:	set_submit_multipartPurpose:	Set the form submission content type tomultipart/form-data*======================================================================*/function set_submit_multipart(){$this->_submit_type = "multipart/form-data";return $this;}/*======================================================================*Function:	set_submit_normalPurpose:	Set the form submission content type toapplication/x-www-form-urlencoded*======================================================================*/function set_submit_normal(){$this->_submit_type = "application/x-www-form-urlencoded";return $this;}/*======================================================================*Private functions*======================================================================*//*======================================================================*Function:	_striplinksPurpose:	strip the hyperlinks from an html documentInput:		$document	document to strip.Output:		$match		an array of the links*======================================================================*/function _striplinks($document){preg_match_all("'<s*as.*?hrefs*=s*			# find <a href=(["'])?					# find single or double quote(?(1) (.*?)\1 | ([^s>]+))		# if quote found, match up to next matching# quote, otherwise match up to next space'isx", $document, $links);// catenate the non-empty matches from the conditional subpatternwhile (list($key, $val) = each($links[2])) {if (!empty($val))$match[] = $val;}while (list($key, $val) = each($links[3])) {if (!empty($val))$match[] = $val;}// return the linksreturn $match;}/*======================================================================*Function:	_stripformPurpose:	strip the form elements from an html documentInput:		$document	document to strip.Output:		$match		an array of the links*======================================================================*/function _stripform($document){preg_match_all("'</?(FORM|INPUT|SELECT|TEXTAREA|(OPTION))[^<>]*>(?(2)(.*(?=</?(option|select)[^<>]*>[rn]*)|(?=[rn]*))|(?=[rn]*))'Usi", $document, $elements);// catenate the matches$match = implode("rn", $elements[0]);// return the linksreturn $match;}/*======================================================================*Function:	_striptextPurpose:	strip the text from an html documentInput:		$document	document to strip.Output:		$text		the resulting text*======================================================================*/function _striptext($document){// I didn't use preg eval (//e) since that is only available in PHP 4.0.// so, list your entities one by one here. I included some of the// more common ones.$search = array("'<script[^>]*?>.*?</script>'si", // strip out javascript"'<[/!]*?[^<>]*?>'si", // strip out html tags"'([rn])[s]+'", // strip out white space"'&(quot|#34|#034|#x22);'i", // replace html entities"'&(amp|#38|#038|#x26);'i", // added hexadecimal values"'&(lt|#60|#060|#x3c);'i","'&(gt|#62|#062|#x3e);'i","'&(nbsp|#160|#xa0);'i","'&(iexcl|#161);'i","'&(cent|#162);'i","'&(pound|#163);'i","'&(copy|#169);'i","'&(reg|#174);'i","'&(deg|#176);'i","'&(#39|#039|#x27);'","'&(euro|#8364);'i", // europe"'&a(uml|UML);'", // german"'&o(uml|UML);'","'&u(uml|UML);'","'&A(uml|UML);'","'&O(uml|UML);'","'&U(uml|UML);'","'&szlig;'i",);$replace = array("","","\1",""","&","<",">"," ",chr(161),chr(162),chr(163),chr(169),chr(174),chr(176),chr(39),chr(128),"ä","ö","ü","Ä","Ö","Ü","ß",);$text = preg_replace($search, $replace, $document);return $text;}/*======================================================================*Function:	_expandlinksPurpose:	expand each link into a fully qualified URLInput:		$links			the links to qualify$URI			the full URI to get the base fromOutput:		$expandedLinks	the expanded links*======================================================================*/function _expandlinks($links, $URI){preg_match("/^[^?]+/", $URI, $match);$match = preg_replace("|/[^/.]+.[^/.]+$|", "", $match[0]);$match = preg_replace("|/$|", "", $match);$match_part = parse_url($match);$match_root =$match_part["scheme"] . "://" . $match_part["host"];$search = array("|^" . preg_quote($this->host) . "|i","|^(/)|i","|^(?!)(?!mailto:)|i","|/./|","|/[^/]+/../|");$replace = array("",$match_root . "/",$match . "/","/","/");$expandedLinks = preg_replace($search, $replace, $links);return $expandedLinks;}/*======================================================================*Function:	_httprequestPurpose:	go get the http(s) data from the serverInput:		$url		the url to fetch$fp			the current open file pointer$URI		the full URI$body		body contents to send if any (POST)Output:*======================================================================*/function _httprequest($url, $fp, $URI, $http_method, $content_type = "", $body = ""){$cookie_headers = '';if ($this->passcookies && $this->_redirectaddr)$this->setcookies();$URI_PARTS = parse_url($URI);if (empty($url))$url = "/";$headers = $http_method . " " . $url . " " . $this->_httpversion . "rn";if (!empty($this->host) && !isset($this->rawheaders['Host'])) {$headers .= "Host: " . $this->host;if (!empty($this->port) && $this->port != '80')$headers .= ":" . $this->port;$headers .= "rn";}if (!empty($this->agent))$headers .= "User-Agent: " . $this->agent . "rn";if (!empty($this->accept))$headers .= "Accept: " . $this->accept . "rn";if ($this->use_gzip) {// make sure PHP was built with --with-zlib// and we can handle gzipp'ed dataif (function_exists('gzinflate')) {$headers .= "Accept-encoding: gziprn";} else {trigger_error("use_gzip is on, but PHP was built without zlib support." ."  Requesting file(s) without gzip encoding.",E_USER_NOTICE);}}if (!empty($this->referer))$headers .= "Referer: " . $this->referer . "rn";if (!empty($this->cookies)) {if (!is_array($this->cookies))$this->cookies = (array)$this->cookies;reset($this->cookies);if (count($this->cookies) > 0) {$cookie_headers .= 'Cookie: ';foreach ($this->cookies as $cookieKey => $cookieVal) {$cookie_headers .= $cookieKey . "=" . urlencode($cookieVal) . "; ";}$headers .= substr($cookie_headers, 0, -2) . "rn";}}if (!empty($this->rawheaders)) {if (!is_array($this->rawheaders))$this->rawheaders = (array)$this->rawheaders;while (list($headerKey, $headerVal) = each($this->rawheaders))$headers .= $headerKey . ": " . $headerVal . "rn";}if (!empty($content_type)) {$headers .= "Content-type: $content_type";if ($content_type == "multipart/form-data")$headers .= "; boundary=" . $this->_mime_boundary;$headers .= "rn";}if (!empty($body))$headers .= "Content-length: " . strlen($body) . "rn";if (!empty($this->user) || !empty($this->pass))$headers .= "Authorization: Basic " . base64_encode($this->user . ":" . $this->pass) . "rn";//add proxy auth headersif (!empty($this->proxy_user))$headers .= 'Proxy-Authorization: ' . 'Basic ' . base64_encode($this->proxy_user . ':' . $this->proxy_pass) . "rn";$headers .= "rn";// set the read timeout if neededif ($this->read_timeout > 0)socket_set_timeout($fp, $this->read_timeout);$this->timed_out = false;fwrite($fp, $headers . $body, strlen($headers . $body));$this->_redirectaddr = false;unset($this->headers);// content was returned gzip encoded?$is_gzipped = false;while ($currentHeader = fgets($fp, $this->_maxlinelen)) {if ($this->read_timeout > 0 && $this->_check_timeout($fp)) {$this->status = -100;return false;}if ($currentHeader == "rn")break;// if a header begins with Location: or URI:, set the redirectif (preg_match("/^(Location:|URI:)/i", $currentHeader)) {// get URL portion of the redirectpreg_match("/^(Location:|URI:)[ ]+(.*)/i", chop($currentHeader), $matches);// look for :// in the Location header to see if hostname is includedif (!preg_match("|://|", $matches[2])) {// no host in the path, so prepend$this->_redirectaddr = $URI_PARTS["scheme"] . "://" . $this->host . ":" . $this->port;// eliminate double slashif (!preg_match("|^/|", $matches[2]))$this->_redirectaddr .= "/" . $matches[2];else$this->_redirectaddr .= $matches[2];} else$this->_redirectaddr = $matches[2];}if (preg_match("|^HTTP/|", $currentHeader)) {if (preg_match("|^HTTP/[^s]*s(.*?)s|", $currentHeader, $status)) {$this->status = $status[1];}$this->response_code = $currentHeader;}if (preg_match("/Content-Encoding: gzip/", $currentHeader)) {$is_gzipped = true;}$this->headers[] = $currentHeader;}$results = '';do {$_data = fread($fp, $this->maxlength);if (strlen($_data) == 0) {break;}$results .= $_data;} while (true);// gunzipif ($is_gzipped) {// per .gzencode.php$results = substr($results, 10);$results = gzinflate($results);}if ($this->read_timeout > 0 && $this->_check_timeout($fp)) {$this->status = -100;return false;}// check if there is a a redirect meta tagif (preg_match("'<meta[s]*http-equiv[^>]*?content[s]*=[s]*["']?d+;[s]*URL[s]*=[s]*([^"']*?)["']?>'i", $results, $match)) {$this->_redirectaddr = $this->_expandlinks($match[1], $URI);}// have we hit our frame depth and is there frame src to fetch?if (($this->_framedepth < $this->maxframes) && preg_match_all("'<frames+.*src[s]*=['"]?([^'">]+)'i", $results, $match)) {$this->results[] = $results;for ($x = 0; $x < count($match[1]); $x++)$this->_frameurls[] = $this->_expandlinks($match[1][$x], $URI_PARTS["scheme"] . "://" . $this->host);} // have we already fetched framed content?elseif (is_array($this->results))$this->results[] = $results;// no framed contentelse$this->results = $results;return $this;}/*======================================================================*Function:	setcookies()Purpose:	set cookies for a redirection*======================================================================*/function setcookies(){for ($x = 0; $x < count($this->headers); $x++) {if (preg_match('/^set-cookie:[s]+([^=]+)=([^;]+)/i', $this->headers[$x], $match))$this->cookies[$match[1]] = urldecode($match[2]);}return $this;}/*======================================================================*Function:	_check_timeoutPurpose:	checks whether timeout has occurredInput:		$fp	file pointer*======================================================================*/function _check_timeout($fp){if ($this->read_timeout > 0) {$fp_status = socket_get_status($fp);if ($fp_status["timed_out"]) {$this->timed_out = true;return true;}}return false;}/*======================================================================*Function:	_connectPurpose:	make a socket connectionInput:		$fp	file pointer*======================================================================*/function _connect(&$fp){if (!empty($this->proxy_host) && !empty($this->proxy_port)) {$this->_isproxy = true;$host = $this->proxy_host;$port = $this->proxy_port;if ($this->scheme == 'https') {trigger_error("HTTPS connections over proxy are currently not supported", E_USER_ERROR);exit;}} else {$host = $this->host;$port = $this->port;}$this->status = 0;$context_opts = array();if ($this->scheme == 'https') {// if cafile or capath is specified, enable certificate// verification (including name checks)if (isset($this->cafile) || isset($this->capath)) {$context_opts['ssl'] = array('verify_peer' => true,'CN_match' => $this->host,'disable_compression' => true,);if (isset($this->cafile))$context_opts['ssl']['cafile'] = $this->cafile;if (isset($this->capath))$context_opts['ssl']['capath'] = $this->capath;}$host = 'ssl://' . $host;}$context = stream_context_create($context_opts);if (version_compare(PHP_VERSION, '5.0.0', '>')) {if($this->scheme == 'http')$host = "tcp://" . $host;$fp = stream_socket_client("$host:$port",$errno,$errmsg,$this->_fp_timeout,STREAM_CLIENT_CONNECT,$context);} else {$fp = fsockopen($host,$port,$errno,$errstr,$this->_fp_timeout,$context);}if ($fp) {// socket connection succeededreturn true;} else {// socket connection failed$this->status = $errno;switch ($errno) {case -3:$this->error = "socket creation failed (-3)";case -4:$this->error = "dns lookup failure (-4)";case -5:$this->error = "connection refused or timed out (-5)";default:$this->error = "connection failed (" . $errno . ")";}return false;}}/*======================================================================*Function:	_disconnectPurpose:	disconnect a socket connectionInput:		$fp	file pointer*======================================================================*/function _disconnect($fp){return (fclose($fp));}/*======================================================================*Function:	_prepare_post_bodyPurpose:	Prepare post body according to encoding typeInput:		$formvars  - form variables$formfiles - form upload filesOutput:		post body*======================================================================*/function _prepare_post_body($formvars, $formfiles){settype($formvars, "array");settype($formfiles, "array");$postdata = '';if (count($formvars) == 0 && count($formfiles) == 0)return;switch ($this->_submit_type) {case "application/x-www-form-urlencoded":reset($formvars);while (list($key, $val) = each($formvars)) {if (is_array($val) || is_object($val)) {while (list($cur_key, $cur_val) = each($val)) {$postdata .= urlencode($key) . "[]=" . urlencode($cur_val) . "&";}} else$postdata .= urlencode($key) . "=" . urlencode($val) . "&";}break;case "multipart/form-data":$this->_mime_boundary = "Snoopy" . md5(uniqid(microtime()));reset($formvars);while (list($key, $val) = each($formvars)) {if (is_array($val) || is_object($val)) {while (list($cur_key, $cur_val) = each($val)) {$postdata .= "--" . $this->_mime_boundary . "rn";$postdata .= "Content-Disposition: form-data; name="$key[]"rnrn";$postdata .= "$cur_valrn";}} else {$postdata .= "--" . $this->_mime_boundary . "rn";$postdata .= "Content-Disposition: form-data; name="$key"rnrn";$postdata .= "$valrn";}}reset($formfiles);while (list($field_name, $file_names) = each($formfiles)) {settype($file_names, "array");while (list(, $file_name) = each($file_names)) {if (!is_readable($file_name)) continue;$fp = fopen($file_name, "r");$file_content = fread($fp, filesize($file_name));fclose($fp);$base_name = basename($file_name);$postdata .= "--" . $this->_mime_boundary . "rn";$postdata .= "Content-Disposition: form-data; name="$field_name"; filename="$base_name"rnrn";$postdata .= "$file_contentrn";}}$postdata .= "--" . $this->_mime_boundary . "--rn";break;}return $postdata;}/*======================================================================*Function:	getResultsPurpose:	return the results of a requestOutput:		string results*======================================================================*/function getResults(){return $this->results;}
}?>

本文发布于:2024-01-29 12:05:26,感谢您对本站的认可!

本文链接:https://www.4u4v.net/it/170650113215157.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:php   snoopy
留言与评论(共有 0 条评论)
   
验证码:

Copyright ©2019-2022 Comsenz Inc.Powered by ©

网站地图1 网站地图2 网站地图3 网站地图4 网站地图5 网站地图6 网站地图7 网站地图8 网站地图9 网站地图10 网站地图11 网站地图12 网站地图13 网站地图14 网站地图15 网站地图16 网站地图17 网站地图18 网站地图19 网站地图20 网站地图21 网站地图22/a> 网站地图23