added ninjhax entry code
This commit is contained in:
BIN
ninjhax/data/payload/tools/Launcher.dat
Normal file
BIN
ninjhax/data/payload/tools/Launcher.dat
Normal file
Binary file not shown.
BIN
ninjhax/data/payload/tools/LauncherTemplate.dat
Normal file
BIN
ninjhax/data/payload/tools/LauncherTemplate.dat
Normal file
Binary file not shown.
BIN
ninjhax/data/payload/tools/fill_with_zero.exe
Normal file
BIN
ninjhax/data/payload/tools/fill_with_zero.exe
Normal file
Binary file not shown.
16
ninjhax/data/payload/tools/insert.py
Normal file
16
ninjhax/data/payload/tools/insert.py
Normal file
@@ -0,0 +1,16 @@
|
||||
import sys;
|
||||
import os
|
||||
|
||||
f1 = 0
|
||||
f2 = 0
|
||||
f3 = 0
|
||||
|
||||
f1size = 0
|
||||
|
||||
with open(sys.argv[1], "rb+") as file1:
|
||||
with open(sys.argv[2], "rb") as file2:
|
||||
f1 = file1.read()
|
||||
f2 = file2.read()
|
||||
file1.seek(int(sys.argv[3], 16), os.SEEK_SET)
|
||||
file1.write(f2);
|
||||
|
||||
Reference in New Issue
Block a user