File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed
Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ Scripts that could be injected in MITM attacks using dSploit for Android.
1010* move.js - Moves the page a few pixels up and then down constantly
1111* rotate.js - Rotates images in webpage
1212* reverse.js - Reverses images
13+ * blinkRed.js - Text is blinking red and black
1314
1415## License
1516The full license text is included in ` LICENSE.txt ` .
Original file line number Diff line number Diff line change 1+ // Text is blinking red and black
2+
3+ < script type = "text/javascript" >
4+ window.onload=function() {
5+ var isRed = false ;
6+ var selectAll = document . body ;
7+ setInterval ( function ( ) {
8+ if ( ! isRed ) {
9+ selectAll . style . color = "red" ;
10+ isRed = true ;
11+ } else {
12+ selectAll . style . color = "black" ;
13+ isRed = false ;
14+ }
15+ } , 100 ) ;
16+ }
17+ </ script >
You can’t perform that action at this time.
0 commit comments