Home Backend Development PHP Tutorial PHP collection tool Snoopy trial experience_PHP tutorial

PHP collection tool Snoopy trial experience_PHP tutorial

Jul 21, 2016 pm 03:27 PM
php snoopy download sharp weapon Experience yes what is imitate kind try out collection

What is Snoopy? (Download snoopy)
Snoopy is a php class that is used to imitate the functions of a web browser. It can complete the tasks of obtaining web page content and sending forms.
Some features of Snoopy:
* Convenient to crawl the content of web pages
* Convenient to crawl the text content of web pages (removing HTML tags)
* Convenient to crawl links of web pages
* Support proxy Host
* Supports basic username/password authentication
* Supports setting user_agent, referer (source), cookies and header content (header file)
* Supports browser redirection and can control the redirection depth
* Can expand links in web pages into high-quality URLs (default)
* Convenient to submit data and obtain return values ​​
* Support tracking HTML framework (added in v0.92)
* Support redirection When passing cookies (added in v0.92)
If you want to know more deeply, Google it yourself. Here are a few simple examples:
1 Get the content of the specified url
PHP code

Copy the code The code is as follows:

$url = "http://www.jb51.net";
include("snoopy.php");
$snoopy = new Snoopy;
$snoopy->fetch( $url); //Get all content
echo $snoopy->results; //Display results
$snoopy->fetchtext //Get text content (remove html code)
$snoopy-> ;fetchlinks //Get links
$snoopy->fetchform //Get form

2 form submission
PHP code
Copy code The code is as follows:

$formvars["username"] = "admin";
$formvars["pwd"] = "admin";
$action = "http://www.jb51.net";//Form submission address
$snoopy->submit($action,$formvars);//$formvars is the submitted array
echo $snoopy- >results; //Get the results returned after form submission
$snoopy->submittext; //Only return the text without HTML after submission
$snoopy->submitlinks;//Only return after submission Link

Now that the form has been submitted, you can do a lot of things. Next, let’s disguise the IP and browser
3. Disguise
PHP code
Copy code The code is as follows:

$formvars["username"] = "admin";
$formvars["pwd"] = "admin";
$action = "http://www.jb51.net";
include "snoopy.php";
$snoopy = new Snoopy;
$snoopy->cookies["PHPSESSID" ] = 'fc106b1918bd522cc863f36890e6fff7'; //Disguise sessionid
$snoopy->agent = "(compatible; MSIE 4.01; MSN 2.5; AOL 4.0; Windows 98)"; //Disguise browser
$snoopy-> ;referer = "http://s.jb51.net"; //Disguise source page address http_referer
$snoopy->rawheaders["Pragma"] = "no-cache"; //cache's http header information
$snoopy->rawheaders["X_FORWARDED_FOR"] = "127.0.0.101"; //Disguise ip
$snoopy->submit($action,$formvars);
echo $snoopy-> ;results;

It turns out that we can camouflage session, camouflage browser, camouflage IP, haha, we can do a lot of things.
For example, if you vote with a verification code and IP address, you can vote continuously.
ps: Disguising the IP here is actually disguising the http header, so the IP obtained through REMOTE_ADDR cannot be disguised.
On the contrary, those who obtain the IP through the http header (the kind that can prevent proxying) can do it themselves to create ip.
A brief explanation of how to verify the code:
First use an ordinary browser to view the page and find the sessionid corresponding to the verification code.
Write down the sessionid and verification code values ​​at the same time.
Next Just use snoopy to fake it.
Principle: Since it is the same sessionid, the verification code obtained is the same as the one entered for the first time.
4 Sometimes we may need to forge more things, snoopy completely thought of it for us
PHP code
Copy code The code is as follows:

$snoopy->proxy_host = "www.jb51.net";
$snoopy->proxy_port = "8080"; //Use proxy
$snoopy->maxredirs = 2; //Number of redirections
$snoopy->expandlinks = true; //Whether the completion link is often used during collection
// For example, the link is /images/taoav.gif, which can be changed to it The full link http://www.jb51.net/images/taoav.gif, this place can actually be replaced by the ereg_replace function during the final output
$snoopy->maxframes = 5 //Maximum frames allowed Number
//Note that when grabbing the frame, $snoopy->results returns an array
$snoopy->error //Returns error message

Basic usage above Got it, let me demonstrate it with an example:
PHP code
Copy code The code is as follows:

//echo var_dump($_SERVER);
include("Snoopy.class.php");
$snoopy = new Snoopy;
$snoopy- >agent = "Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-
CN; rv:1.9.0.5) Gecko/2008120122 Firefox/3.0.5 FirePHP/0.2.1";//This is Browser information
information, which browser you used to view cookies earlier, use that browser’s information (ps:$_SERVER can view the browser information)
$snoopy->referer = "http: //bbs.jb51.net/index.php";
$snoopy->expandlinks = true;
$snoopy->rawheaders["COOKIE"]="__utmz=17229162.1227682761.29.7.utmccn=( referral)|utmcsr=jb51.net|utmcct=/html/index.html|utmcmd=referral; cdbphpchina_smile=1D2D0D1; cdbphpchina_cookietime=2592000; __utma=233700831.1562900865.1227113506.1229613449.12 31233266.16; __utmz=233700831.1231233266.16.8.utmccn=(referral)| utmcsr=localhost:8080|utmcct=/test3.php|utmcmd=referral; __utma=17229162.1877703507.1227113568.1231228465.1231233160.58; uchome_loginuser=sinopf; xscdb_cookietime=259200 0; __utmc=17229162; __utmb=17229162; cdbphpchina_sid=EX5w1V; __utmc=233700831; cdbphpchina_visitedfid =17; cdbphpchinaO766uPYGK6OWZaYlvHSuzJIP22VpwEMGnPQAuWCFL9Fd6CHp2e%2FKw0x4bKz0N9lGk; ZrVKgqPOttHVr%2B6KLPg3DtWpTMUI4ttqNNVpukUj6ElM; cdbphpchina_onlineusernum=3721";
$snoopy->fetch("http://bbs.jb51.net");
$n=ereg_replace("href="","href="http://bbs.jb51.net/",$snoopy->results );
echo ereg_replace("src="","src= "http://bbs.jb51.net/",$n);
?>

This is the process of simulating logging into the PHPCHINA forum. You must first check your browser's information
Message: echo var_dump($_SERVER); This code can see the information of your browser. Copy the content after
$_SERVER['HTTP_USER_AGENT'] and paste it in the $snoopy->agent area. , and then you need to check your own
COOKIE. After logging in to the forum with your own forum account, enter
javascript:document.write(document.cookie) in the browser address bar, press Enter, and you can view it. Go to your own cookie information, copy and paste
after $snoopy->rawheaders["COOKIE"]=. (My cookie information has been deleted for security reasons)

Then pay attention to:

# $n=ereg_replace("href="","href="http:// bbs.jb51.net/",$snoopy->results );

# echo ereg_replace("src="","src="http://bbs.jb51.net/",$n );

These two lines of code, because all the HTML source addresses of the collected content are relative links, should be replaced with absolute links, so that the pictures and css styles of the forum can be quoted.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/323716.htmlTechArticleWhat is Snoopy? (Download snoopy) Snoopy is a php class that is used to imitate the functions of a web browser. It Able to complete tasks of obtaining web page content and sending forms. Some features of Snoopy: * Square...
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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles