Burp-grade web application pentesting suite. Python-native. Accessible-first. Local web UI.
Status: Phase 8 complete — 346/346 unit tests pass. See
docs/ROADMAP.md.
A local web app on http://127.0.0.1:8787 that gives you:
- An intercepting MITM proxy with held-request queue and per-rule filters.
- HTTP history with full search, filter, export.
- A Repeater (edit + replay any request) — six engines (httpx / raw / h3 / curl-cffi × 3).
- An Intruder (sniper / battering ram / pitchfork / cluster bomb) — same six engines.
- A Param miner, GraphQL / WebSocket / SAML / HTTP-2 / smuggling workbenches.
- A passive + active scanner (with built-in OAST-SSRF check), a Sequencer, a Macro engine.
- A Decoder/Encoder, JWT workbench, Comparer, Sitemap, Match-and-replace, Reporter.
- A Scheduler for recurring passive scans (APScheduler optional, thread fallback).
- A HAR importer (
reqlore import-har), an opt-in update check, a plugin API. - A Settings page with themes (light / dark / high-contrast), verbosity profiles, audio cues, and a remappable keyboard map.
Full per-module walkthrough: docs/USAGE.md.
Burp Suite is the industry standard but its Java Swing UI is a barrier for screen-reader users. Reqlore is built ground-up as plain semantic HTML5 + Jinja2, which is the most reliable substrate for NVDA, JAWS, Orca, and VoiceOver. Targets WCAG 2.2 AA; details in docs/ACCESSIBILITY.md.
Requires Python 3.12+. Pick the path that matches your platform.
# Linux / macOS
git clone https://github.com/ibrasonic/Reqlore.git
cd Reqlore
sh install.sh:: Windows (cmd or PowerShell)
git clone https://github.com/ibrasonic/Reqlore.git
cd Reqlore
install.batThe installer creates a virtual environment in .venv/, installs Reqlore
into it, and prints how to run the reqlore command. On Linux/macOS the
script tries to install pipx automatically via your
system package manager (apt/dnf/pacman/zypper/apk/brew, with
sudo if needed) so you get a global reqlore command with no activation
step; set REQLORE_NO_PIPX=1 to skip and go straight to the venv path.
Then:
reqlore init demo.rlr
reqlore both --project demo.rlr # UI on http://127.0.0.1:8787, proxy on 127.0.0.1:8080
(On Windows, prefix the command with .venv\Scripts\ or activate the venv with .venv\Scripts\activate.bat.)
git clone https://github.com/ibrasonic/Reqlore.git
cd Reqlore
py -m venv .venv
.venv\Scripts\Activate.ps1 # Linux/macOS: source .venv/bin/activate
py -m pip install -e ".[dev]" # editable install + test/lint tools
py -m pytest reqlore/tests/unit -q # should be 346 passed
reqlore init demo.rlr
reqlore both --project demo.rlrOther subcommands:
reqlore ui --project demo.rlr # UI only
reqlore proxy --project demo.rlr # MITM only
reqlore browser # spawn Firefox pre-pointed at the proxy
Optional extras: [h3], [impersonate], [report], [plugins], [yaml], [a11y], [schedule] — see docs/USAGE.md.
Debian/Ubuntu/Kali users:
pip install .against system Python is blocked by PEP 668. Useinstall.sh(recommended), orpython3 -m venv .venv && source .venv/bin/activatefirst. Ifvenvis missing,sudo apt install python3-venv.
sh uninstall.sh # Linux / macOS
sh uninstall.sh --purge-data # also drop ./data and demo.rlr* files:: Windows
uninstall.bat
uninstall.bat --purge-dataRemoves the pipx-installed reqlore and/or the local .venv/. Does not remove pipx itself, Python, or the mitmproxy CA you may have trusted in your browser/OS keystore — those are kept because you might want them for other tools.
docker compose up --build
# UI: http://127.0.0.1:8787
# Proxy: 127.0.0.1:8080Project file persists in ./data/my.rlr. Both listeners are pinned to loopback on the host. Details: docs/USAGE.md.
| File | What |
|---|---|
docs/USAGE.md |
Complete user guide — every module, every shortcut, every flag. |
docs/STORY-blind-pentester.txt |
A narrated, blind-pentester walkthrough of vuln-bank / vuln-shop / vuln-social. |
docs/PLAN.md |
Top-level why + non-goals |
docs/ARCHITECTURE.md |
Process model, engines, storage |
docs/FEATURES.md |
Module-by-module status |
docs/ROADMAP.md |
Phase plan |
docs/ACCESSIBILITY.md |
WCAG checklist + patterns |
docs/SECURITY.md |
Threat model of the tool |
docs/PLUGINS.md |
Plugin API |
docs/CONTRIBUTING.md |
Dev workflow |
Source-available, noncommercial. Reqlore is released under the
PolyForm Noncommercial License 1.0.0. You're free to use,
modify, study, and contribute it for any noncommercial purpose —
research, learning, hobby work, education, charity, public safety,
etc. Pull requests are very welcome. Commercial use (selling it,
re-selling derivatives, paid consulting built around Reqlore as the
product) is not permitted under this license; contact the author
(ibrahim.badawy@aucegypt.edu) if you need a commercial arrangement.
Copyright (c) 2026 Ibrahim Badawy.