-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d7f78ff
commit 127340a
Showing
3 changed files
with
157 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Sms-Sender | ||
<hr> | ||
|
||
``` | ||
________ | ||
(( /========\ | ||
__/__________\____________n_ | ||
(( / \_____________] | ||
/ =(*)= \ | ||
|_._._._._._._._._.| ! | ||
(( / __________________ \ =o | ||
| OOOOOOOOOOOOOOOOOOO0 | = | ||
``` | ||
<br> | ||
|
||
This Programm Write by [Mr.nope](https://github.com/mrprogrammer2938) | ||
<br> | ||
|
||
**Installing** | ||
``` | ||
git clone https://github.com/mrprogrammer2938/Sms-Sender | ||
cd Sms-Sender | ||
bash install.sh | ||
python3 smssender.py | ||
``` | ||
|
||
|
||
### [Mr.nope](https://github.com/mrprogrammer2938) Account... | ||
<br> | ||
|
||
[Instagram](https://instagram.com/mr.programmer2938) | ||
|
||
[Pinterest](https://www.pinterest.com/mrprogrammer2938) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/usr/bin/env bash | ||
# This Programm Write by Mr.nope | ||
# SMS Sender v1.3.1 | ||
if [[ "$(id -u)" -ne 0 ]]; | ||
then | ||
echo " | ||
Please, Run This Programm as Root! | ||
" | ||
exit 1 | ||
fi | ||
function main() { | ||
printf '\033]2;Sms-Sender/Installing' | ||
clear | ||
echo "Installing..." | ||
chmod +x smssender.py | ||
sleep 2 | ||
apt install python | ||
apt install python3 | ||
apt install python3-pip | ||
pip3 install --upgrade pip | ||
echo " | ||
Finish...! | ||
Usage: | ||
python3 smssender.py | ||
" | ||
exit 1 | ||
} | ||
main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
#!/usr/bin/python3 | ||
# This Programm Write by Mr.nope | ||
# Sms-Sender v1.3.1 | ||
import os | ||
import time | ||
import sys | ||
import webbrowser | ||
import platform | ||
try: | ||
from colorama import Fore,init | ||
init() | ||
except ImportError: | ||
os.system("pip3 install colorama") | ||
try: | ||
from twilio.rest import Client | ||
except ImportError: | ||
os.system("pip install twilio") | ||
from twilio.rest import Client | ||
system = platform.uname()[0] | ||
Run_Err = "\nPlease, Run This Programm on Linux, Windows or MacOS!\n" | ||
banner = Fore.LIGHTGREEN_EX + """ | ||
________ | ||
(( /========\ | ||
__/__________\____________n_ | ||
(( / \_____________] """ + Fore.RED + " [*] " + Fore.GREEN + "Version: " + Fore.YELLOW + "1.3.1" + Fore.LIGHTGREEN_EX + """ | ||
/ =(*)= \ | ||
|_._._._._._._._._.| ! | ||
(( / __________________ \ =o | ||
| OOOOOOOOOOOOOOOOOOO0 | = \n""" + End | ||
def title(): | ||
if system == 'Linux': | ||
os.system("printf '\033]2;Sms-Sender\a'") | ||
elif system == 'Windows': | ||
os.system("title Sms-Sender") | ||
else: | ||
print(Run_Err) | ||
sys.exit() | ||
def cls(): | ||
if system == 'Linux': | ||
os.system("clear") | ||
elif system == 'Windows': | ||
os.system("cls") | ||
else: | ||
print(Run_Err) | ||
sys.exit() | ||
def main(): | ||
title() | ||
cls() | ||
print(banner) | ||
try1() | ||
def try1(): | ||
try_to_ch_tw = input("\nHave you created an account at supermetrics.com? [y/n] ") | ||
if try_to_ch_tw == 'y': | ||
try4() | ||
elif try_to_ch_tw == 'n': | ||
try3() | ||
else: | ||
try1() | ||
def try3(): | ||
print("\nOpenning supermetrics.com...") | ||
time.sleep(2) | ||
webbrowser.open_new_tab("https://team.supermetrics.com/") | ||
print("\n-----------------\n") | ||
try4() | ||
def try4(): | ||
cls() | ||
print(banner) | ||
number = input("\nEnter your Number: ") | ||
time.sleep(0.25) | ||
target = input("\nEnter Target number: ") | ||
time.sleep(2) | ||
try1() | ||
tocken = input("\nEnter tocken: ") | ||
time.sleep(0.80) | ||
tocken_2 = input("\n2: ") | ||
client = Client(tocken,tocken_2) | ||
time.sleep(0.25) | ||
mess = input("\nEnter Message: ") | ||
time.sleep(0.50) | ||
client.message.create(to=target,from_=number,body=mess) | ||
if __name__ == '__main__': | ||
try: | ||
try: | ||
main() | ||
except KeyboardInterrupt: | ||
print("\nCtrl + C") | ||
print("\nExiting...") | ||
sys.exit() | ||
except EOFError: | ||
print("\nCtrl + D") | ||
print("\nExiting... ;)") | ||
sys.exit() |