This module sniff username and password of unprotected protocols.
Project description
PasswordsSniffer
Description
This module sniff username and password of unprotected protocols.
Requirements
This package require:
- python3
- python3 Standard Library
- Scapy
Installation
pip install PasswordsSniffer
Usages
Command line
PasswordsSniffer
python3 -m PasswordsSniffer
python3 PasswordsSniffer.pyz
PasswordsSniffer test # test all available class
PasswordsSniffer -i "localhost" # change iface
PasswordsSniffer --iface "localhost" # change iface
PasswordsSniffer -P 2323 # Add analysis on server response on port 2323
PasswordsSniffer --add-response-ports 2323 # Add analysis on server response on port 2323
PasswordsSniffer -p 8080 # Add analysis on client request on port 8080
PasswordsSniffer --add-request-ports 8080 # Add analysis on client request on port 8080
PasswordsSniffer --add-string "Password: " # Detect a packet if "Password: " is in TCP Raw content
PasswordsSniffer -s "Password: " # Detect a packet if "Password: " is in TCP Raw content
PasswordsSniffer -l 20 # Change log level
PasswordsSniffer --log-level 20 # Change log level
Python script
from PasswordsSniffer import *
sniffer = SnifferAll()
sniffer.start()
import PasswordsSniffer
from scapy.all import TCP
class CustomSniffer(PasswordsSniffer.SnifferTelnet):
def __init__(self):
super().__init__()
self.ports = [2323]
self.protocol = TCP
self.strings = [b'Password: ']
self.regexs = [r'\w:\s?$'.encode()]
self.request_detection_ports = self.ports
self.response_detection_ports = self.ports
sniffer = CustomSniffer()
sniffer.start()
Links
License
Licensed under the GPL, version 3.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
PasswordsSniffer-0.0.2.tar.gz
(113.4 kB
view details)
File details
Details for the file PasswordsSniffer-0.0.2.tar.gz
.
File metadata
- Download URL: PasswordsSniffer-0.0.2.tar.gz
- Upload date:
- Size: 113.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c956c835678d29b683066f2d6d6046572b965652a9174170369137e8ccfa3fcf |
|
MD5 | 75d372b9b472e752ec81764cdcc6e0f0 |
|
BLAKE2b-256 | 6fdd6b135641900716c8c07d505cd18ee0222e2f99e911939832d77a5953c70b |