├── .gitignore ├── LICENSE ├── README.md └── Spammer-Grab.zip /.gitignore: -------------------------------------------------------------------------------- 1 | spammer_class.py 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 P4kL0nc4t 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 | # Spammer-Grab 2 | Spams GAC (Grab Activation Code) SMS to a phone number repeatedly per 60 second. "Spammer" uses Grab passenger API to make the GAC sms sent. "Spammer" is tested under Python 2.7 3 | 4 | # Installation ( For Debian and Ubuntu ) 5 | 1. `sudo apt install git` - To install git 6 | 2. `git clone https://github.com/Noxturnix/Spammer-Grab` - To clone a FIXED version 7 | 3. `cd Spammer-Grab` - To enter the directory of this git 8 | 4. `./install.sh` - To install all required packages 9 | 10 | # How to use? 11 | Just type `./start.sh` 12 | 13 | # Me 14 | E-Mail: 15 | p4kl0nc4t@obsidiancyberteam.id 16 | admin@noxt.cf 17 | Do not hesitate to contact us :) 18 | -------------------------------------------------------------------------------- /Spammer-Grab.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/profionaldhim/Spammer-Grab/74e8773e532d75e1217c086689225b4b1b41b344/Spammer-Grab.zip --------------------------------------------------------------------------------