Skip to content

Latest commit

 

History

History
32 lines (29 loc) · 716 Bytes

README.md

File metadata and controls

32 lines (29 loc) · 716 Bytes

Python proxy checker

Description

Simple multithreaded proxy checker. Takes a single text file as input.

Usage

The script looks for all proxies in a file named "proxylist.txt", takes all the proxies out, checks them and then puts the result in a file named "checkedproxylist.txt". The input format is "ip:port" seperated by line breaks, like:

127.0.0.1:8080
127.0.0.2:80
127.0.0.3:1080

So, to change the input file and the output file, you have to alter the following lines:

filetocheck = 'proxylist.txt'
out_filename = 'checkedproxylist.txt'

For example:

python-proxy-checker
|-- proxy.py
|
|-- README.md
|
|-- input
|   |-- proxylist.txt
|
|-- output
    |-- checkedproxylist.txt