What is the onion mode proxy of SQLMAP?

王林
Release: 2023-05-26 09:56:54
forward
904 people have browsed it

Due to the need to conduct penetration testing on external websites, most websites have access frequency control. Once this frequency is exceeded, the IP will be banned directly. This problem is particularly prominent when running SQLMAP. When SQLMAP is not completely run, it will directly exit with an error and the interface will be red.

So I started to study the proxy mode of SQLMAP. SQLMAP has two proxy modes, one is a normal proxy (HTTP proxy) and the other is an onion proxy.

Although I have the application of ordinary agents to write about, I found that Baidu has already elaborated it in detail, so I will not repeat it again. Sqlmap Extension—External IP Proxy Pool Implementation

Let’s focus on the onion proxy. At the beginning, when I used onion directly for injection, there was no “aunt red” report. Later, as the number of penetrated websites increased, I found that tor was still There is an error reporting problem. I am thinking whether the tor module in SQLMAP does not have the function of automatically switching IP.

So I wrote a code test to simulate the situation where the IP is directly banned when the intrusion detection system detects the injection. I use a delay of 1000 seconds here, and sqlmap will report an error.

What is the onion mode proxy of SQLMAP?

What is the onion mode proxy of SQLMAP?

##Use sqlmap --tor --tor-type="SOCKS5" for injection. Unfortunately, tor The IP still hasn't changed.

Later I thought that tor has a mechanism to continuously switch IPs. I guessed that there was no problem with sqlmap. The problem should be with the configuration of tor, so I modified the tor configuration file torrc, located at C:\Users\Administrator\AppData\Roaming \tor

Just add a sentence and switch IP once a minute.

MaxCircuitDirtiness 1
Copy after login
I ran it using sqlmap and found that the IPs were constantly switching


What is the onion mode proxy of SQLMAP?

But the configuration file can only be used for 1 minute. I think it needs to be in a short time Switching IP within a certain time, so I found an open source software tor-ip-changer, download address


What is the onion mode proxy of SQLMAP?


##

The above is the detailed content of What is the onion mode proxy of SQLMAP?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!