Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gill-singh-a/sip-brute-force
A Simple Python Program that uses scapy and socket module for Offline and Online Brute Force attacks against Session Invite Protocol (SIP)
https://github.com/gill-singh-a/sip-brute-force
brute-force python3 scapy sip socket voip
Last synced: 3 days ago
JSON representation
A Simple Python Program that uses scapy and socket module for Offline and Online Brute Force attacks against Session Invite Protocol (SIP)
- Host: GitHub
- URL: https://github.com/gill-singh-a/sip-brute-force
- Owner: Gill-Singh-A
- Created: 2024-11-01T18:27:04.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2025-01-06T20:40:45.000Z (12 days ago)
- Last Synced: 2025-01-06T21:31:19.486Z (12 days ago)
- Topics: brute-force, python3, scapy, sip, socket, voip
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SIP Brute Force
A Simple Python Program that uses **scapy** and **socket** module for Offline and Online Brute Force attacks against Session Invite Protocol (SIP)
## Requirements
Language Used = Python3
Modules/Packages used:
* socket
* scapy
* hashlib
* pickle
* random
* datetime
* base64
* multiprocessing
* optparse
* colorama
* timeInstall the dependencies:
```bash
pip install -r requirements.txt
```
### Note
When the Protocol for Online Brute Force is **UDP**, mutliprocessing will not work, because the Port at which the Client (our machine) listens would be the same for all threads which would lead to conflict between packets of different threads.