https://github.com/mikehorn-git/hydra
Hunt sql commands in pcap
https://github.com/mikehorn-git/hydra
forensics network-forensics pcap pyshark sqlinjection
Last synced: 9 months ago
JSON representation
Hunt sql commands in pcap
- Host: GitHub
- URL: https://github.com/mikehorn-git/hydra
- Owner: MikeHorn-git
- License: mit
- Created: 2024-05-03T21:16:34.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-09-05T18:36:47.000Z (10 months ago)
- Last Synced: 2025-09-05T20:40:33.357Z (10 months ago)
- Topics: forensics, network-forensics, pcap, pyshark, sqlinjection
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hydra

## Table of content
- [Requirement](https://github.com/MikeHorn-git/Hydra#requirement)
- [Installation](https://github.com/MikeHorn-git/Champs-Elysees#installation)
- [Uv](https://github.com/MikeHorn-git/Hydra#uv)
- [Pip](https://github.com/MikeHorn-git/Hydra#pip)
- [Nix](https://github.com/MikeHorn-git/Hydra#nix)
- [Usage](https://github.com/MikeHorn-git/Hydra#usage)
## Requirement
- [Tshark](https://www.wireshark.org/docs/man-pages/tshark.html)
### Arch
```bash
sudo pacman -S wireshark-cli
```
### Debian
```bash
sudo apt-get install tshark
```
## Installation
### Uv
```bash
git clone https://github.com/MikeHorn-git/Hydra.git
cd Hydra/
uv sync
```
### Pip
```bash
git clone https://github.com/MikeHorn-git/Hydra.git
cd Hydra/
pip install .
```
### Nix
```bash
git clone https://github.com/MikeHorn-git/Hydra.git
cd Hydra/
devenv shell
```
## Usage
```bash
usage: PsqlHunter.py [-h] [--csv] [--json] [--output OUTPUT] pcap
Hunt sql commands in pcap.
positional arguments:
pcap Path to the pcap file or folder containing pcap files
options:
-h, --help show this help message and exit
--csv Export results to CSV
--json Export results to JSON
--output OUTPUT Path to the output folder
```