├── LICENSE ├── README.md ├── scripts ├── catRedirectV2.js ├── disableKeyboard.js ├── largeBlur.js ├── rainbowBGV2.js ├── rickRoll.js ├── rickRollMusicV2.js ├── rickRollShort.js ├── smallBlur.js └── textSize.js └── template.js /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 InfaCraft 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | dSploitScripts Repo 2 | ============== 3 | A repository with scripts for the [dSploitScripts][dSploitScripts] Android app. For use with [dSploit][dSploit] script injection. 4 | 5 | --------------------------------- 6 | 7 | Download 8 | ============== 9 | To download the scripts, download the [dSploitScripts app from Google Play][dSploitScriptsGPLAY], and install from there. 10 | 11 | ---------------------------------- 12 | 13 | License 14 | ============== 15 | All content is licensed under the [MIT License][LICENSE]. 16 | You can make any changes but you must provide attribution. 17 | 18 | NOTE: The [dSploit][dSploit] app and [dSploitScripts][dSploitScripts] app are licensed under GPL, not MIT. 19 | 20 | ---------------------------------- 21 | 22 | Submitting A Script 23 | ============== 24 | Just create a pull request and we will handle the rest! 25 | 26 | Alternatively, you can send an email with your script to [dsploitscripts@infacraft.net][dssemail] 27 | 28 | Please refer to the **template.js** file which will show you how to layout your script. 29 | 30 | Important Note: All scripts must start with 31 | 32 | -------------------------------------------------------------------------------- /scripts/disableKeyboard.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/largeBlur.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/rainbowBGV2.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/rickRoll.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/rickRollMusicV2.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/rickRollShort.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/smallBlur.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/textSize.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template.js: -------------------------------------------------------------------------------- 1 | 8 | 9 | //---------------------------// 10 | // IMPORTANT NOTES // 11 | //---------------------------// 12 | // All files must begin // 13 | // with or else // 15 | // problems may arise. // 16 | //---------------------------// 17 | // Avoid using ' (single // 18 | // quotes). They will // 19 | // cause issues as well // 20 | //---------------------------// 21 | // Once you submit a script // 22 | // it will be permanently // 23 | // cached and uneditable, // 24 | // so include a version in // 25 | // the name of the file. // 26 | // Ex: myScriptV1.js // 27 | //---------------------------// 28 | // You can either submit // 29 | // a pull request, or email // 30 | // your script to // 31 | //dsploitscripts@infacraft.net/ 32 | //---------------------------// 33 | //---------------------------// 34 | //---------------------------// --------------------------------------------------------------------------------