├── .gitignore ├── LICENSE.txt ├── README.md ├── scripts.zip └── scripts ├── blinkRed.js ├── catRedirectV2.js ├── disableKeyboard.js ├── goatse.js ├── largeBlur.js ├── move.js ├── rainbowBGV2.js ├── redirect.js ├── reverse.js ├── rickRollMusicV2.js ├── rickRollShort.js ├── rickroll.js ├── rickroll2.js ├── rotate.js ├── smallBlur.js └── textSize.js /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | This program is free software: you can redistribute it and/or modify 2 | it under the terms of the GNU General Public License as published by 3 | the Free Software Foundation, either version 3 of the License, or 4 | (at your option) any later version. 5 | 6 | This program is distributed in the hope that it will be useful, 7 | but WITHOUT ANY WARRANTY; without even the implied warranty of 8 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 9 | GNU General Public License for more details. 10 | 11 | You should have received a copy of the GNU General Public License 12 | along with this program. If not, see . 13 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # dSploit scripts 2 | 3 | Scripts that could be injected in MITM attacks using dSploit for Android. 4 | 5 | ## Scripts 6 | 7 | * redirect.js - Script that will redirect victim to a new page when the first page loads 8 | * rickroll.js - Rick roll's the victim by spamming alert boxes with the whole song 9 | * rickroll2.js - Rick roll's the victim by spamming alert boxes with the whole song, while playing the song in the background 10 | * move.js - Moves the page a few pixels up and then down constantly 11 | * rotate.js - Rotates images in webpage 12 | * reverse.js - Reverses images 13 | * blinkRed.js - Text is blinking red and black 14 | * textSize.js - Increasing and decreasing text size 15 | 16 | ## License 17 | The full license text is included in `LICENSE.txt`. 18 | 19 | ## Contributors 20 | * Iakovos Gurulian 21 | * jkush321 22 | * txt3rob 23 | 24 | ## Notes 25 | 26 | The scripts that have been developed by jkush321 are licensed under the MIT license. They have been taken from this repo: https://github.com/jkush321/dSploitScripts and commited by txt3rob. 27 | -------------------------------------------------------------------------------- /scripts.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts.zip -------------------------------------------------------------------------------- /scripts/blinkRed.js: -------------------------------------------------------------------------------- 1 | // Text is blinking red and black 2 | 3 | 18 | -------------------------------------------------------------------------------- /scripts/catRedirectV2.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/disableKeyboard.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/goatse.js: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /scripts/largeBlur.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/move.js: -------------------------------------------------------------------------------- 1 | // Moves the page a few pixels up and then down constantly 2 | 3 | 11 | -------------------------------------------------------------------------------- /scripts/rainbowBGV2.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/redirect.js: -------------------------------------------------------------------------------- 1 | // Script that will redirect victim to a new page when the first page 2 | // loads 3 | 4 | 13 | -------------------------------------------------------------------------------- /scripts/reverse.js: -------------------------------------------------------------------------------- 1 | // Reverses images 2 | 3 | 4 | 15 | -------------------------------------------------------------------------------- /scripts/rickRollMusicV2.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/rickRollShort.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/rickroll.js: -------------------------------------------------------------------------------- 1 | // Rick roll's the victim by spamming alert boxes with the whole song 2 | 3 | 67 | -------------------------------------------------------------------------------- /scripts/rickroll2.js: -------------------------------------------------------------------------------- 1 | // Rick roll's the victim by spamming alert boxes with the whole song, 2 | // while playing the song in the background 3 | 4 | 83 | -------------------------------------------------------------------------------- /scripts/rotate.js: -------------------------------------------------------------------------------- 1 | // Rotates images in webpage 2 | 3 | 4 | 5 | 20 | -------------------------------------------------------------------------------- /scripts/smallBlur.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/textSize.js: -------------------------------------------------------------------------------- 1 | // Increasing and decreasing text size 2 | 3 | 21 | --------------------------------------------------------------------------------