findwall
1.0.0
FindWall은 네트워크 공급자가 TCP/UDP 포트를 차단하여 인터넷 액세스를 제한하는지 이해할 수 있는 Python 스크립트입니다. 이 확인을 수행하려면 FindWall이 귀하 자산의 공개 VPS를 연결해야 합니다. FindWall은 다음 작업을 수행합니다.
FindWall을 사용하려면 공개 VPS에 계정이 필요합니다. 1-1024
범위의 포트를 테스트하려면 계정에 루트 액세스 권한이 있어야 합니다. 포트를 열기 위해 nc
도구를 자동으로 설치하려면 루트 계정이 필요합니다.
$ 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