forked from FILTERING-RUBIKA-RYSON/Filter-Rubika-Ryson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrep.py
More file actions
115 lines (107 loc) · 3.33 KB
/
rep.py
File metadata and controls
115 lines (107 loc) · 3.33 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Connect to the tor first, then set the port and IP, then run the script
# python
import os
# ------- imports ----
# !! colors !!
import time,sys
green="\033[32m"
red ="\033[31m"
blue="\033[36m"
pink="\033[35m"
yellow="\033[93m"
darkblue="\033[34m"
white="\033[00m"
# !! !!
# ---- try ---
try:
import requests
except:
os.system("pip install requests")
try:
from threading import Thread
except:
os.system("pip install threading")
try:
from datetime import datetime
except:
os.system("pip install datetime")
from datetime import datetime
from threading import Thread
from time import sleep
import requests
# ///// the proxy ////
proxy = {"https": "127.0.0.1.8000"}
# /////////
tm = requests.get("https://api.codebazan.ir/time-date/?td=all").text
tim = (datetime.now())
try:
os.system("pkg install tor")
except:
print ()
try:
os.system("clear")
except:
os.system("cls")
sleep(1)
print(F'{blue}')
print('\nF/H\n')
sleep(1)
m = f"""\n\n
{green}_____________________
{darkblue}[power reset account]
{green}—————————————————————
{darkblue}
---------------------
{yellow}⟨⟨ {blue}{tm} {yellow}⟩⟩{darkblue}
---------------------\n
{green}
/////////////////////////////////////////
//////////{blue}anti filter{green}///////////////////
///////////////////////////////////////
/////////{blue}anti report{green}//////////////////
||||||||||||||||||||||||||||||||||||||
//////////////////////////////////////
/////////////////////////////////////
\n
"""
for m in m:
sys.stdout.write(m)
sys.stdout.flush()
time.sleep(0.03)
sleep(1)
print ()
# ---------- rubika ---------
def rubika(phone):
te = (datetime.today())
#rubika api
ruH = {"Host": "messengerg2c4.iranlms.ir","content-length": "96","accept": "application/json, text/plain, */*","user-agent": "Mozilla/5.0 (Linux; Android 9; SM-G950F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.111 Mobile Safari/537.36","content-type": "text/plain","origin": "https://web.rubika.ir","sec-fetch-site": "cross-site","sec-fetch-mode": "cors","sec-fetch-dest": "empty","referer": "https://web.rubika.ir/","accept-encoding": "gzip, deflate, br","accept-language": "fa-IR,fa;q\u003d0.9,en-GB;q\u003d0.8,en;q\u003d0.7,en-US;q\u003d0.6"}
ruD = {"api_version":"3","method":"sendCode","data":{"phone_number":phone.split("+")[1],"send_type":"SMS"}}
try:
ruR = requests.post("https://messengerg2c4.iranlms.ir/", headers=ruH, json=ruD, proxies=proxy)
if "OK" in ruR.text:
sleep(1)
print (f"{pink}[+]{red} |SEND| {blue}elimination filtered-{green}{te}\n")
else:
sleep(1)
print (f"{pink}[!] {red}|SEND| {blue}anti report-{green}{te}{blue}...\n")
except:
sleep(0.9)
print (f"{pink}[!] {red}|SEND| {blue}anti report-{green}{te}{blue}...\n")
def main():
phone = str(input(f"""\n
{red}[ {blue}{tim} {red}]\n\n
{white}
~~~~~~~~~~~~~~~~~~~
|||||||||||||||||||
|||====||★||====|||
|||====||★||====|||
||| {yellow}black mester {white}|||
|||||||||||||||||||
|||||||||||||||||||
|||||||||||||||||||
~~~~~~~~~~~~~~~~~~~
{green}phone number reported on rubika for elimination report {red}[+98XXXXX] {darkblue}⟩⟩⟩ {blue}"""))
while True:
Thread(target=rubika, args=[phone]).start()
if __name__ == "__main__":
main()