├── .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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/README.md -------------------------------------------------------------------------------- /scripts.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts.zip -------------------------------------------------------------------------------- /scripts/blinkRed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts/blinkRed.js -------------------------------------------------------------------------------- /scripts/catRedirectV2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts/catRedirectV2.js -------------------------------------------------------------------------------- /scripts/disableKeyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts/disableKeyboard.js -------------------------------------------------------------------------------- /scripts/goatse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts/goatse.js -------------------------------------------------------------------------------- /scripts/largeBlur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts/largeBlur.js -------------------------------------------------------------------------------- /scripts/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts/move.js -------------------------------------------------------------------------------- /scripts/rainbowBGV2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts/rainbowBGV2.js -------------------------------------------------------------------------------- /scripts/redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts/redirect.js -------------------------------------------------------------------------------- /scripts/reverse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts/reverse.js -------------------------------------------------------------------------------- /scripts/rickRollMusicV2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts/rickRollMusicV2.js -------------------------------------------------------------------------------- /scripts/rickRollShort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts/rickRollShort.js -------------------------------------------------------------------------------- /scripts/rickroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts/rickroll.js -------------------------------------------------------------------------------- /scripts/rickroll2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts/rickroll2.js -------------------------------------------------------------------------------- /scripts/rotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts/rotate.js -------------------------------------------------------------------------------- /scripts/smallBlur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts/smallBlur.js -------------------------------------------------------------------------------- /scripts/textSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jackgu1988/dSploit-scripts/HEAD/scripts/textSize.js --------------------------------------------------------------------------------