├── README.md ├── main.py ├── requirements.txt ├── smsbombv5.png └── update.py /README.md: -------------------------------------------------------------------------------- 1 |

Sms-Bombv5.0
2 |

3 | Paris 4 | * `📱 💀`
5 | * `A Sms-Bomber for termux & Linux ` 6 | 7 | ## Disclaimer 8 | *This tool is for educational purposes only !* 9 | _Don't use this to take revenge_
10 | *I will not be responsible for any misuse* 11 | 12 | ## About 13 | * `Unlimited Bombing only Indian Number` 14 | * `Cross Platform` 15 | * `Supports newest Android also` 16 | * `No balance will be deducted` 17 | * `Working Apis` 18 | * `No missing Api issues,` 19 | * `Working with all Operators/Carriers` 20 | 21 | ## Tested On : 22 | 26 | 27 | ## Termux Issue: 28 | * `Termux App is no longer recieving updates on playstore` 29 | * `due to recently introduced Google Play policy ` 30 |
31 | 32 | DON'T WORRY 33 | * `We have a solution for that !` 34 |
35 | 36 | 37 | You can download the latest termux app and install it 38 | 39 | From here Link 40 | 41 | ## Usage 42 | 43 | 44 | 45 | #### For Termux 46 | 47 | Update the packages 48 | ```bash 49 | pkg up -y 50 | ``` 51 | Install some dependencies 52 | ```bash 53 | pkg install git wget python -y 54 | ``` 55 | Clone the repository 56 | ```bash 57 | git clone https://github.com/samay825/Sms-Bomb 58 | ``` 59 | Go to the Sms-Bomb directory 60 | ```bash 61 | cd Sms-Bomb 62 | ``` 63 | Now Install the Requirements 64 | ```bash 65 | pip install -r requirements.txt 66 | ``` 67 | Run the script 68 | ```bash 69 | python3 main.py 70 | ``` 71 | 72 | 73 | ## Version 74 | * `v5.0 Sms-Bomb` 75 | 76 | ## Features 77 | * `B#omb the number unlimited,Custom-sms` 78 | 79 | * `Free version speed is in goodflow` 80 | 81 | ## Partners 82 | * `https://github.com/anubhavanonymous/XLR8_BOMBER` 83 | * `https://github.com/sw4pn33` 84 | 85 | ## Note 86 | * `This Sms-Bomb is mainly to prank Friends` 87 | 88 | ## Licence 89 | Apache 2.0 © Samay825 90 | 91 | 92 | ## Contact Us 93 | * `If you have any feedback or queries` 94 | * `Instagram: @sincryptzork` 95 | * `Telegram: @sincryptzork` 96 | 97 | ## Telegram Channel 98 | 99 | * `All updates of Team Sincryption will be posted here !` 100 | * `Link : https://t.me/TeamSincryption` 101 | 102 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | aiohttp 3 | pycryptodome 4 | pwinput 5 | tqdm 6 | wget 7 | progress 8 | -------------------------------------------------------------------------------- /smsbombv5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samay825/Sms-Bomb/c794856428b2486ed2fd87fc390b65d054304558/smsbombv5.png -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- 1 | # colors 2 | r = "\033[1;31m" 3 | g = "\033[1;32m" 4 | y = "\033[1;33m" 5 | b = "\033[1;34m" 6 | d = "\033[2;37m" 7 | R = "\033[1;41m" 8 | Y = "\033[1;43m" 9 | B = "\033[1;44m" 10 | w = "\033[1;37m" 11 | g = "\033[0;90m" 12 | y = r 13 | 14 | #----------------modules 15 | from os import system,name 16 | from time import sleep 17 | 18 | 19 | # -----clear 20 | system('cls' if name=='nt' else 'clear') 21 | 22 | #-------update 23 | 24 | system('rm -rf main.py') 25 | # system('rm -rf main.cpython-311.so') 26 | sleep(0.1) 27 | 28 | system('wget https://raw.githubusercontent.com/samay825/Sms-Bomb/main/main.py') 29 | # system('wget https://github.com/samay825/Sms-Bomb/raw/main/main.cpython-311.so') 30 | print(r+"└─ "+w+"\033[1;37m>> Script Updated <<") 31 | sleep(0.5) 32 | 33 | # ---------return to main.py file 34 | system('python main.py' if name=='nt' else 'python3 main.py') 35 | 36 | --------------------------------------------------------------------------------