https://github.com/gill-singh-a/ssh-brute-force
A Python Program that uses paramiko module to brute force SSH (Secure Shell) Server
https://github.com/gill-singh-a/ssh-brute-force
brute-force multiprocessing paramiko python3 ssh
Last synced: 9 months ago
JSON representation
A Python Program that uses paramiko module to brute force SSH (Secure Shell) Server
- Host: GitHub
- URL: https://github.com/gill-singh-a/ssh-brute-force
- Owner: Gill-Singh-A
- Created: 2024-04-17T17:10:08.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-11T22:17:07.000Z (about 2 years ago)
- Last Synced: 2025-10-05T19:59:27.956Z (9 months ago)
- Topics: brute-force, multiprocessing, paramiko, python3, ssh
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SSH Brute Force
A Python Program that uses **paramiko** module to brute force SSH (Secure Shell) Server
## Requirements
Language Used = Python3
Modules/Packages used:
* paramiko
* datetime
* optparse
* colorama
* multiprocessing
* time
Install the dependencies:
```bash
pip install -r requirements.txt
```
## Arguments
* '-s', "--server" : Target SSH Server
* '-p', "--port" : Port of Target SSH Server (Default=22)
* '-u', "--users" : Target Users (seperated by ',') or File containing List of Users
* '-P', "--password" : Passwords (seperated by ',') or File containing List of Passwords
* '-c', "--credentials" : Name of File containing Credentials in format ({user}:{password})
* '-w', "--write" : CSV File to Dump Successful Logins (default=current data and time)