Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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)

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
* time

Install 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.