
Shreder는 강력한 다중 스레드 SSH 프로토콜 비밀번호 무차별 대입 도구입니다.
Shreder는 강력한 멀티스레드 SSH 프로토콜 비밀번호 무차별 대입 도구입니다.
0.1초에 하나의 비밀번호.1분 40초에 1000개의 비밀번호를 시도합니다.pip3 install git+https://github.com/EntySec/Shreder
Shreder를 사용하려면 터미널에 shreder를 입력하세요.
usage: shreder [-h] [-p PORT] [-u USERNAME] [-l LIST] [-d DELAY] target
Shreder is a powerful multi-threaded SSH protocol password brute-force tool.
positional arguments:
target
optional arguments:
-h, --help show this help message and exit
-p PORT, --port PORT SSH port.
-u USERNAME, --username USERNAME
SSH username.
-l LIST, --list LIST Passwords list.
-d DELAY, --delay DELAY
Delay between login attempts.
단일 대상 무차별 대입
재미로 내 장치를 무차별 대입해 보겠습니다.
shreder 192.168.2.109 -u mobile -l passwords.txt
Shreder는 또한 자체 Python API를 가지고 있으며, 코드에 Shreder를 임포트하여 호출할 수 있습니다.
from shreder import Shreder
다음은 단일 대상을 무차별 대입하는 데 사용할 수 있는 모든 Shreder 기본 함수입니다.
connect(host, port, username, password) - 주어진 주소로 단일 대상에 연결.brute(host, port, username, dictionary, delay) - 주어진 주소로 단일 대상 무차별 대입.단일 대상 무차별 대입
from shreder import Shreder
shreder = Shreder()
password = shreder.brute('192.168.2.109', 22, 'mobile', 'passwords.txt')
print(password)