-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstart.py
99 lines (85 loc) · 3.47 KB
/
start.py
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import requests
import json
import os
import time
import colorama
from colorama import Fore
os.system("clear")
print(f'''
{Fore.CYAN}
_ _ _
| | | | (_)
__ _ __| |_ _____ _ __| |_ _ ___ ___ _ __
/ _` |/ _` \ \ / / _ \ '__| __| / __|/ _ \ '__|
| (_| | (_| |\ V / __/ | | |_| \__ \ __/ |
\__,_|\__,_| \_/ \___|_| \__|_|___/\___|_|
{Fore.LIGHTRED_EX}[1]{Fore.LIGHTYELLOW_EX} ENGLISH
{Fore.LIGHTRED_EX}[2]{Fore.LIGHTYELLOW_EX} ITALIAN
{Fore.LIGHTRED_EX}[3]{Fore.LIGHTYELLOW_EX} RUSSIAN
{Fore.LIGHTRED_EX}[4]{Fore.LIGHTYELLOW_EX} GERMAN
{Fore.LIGHTRED_EX}[5]{Fore.LIGHTYELLOW_EX} PORTUGUESE
{Fore.LIGHTRED_EX}[6]{Fore.LIGHTYELLOW_EX} JAPANESE
''')
choice = input(Fore.GREEN+"option => ")
#ENGLISH
if choice == "1":
message = input("Message => ")
url = "https://front35.omegle.com/start?caps=recaptcha2,t&firstevents=1&spid=&randid=PL83WE8G&topics=%5B%22friends%22%5D&lang=en"
#ITALIAN
if choice == "2":
message = input("Message => ")
url = "https://front35.omegle.com/start?caps=recaptcha2,t&firstevents=1&spid=&randid=PL83WE8G&lang=it"
#RUSSIAN
if choice == "3":
message = input("Message => ")
url = "https://front35.omegle.com/start?caps=recaptcha2,t&firstevents=1&spid=&randid=PL83WE8G&lang=ru"
#GERMAN
if choice == "4":
message = input("Message => ")
url = "https://front35.omegle.com/start?caps=recaptcha2,t&firstevents=1&spid=&randid=PL83WE8G&lang=de"
#PORTUGUESE
if choice == "5":
message = input("Message => ")
url = "https://front35.omegle.com/start?caps=recaptcha2,t&firstevents=1&spid=&randid=PL83WE8G&lang=pt"
#JAPANESE
if choice == "6":
message = input("Message => ")
url = "https://front35.omegle.com/start?caps=recaptcha2,t&firstevents=1&spid=&randid=PL83WE8G&lang=ja"
i = 0
while True:
r = requests.post(url)
response = r.json()
print(f'''{Fore.LIGHTRED_EX}[!] - {Fore.CYAN} WAIT! Connecting to stranger...''')
time.sleep(2)
print(f'''{Fore.LIGHTRED_EX}[!] - {Fore.LIGHTGREEN_EX} Connected!''')
def omegle(shard):
global i
d = {'msg': message, 'id': shard}
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36'}
proxies = {
"http": 'http://144.202.113.237:26381',
"http": 'http://192.252.215.5:16137',
"http": 'http://65.21.73.217:10003'
}
rr = requests.post("https://front44.omegle.com/send", data=d, headers=headers, proxies=proxies)
if rr.status_code == 200:
print(Fore.WHITE +"-----------------------------------")
print(f"YOU: {Fore.CYAN}{message}{Fore.BLUE}")
print(Fore.WHITE +"-----------------------------------")
else:
print(f"failed to send {message}")
dataa = {'id': shard}
disconnecting = requests.post("https://front8.omegle.com/disconnect", data=dataa)
if disconnecting.status_code == 200:
print(Fore.LIGHTRED_EX+"disconnected")
time.sleep(2)
print(Fore.WHITE +"-----------------------------------")
else:
print("failed to disconnect")
def id():
shard = response["clientID"]
if shard.startswith("central"):
dataa = {'id': shard}
rrr = requests.post("https://front8.omegle.com/events", data=dataa)
omegle(shard)
id()