https://github.com/r4sas/proxychecker
Proxy tunnels checker for I2P written on python
https://github.com/r4sas/proxychecker
i2p i2pd proxy-checker pysocks python3 urllib3
Last synced: about 2 months ago
JSON representation
Proxy tunnels checker for I2P written on python
- Host: GitHub
- URL: https://github.com/r4sas/proxychecker
- Owner: r4sas
- Created: 2019-04-30T04:52:04.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-30T04:54:12.000Z (about 6 years ago)
- Last Synced: 2025-01-29T13:11:28.243Z (3 months ago)
- Topics: i2p, i2pd, proxy-checker, pysocks, python3, urllib3
- Language: Python
- Size: 1.95 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Proxy checker
=====Written on python, requires at least version 3.4.
For work needed PySocks and urllib3, install it with pip:
```
$ python3 -m pip install PySocks
$ python3 -m pip install urllib3
```That script written primary for checking I2P proxy tunnels.
Configuring
-----Fill `list.ini` with your tunnels options as in example file.
At same time you need that tunnels configured in your tunnels.conf (i2pd) or tunnels page (i2p).
Example for *false.i2p* outproxy usage in i2pd:
```
[FALSE]
type = httpproxy
address = 127.0.0.1
port = 4450
outproxy = http://77mpz4z6s4eenjexleclqb36uxvqjtztqikjfqa4sovojh6gwwha.b32.i2p
keys = false.dat
```And, according to that tunnel, proxy checker config:
```
[4450]
type = http
address = 77mpz4z6s4eenjexleclqb36uxvqjtztqikjfqa4sovojh6gwwha.b32.i2p
name = false.i2p
owner = meeh
info = httpproxy
```**Note that fields PORT and TYPE is required!** Other fields is not required and used only for filling table output.