Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
XSRFProbe — The Prime Cross Site Request Forgery (CSRF) Audit and Exploitation Toolkit. | Kitploit
Tools/GitHubGitHub/0xinfection/xsrfprobe
Vulnerability ScannersWeb SecurityPenetration TestingCrawler
GitHub0xinfection/xsrfprobe

XSRFProbe

The Prime Cross Site Request Forgery (CSRF) Audit and Exploitation Toolkit.

View Repository
1.3k21931 month agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share


xsrfprobe-logo

XSRFProbe

The Prime Cross Site Request Forgery Audit & Exploitation Toolkit.

About

XSRFProbe is an advanced Cross Site Request Forgery (CSRF/XSRF) Audit and Exploitation Toolkit. Equipped with a powerful crawling engine and numerous systematic checks, it is able to detect most cases of CSRF vulnerabilities, their related bypasses and futher generate exploitable proof of concepts with each found vulnerability. For more info on how XSRFProbe works, see XSRFProbe Internals on wiki.

banner-image

XSRFProbe Wiki • Getting Started • General Usage • Advanced Usage • XSRFProbe Internals • Gallery

Some Features

  • Runs a full battery of systematic checks — backed by a response diffing/benchmark engine — before declaring an endpoint vulnerable.
  • Detects and actively tampers with many Anti-CSRF token implementations: request-method switch, token removal, empty/duplicated values, non-session-bound tokens, double-submit cookies and custom-header tokens.
  • Probes Referer and Origin validation with real-world bypasses (header removal, regex/subdomain tricks, Origin: null) as well as method-override and Content-Type bypasses.
  • Analyses SameSite cookie protections, with optional subdomain enumeration (via crt.sh) for sibling-domain bypass testing.
  • Works with a powerful crawler featuring deterministic, bounded crawling and scanning (configurable via --max-urls, --max-depth and --crawl-timeout).
  • Optional headless Firefox (Selenium) integration for browser-dependent tests and auto-validation of generated PoCs.
  • Accurate Token-Strength Detection and using entropy and encoding checks.

Vulnerability Tests Performed:

Every check XSRFProbe runs has a unique identifier. The ID is shown in the console output (e.g. [T6] VULNERABLE: ...) and stored as the test_id field of each finding in the JSON report (alongside its severity and, where relevant, an exploitability note under details), so each finding maps back to the exact test that produced it.

S* checks require the optional headless-browser integration (--browser). T*/M*/R*/O* are HTTP-level checks gated by the response diffing/benchmark engine.

Gallery

Lets see some real-world scenarios of XSRFProbe in action:

Installation & Usage

For the full usage info, please take a look at the wiki's — General Usage and Advanced Usage.

Installing via Pypi:

XSRFProbe can be easily installed via a single command:

root@kitploit:~
pip install xsrfprobe

Installing manually:

  • For the basics, the first step is to install the tool:
root@kitploit:~
pip install .
  • Now, the tool can be fired up via:
root@kitploit:~
xsrfprobe --help
  • The browser-dependent tests (--browser, --auto-validate-poc) additionally require geckodriver to be available in your PATH (or pointed to via --geckodriver-path).
  • After testing XSRFProbe on a site, an output folder is created in your present working directory as xsrfprobe-output. Under this folder you can view the detailed logs and information collected during the scans (pass --json for a machine-readable report).

Version and License

XSRFProbe is currently v3.0.0 and the work is licensed under the GNU General Public License (GPLv3).

Warnings

Do not use this tool on a live site!

It is because this tool is designed to perform all kinds of form submissions automatically which can sabotage the site. Sometimes you may screw up the database and most probably perform a DoS on the site as well.

Test on a disposable/dummy setup/site!

Disclaimer

Usage of XSRFProbe for testing websites without prior mutual consistency can be considered as an illegal activity. It is the final user's responsibility to obey all applicable local, state and federal laws. The author assumes no liability and is not responsible for any misuse or damage caused by this program.

Author's Words

This project is based entirely upon my own research and my own experience with web applications on Cross-Site Request Forgery attacks. You can try going through the source code to help you understand how this toolkit was built. Useful pull requests, ideas and issues are highly welcome. If you wish to see what how XSRFProbe is being developed, check out the Development Board.

Crafted with ♡ by @0xInfection

Download Tool
Analysis
  • Can generate both normal as well as maliciously exploitable CSRF proof of concepts.
  • Out of the box support for custom cookie values, generic headers and a JSON report — each finding carries a severity rating and an exploitability precondition.
  • The user is in control of everything whatever the scanner does.
  • User-friendly interaction environment with full verbose support and detailed logging of errors, vulnerabilities and tokens.
  • IDCategoryCheck
    D1Token presenceNo anti-CSRF token present (generic request forgery)
    D2Token presenceLogin form lacks CSRF token (login CSRF)
    T2Token tamperingValidation tied to request method (GET ↔ POST switch)
    T3Token tamperingToken can be omitted entirely
    T4Token tamperingToken not tied to the user session (cross-session replay)
    T5Token tamperingToken tied to a non-session cookie (e.g. csrfKey)
    T6Token tamperingNaive double-submit cookie (cookie == body, no binding)
    T7Token tamperingEmpty token value accepted
    T8Token tamperingCustom-header token can be omitted or forged
    M1Method / Content-TypeHTTP method override via _method parameter
    M2Method / Content-TypeHTTP method override via X-HTTP-Method-Override header
    M4Method / Content-TypeValidation bypass via alternate Content-Type
    R0RefererReferer header not validated on form submission
    R1RefererReferer validation bypassed by omitting the header
    R2aRefererReferer regex bypass — target as attacker subdomain
    R2bRefererReferer regex bypass — target in query string
    R2cRefererReferer regex bypass — target in path
    O1OriginOrigin validation bypassed with Origin: null
    O2OriginOrigin validation bypassed with a subdomain trick
    O3OriginOrigin validation bypassed by omitting the header
    S2SameSite (browser)SameSite=Strict bypass via client-side redirect gadget
    S3SameSite (browser)SameSite=Strict bypass via XSS on a sibling subdomain
    S4SameSite (browser)SameSite=Lax bypass via cookie-refresh / OAuth flow
    C1Cookie postureCookie SameSite attribute analysis (None/Lax/Strict)
    C2Cookie postureNo SameSite attribute set on cookies
    E1Token strengthToken uses a weak/structured hash encoding
    A1Token strengthPost-scan token predictability / forgeability analysis