findwall
1.0.0
FindWall 是 Python 脚本,可用于了解您的网络提供商是否通过阻止任何 TCP/UDP 端口来限制您对互联网的访问。为了执行此检查,FindWall 需要连接您财产的公共 VPS。 FindWall 执行以下操作:
要使用 FindWall,您只需要一个公共 VPS 帐户。如果要测试1-1024
范围内的端口,该帐户必须具有 root 访问权限。自动安装nc
工具打开端口也需要root账户。
$ pip install -r requirements
$ python findwall.py --help
=====================================================================================
███████╗██╗███╗ ██╗██████╗ ██╗ ██╗ █████╗ ██╗ ██╗
██╔════╝██║████╗ ██║██╔══██╗██║ ██║██╔══██╗██║ ██║
█████╗ ██║██╔██╗ ██║██║ ██║██║ █╗ ██║███████║██║ ██║
██╔══╝ ██║██║╚██╗██║██║ ██║██║███╗██║██╔══██║██║ ██║
██║ ██║██║ ╚████║██████╔╝╚███╔███╔╝██║ ██║███████╗███████╗
╚═╝ ╚═╝╚═╝ ╚═══╝╚═════╝ ╚══╝╚══╝ ╚═╝ ╚═╝╚══════╝╚══════╝
=====================================================================================
usage: findwall.py [-h] --ssh-host SSH_HOST [--ssh-port SSH_PORT] --ssh-username SSH_USERNAME [--ssh-password SSH_PASSWORD] [--ask-ssh-pass] [--ssh-key SSH_KEY] --ports PORTS [--udp]
[--threads THREADS]
Check if someone is blocking you!
optional arguments:
-h, --help show this help message and exit
--ssh-host SSH_HOST Remote host
--ssh-port SSH_PORT Remote SSH port
--ssh-username SSH_USERNAME
Remote SSH username
--ssh-password SSH_PASSWORD
Remote SSH password
--ask-ssh-pass Ask for remote SSH password
--ssh-key SSH_KEY Remote SSH private key
--ports PORTS Port range to scan (default: 1-1024)
--udp Scan in UDP
--threads THREADS Number of threads (default: 1)
举个例子:
$ python findwall.py --ssh-host 172.17.0.2 --ssh-port 22 --ssh-username test --ssh-password test --ports 8000-8010 --threads 3