File size: 1,719 Bytes
519c700 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
import requests
import time
def ngl():
print("==========================")
print(" Tool By https://t.me/sharesrctool")
print("==========================")
username = input("Nhập Username (không có @): ")
message = input("Nhập Tin Nhắn Spam: ")
count = 25
print("==========================")
print("Đang Tiến Hành Spam...")
value = 0
failed_attempts = 0
while value < count:
headers = {
'Host': 'ngl.link',
'accept': '*/*',
'content-type': 'application/x-www-form-urlencoded; charset=UTF-8',
'x-requested-with': 'XMLHttpRequest',
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36',
'origin': 'https://ngl.link',
'referer': f'https://ngl.link/{username}',
}
data = {
'username': username,
'question': message,
'deviceId': '0',
'gameSlug': '',
'referrer': '',
}
try:
response = requests.post('https://ngl.link/api/submit', headers=headers, data=data, timeout=10)
if response.status_code == 200:
print(f"✅ Đã gửi thành công ({value + 1}/{count})")
value += 1
failed_attempts = 0
else:
failed_attempts += 1
except requests.exceptions.RequestException as e:
failed_attempts += 1
if failed_attempts >= 5:
time.sleep(60)
failed_attempts = 0
time.sleep(2)
print("🎉 Hoàn thành gửi tin nhắn!")
ngl()
|