https://github.com/kost/wall-of-sheep
Wall of Sheep/Shame implemented in Perl with different modes: HTML, CGI and standalone web server
https://github.com/kost/wall-of-sheep
Last synced: about 1 month ago
JSON representation
Wall of Sheep/Shame implemented in Perl with different modes: HTML, CGI and standalone web server
- Host: GitHub
- URL: https://github.com/kost/wall-of-sheep
- Owner: kost
- Created: 2010-05-22T07:48:32.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2010-05-22T07:53:11.000Z (almost 15 years ago)
- Last Synced: 2025-03-27T18:01:37.823Z (about 2 months ago)
- Language: Perl
- Homepage:
- Size: 93.8 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Simple Wall of Sheep/Shame written in Perl.
(C) Kost (kost.com.hr). Distributed under GPL.It can be run in HTML, CGI and web server mode.
Uses ettercap for actual sniffing, it just displays results.You need to feed this script with ettercap log file. Few examples:
ettercap -Tq -m sniff.log
ettercap -Tq -m sniff.log -M arp /gateway-IP/ //.After that, you need to start wall of sheep (in mode you preffer):
HTML mode:
while true; do (./wall-of-sheep.pl --html --url http://192.168.0.1/wos.html > /var/www/wos.html) ; sleep 10; doneWeb server mode:
./wall-of-sheep.pl --host 192.168.0.1 --log sniff.logNote that this implementation should be used with care.
It's still DoS vulnerable... (Feel free to send patch!)