Skip to content

Commit f5dd41a

Browse files
committed
➕ Add Python
1 parent 5b7a923 commit f5dd41a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Good Example of a DLL Injector
2+
# Developed by -> numaru / https://github.com/numaru
3+
4+
import sys
5+
6+
from injector import Injector
7+
8+
9+
def main():
10+
path_exe = str(sys.argv[1])
11+
path_dll = str(sys.argv[2])
12+
13+
injector = Injector()
14+
pid = injector.create_process(path_exe)
15+
injector.load_from_pid(pid)
16+
injector.inject_dll(path_dll)
17+
injector.unload()
18+
19+
if __name__ == "__main__":
20+
main()

0 commit comments

Comments
 (0)