-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDLL-Injector.py
More file actions
40 lines (34 loc) · 1.39 KB
/
DLL-Injector.py
File metadata and controls
40 lines (34 loc) · 1.39 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
import os
import requests
from time import sleep
def download_file(url: str, filename: str):
with open(filename, 'wb') as f:
with requests.get(url, stream=True) as r:
r.raise_for_status()
for chunk in r.iter_content(chunk_size=8192):
f.write(chunk)
os.system('title DLL Injector')
def main():
print('''
____ __ __ ____ _ __
/ __ \/ / / / / _/___ (_)__ _____/ /_____ _____
/ / / / / / / / // __ \ / / _ \/ ___/ __/ __ \/ ___/ v1.1
/ /_/ / /___/ /___ _/ // / / / / / __/ /__/ /_/ /_/ / /
/_____/_____/_____/ /___/_/ /_/_/ /\___/\___/\__/\____/_/
/___/
DLL Injector (SigmaLoad1488) in Python (x64)
Full Undetected Injector.
''')
print('\n\n')
dll = input("[#] Введите название DLL(test.dll): ")
proc = input("[#] Введите название процесса(notepad.exe): ")
download_file("https://github.com/adamhlt/DLL-Injector/releases/download/DLL-Injector/Inject-x64.exe", "helper.exe")
sleep(0.5)
os.system(f'helper.exe {dll} {proc}')
sleep(0.5)
os.system('del helper.exe')
print('\nПодождите 3 секунды...')
sleep(3)
while True:
os.system('cls')
main()