Skip to content

This repo contain a script that fires GET against targets, extracts X-Powered-By header, collects “vintage” techs version and prints them.

Notifications You must be signed in to change notification settings

DamBasement/BruttoForte

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

BRUTTOFORTE — Banner Fingerprinting Tool

A fast banner-grabber for vintage stacks and obvious misconfigs.
There are two kinds of servers: those already hacked and those still leaking X-Powered-By.


Overview

BRUTTOFORTE scans HTTP headers to spot legacy web stacks:

  • X-Powered-By, Server, .NET CLR, PHP, IIS, Express, etc.
  • Meant for fast recon before full-on exploitation.
  • Targets internal scopes and forgotten environments.

Structure

bruttoforte/
├── CheckerBruttoForte.py   // Main script
├── targets.txt             // List of URLs to scan
├── requirements.txt
├── README.md

Usage

Install requirements:

pip install -r requirements.txt

Run basic scan:

python3 CheckerBruttoForte.py -f targets.txt

Run with verbosity and more threads:

python3 CheckerBruttoForte.py -f targets.txt -t 30 --verbose

Example output:

[+] Scanning 3 target(s) with 30 threads…
    https://url.com       -> IIS 8.5
    https://url.lan       -> PHP 5.6.40
    http://url.portal     -> ASP.NET 4.0.30319

=== Top 5 retro stacks ===
[2 hit] IIS 8.5
[1 hit] PHP 5.6.40

Done. Legacy never dies.

Why Use This

  • Legacy stacks are still everywhere.
  • It's fast and quiet.
  • Perfect warm-up before noisy scanners.
  • CI-friendly fingerprinting.

Roadmap

  • CSV / JSON output
  • Regex signatures via YAML
  • Noisy mode: /phpinfo.php, /server-status, etc.

Legal

Use only on systems you have permission to test.
We are not liable for misuse or negligence.


License

MIT – clone, fork, repurpose.
Exploit your own infrastructure. Always.

About

This repo contain a script that fires GET against targets, extracts X-Powered-By header, collects “vintage” techs version and prints them.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages