
Simple scanner to detect vulnerable Livewire installations.

Livewire Passive Vulnerability Scanner is a Python 2.7 tool designed to passively detect Livewire versions used by websites and identify potential vulnerabilities based on version comparison.
This scanner does not exploit any vulnerability. It only analyzes publicly accessible page content (HTML/JavaScript) to determine the detected Livewire version.
A target is considered VULNERABLE if:
Livewire version < 3.6.4
Versions equal to or higher than 3.6.4 are marked as SAFE.
requestsInstall dependencies:
pip install requests
Prepare a target list file (e.g. list.txt):
example.com
https://targetsite.com
sub.domain.com
Run the scanner:
python livewire_scan.py list.txt
Vulnerable targets will be saved to:
vuln.txt
Terminal output:
[+] VULN : example.com | Livewire 3.5.2
[-] SAFE : targetsite.com | Livewire 3.6.4
[!] ERROR : timeoutsite.com
Saved file (vuln.txt):
example.com
another-vulnerable-site.com
This tool is provided for educational and authorized security testing purposes only.
More Disclaimer You Can see the disclaimer on the cover of Jenderal92. You can check it HERE !!!