added caternet payload

pull/34/head
Darren Kitchen 2019-07-21 18:18:13 -07:00 committed by GitHub
parent 815186786c
commit d5875dccef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,23 @@
<script language="JavaScript">
<!--
function random_img(){
var kerby=new Array()
kerby[1]="kerby1.jpg"
kerby[2]="kerby2.jpg"
kerby[3]="kerby3.jpg"
kerby[4]="kerby4.jpg"
kerby[5]="kerby5.jpg"
kerby[6]="kerby6.jpg"
kerby[7]="kerby7.jpg"
kerby[8]="kerby8.jpg"
kerby[9]="kerby9.jpg"
var ry=Math.floor(Math.random()*kerby.length)
if (ry==0)
ry=1
document.write('<img src="'+kerby[ry]+'">')
}
random_img()
//-->
</script>

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 96 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

View File

@ -0,0 +1,14 @@
# Title: Caternet
# Author: Hak5Darren
# Version: 1.0
# Description: Forwards all traffic to local webserver hosting cat photos.
# Props: In loving memory of Hak5Kerby
LED SETUP
NETMODE NAT
echo "address=/#/172.16.32.1" > /tmp/dnsmasq.address
/etc/init.d/dnsmasq restart
LED ATTACK
iptables -A PREROUTING -t nat -i eth0 -p udp --dport 53 -j REDIRECT --to-port 53
python -m SimpleHTTPServer 80