Home Backend Development PHP Tutorial snoopy (powerful PHP collection class) detailed introduction

snoopy (powerful PHP collection class) detailed introduction

Aug 08, 2016 am 09:32 AM
gt html nbsp quot snoopy

Snoopy is a php class that is used to simulate the functions of a browser. It can obtain web content, send forms, and can be used to develop some collection programs and thief programs. This article introduces the usage tutorial of snoopy in detail. Some features of Snoopy:
  • Fetch the content of the web page fetch

  • Grab the text content of the web page (remove HTML tags) fetchtext

  • Fetch the links of the web page, form fetchlinks fetchform

  • Support proxy host

  • Support basic username/password authentication

  • Support setting user_agent, referer (source), cookies and header content (header file)

  • Support browser redirection and control Redirect depth

  • can expand links in web pages into high-quality URLs (default)

  • Submit data and get return values ​​

  • Support tracking HTML framework

  • Support delivery during redirection Cookies

  • only requires PHP 4 or above. Since it is a PHP class, there is no need to expand the support. The best choice when the server does not support curl,
    Snoopy class methods and examples:
    fetch( $URI)This is the method used to crawl the content of the web page. The $URI parameter is the URL address of the crawled web page. The crawled results are stored in $this->results. If you are scraping a frame, Snoopy will track each frame and store it in an array, and then store it in $this->results.
    fetchtext($URI)This method is similar to fetch(). The only difference is that this method will remove HTML tags and other irrelevant data and only return the text content in the web page.
    fetchform($URI)This method is similar to fetch(). The only difference is that this method will remove HTML tags and other irrelevant data, and only return the form content (form) in the web page.
    fetchlinks($URI)This method is similar to fetch(). The only difference is that this method will remove HTML tags and other irrelevant data, and only return links in the web page. By default, relative links will be automatically completed and converted into complete URLs.
    submit($URI,$formvars)This method sends a confirmation form to the link address specified by $URL. $formvars is an array that stores form parameters.
    submittext($URI,$formvars)This method is similar to submit(). The only difference is that this method will remove HTML tags and other irrelevant data, and only return the text content in the web page after login.
    submitlinks($URI)This method is similar to submit(). The only difference is that this method will remove HTML tags and other irrelevant data, and only return links in the web page. By default, relative links will be automatically completed and converted into complete URLs. Snoopy collection class attributes: (Default value is in brackets)
    $host The connected host $port The connected port $proxy_host The proxy host used, if any $proxy_port The proxy host port used, if any $agent User agent camouflage (Snoopy v0.1) $referer Source information, if any $cookies cookies, if any $ rawheaders Other header information, if any $maxredirs Maximum number of redirects, 0=not allowed (5)$offsiteok whether or not to allow redirects off-site. (true)$expandlinks Whether to link All are completed to the complete address (true)$user authentication user name, if any $pass authentication user name, if any $accept http acceptance type (image/gif, image/x-xbitmap , image/jpeg, image/pjpeg, */*)$error Where the error is reported, if any $response_code The response code returned from the server $headers The header information returned from the server $maxlength The longest Return data length $read_timeout Read operation timeout (requires PHP 4 Beta 4+) Set to 0 for no timeout $timed_out If a read operation times out, this attribute returns true (requires PHP 4 Beta 4+ )$maxframes The maximum number of frames allowed to be tracked$status The status of the captured http$temp_dir The temporary file directory that the web server can write to (/tmp)$curl_path The directory of cURL binary, if there is no cURL Set binary to false
    The following is an example:
    include "Snoopy.class.php";
     $snoopy = new Snoopy;
      
     $snoopy->proxy_host = "http://www.9it.me";
     $snoopy->proxy_port = "80";
      
     $snoopy->agent = "(compatible; MSIE 4.01; MSN 2.5; AOL 4.0; Windows 98)";
     $snoopy->referer = "http://www.9it.me";
      
     $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("http://www.9it.me"))
     {
     echo "<PRE>".htmlspecialchars($snoopy->results)."
    \n"; } else echo "error fetching document: ".$snoopy->error."\n";
    Copy after login
    Get the content of the specified url
    <?php
     $url = "http://www.9it.me";
     include("snoopy.php");
     $snoopy = new Snoopy;
     $snoopy->fetch($url); //获取所有内容
     echo $snoopy->results; //显示结果
     //可选以下
     $snoopy->fetchtext //获取文本内容(去掉html代码)
     $snoopy->fetchlinks //获取链接
     $snoopy->fetchform  //获取表单
     ?>
    Copy after login
    表单提交
    <?php
    $formvars["username"] = "admin";
    $formvars["pwd"] = "admin";
    $action = "http://www.9it.me";//</a>表单提交地址
    $snoopy->submit($action,$formvars);//$formvars为提交的数组
    echo $snoopy->results; //获取表单提交后的 返回的结果
    //可选以下
    $snoopy->submittext; //提交后只返回 去除html的 文本
    $snoopy->submitlinks;//提交后只返回 链接
    ?>
    Copy after login
    既然已经提交的表单 那就可以做很多事情 接下来我们来伪装ip,伪装浏览器

    伪装浏览器
    <?php
    $formvars["username"] = "lanfengye";
    $formvars["pwd"] = "lanfengye";
    $action = "http://www.9it.me";
    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://www.9it.me"; //伪装来源页地址 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;
    ?>
    Copy after login
    原来我们可以伪装session 伪装浏览器 ,伪装ip, haha 可以做很多事情了。例如 带验证码,验证ip 投票, 可以不停的投。ps:这里伪装ip ,其实是伪装http头, 所以一般的通过 REMOTE_ADDR 获取的ip是伪装不了,反而那些通过http头来获取ip的(可以防止代理的那种) 就可以自己来制造ip。关于如何验证码 ,简单说下:首先用普通的浏览器, 查看页面 , 找到验证码所对应的sessionid,同时记下sessionid和验证码值,接下来就用snoopy去伪造 。原理:由于是同一个sessionid 所以取得的验证码和第一次输入的是一样的。
    有时我们可能需要伪造更多的东西,snoopy完全为我们想到了
    <?php
    $snoopy->proxy_host = "http://www.9it.me";
    $snoopy->proxy_port = "8080"; //使用代理
    $snoopy->maxredirs = 2; //重定向次数
    $snoopy->expandlinks = true; //是否补全链接 在采集的时候经常用到
    // 例如链接为 /images/taoav.gif 可改为它的全链接 <a href="http://www.9it.me/images/taoav.gif">http://www.9it.me/images/taoav.gif</a>
    $snoopy->maxframes = 5 //允许的最大框架数
    //注意抓取框架的时候 $snoopy->results 返回的是一个数组
    $snoopy->error //返回报错信息
    ?>
    Copy after login

    以上就介绍了snoopy(强大的PHP采集类) 详细介绍,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

    Statement of this Website
    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

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    Video Face Swap

    Video Face Swap

    Swap faces in any video effortlessly with our completely free AI face swap tool!

    Hot Tools

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    SublimeText3 Chinese version

    SublimeText3 Chinese version

    Chinese version, very easy to use

    Zend Studio 13.0.1

    Zend Studio 13.0.1

    Powerful PHP integrated development environment

    Dreamweaver CS6

    Dreamweaver CS6

    Visual web development tools

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)

    Table Border in HTML Table Border in HTML Sep 04, 2024 pm 04:49 PM

    Guide to Table Border in HTML. Here we discuss multiple ways for defining table-border with examples of the Table Border in HTML.

    Nested Table in HTML Nested Table in HTML Sep 04, 2024 pm 04:49 PM

    This is a guide to Nested Table in HTML. Here we discuss how to create a table within the table along with the respective examples.

    HTML margin-left HTML margin-left Sep 04, 2024 pm 04:48 PM

    Guide to HTML margin-left. Here we discuss a brief overview on HTML margin-left and its Examples along with its Code Implementation.

    HTML Table Layout HTML Table Layout Sep 04, 2024 pm 04:54 PM

    Guide to HTML Table Layout. Here we discuss the Values of HTML Table Layout along with the examples and outputs n detail.

    HTML Input Placeholder HTML Input Placeholder Sep 04, 2024 pm 04:54 PM

    Guide to HTML Input Placeholder. Here we discuss the Examples of HTML Input Placeholder along with the codes and outputs.

    HTML Ordered List HTML Ordered List Sep 04, 2024 pm 04:43 PM

    Guide to the HTML Ordered List. Here we also discuss introduction of HTML Ordered list and types along with their example respectively

    HTML onclick Button HTML onclick Button Sep 04, 2024 pm 04:49 PM

    Guide to HTML onclick Button. Here we discuss their introduction, working, examples and onclick Event in various events respectively.

    Moving Text in HTML Moving Text in HTML Sep 04, 2024 pm 04:45 PM

    Guide to Moving Text in HTML. Here we discuss an introduction, how marquee tag work with syntax and examples to implement.

    See all articles