Skip to content

Commit c7a57e6

Browse files
committed
Update installer
1 parent 457b0db commit c7a57e6

File tree

5 files changed

+31
-5
lines changed

5 files changed

+31
-5
lines changed

bin/installer/build-docs.bat

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ del *.html
55

66
:: i know this sucks but it works
77
cmd /c npx marked --gfm -i CHANGELOG.md -o CHANGELOG.html
8+
cmd /c npx marked --gfm -i README.zh_CN.md -o README.zh_CN.html
89
cmd /c npx marked --gfm -i README.ES.md -o README.ES.html
910
cmd /c npx marked --gfm -i README.md -o README.html
1011
cmd /c npx marked --gfm -i TOOLS.md -o TOOLS.html

bin/installer/build.txt

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
Microsoft Windows [Version 10.0.19043.1645]
1+
Microsoft Windows [Version 10.0.19043.1826]
22
(c) Microsoft Corporation. All rights reserved.
33

44
D:\code\indetectables\toolkit\bin\installer>python generate-sections.py -f D:\code\indetectables\toolkit\toolkit
5+
[+] Process: 4n4lDetector
6+
[*] Adding: "4N4LDetector.exe"
7+
[!] force link creation
58
[+] Process: CAPA
69
[*] Adding: "capa.exe"
710
[!] force link creation
@@ -11,6 +14,9 @@ D:\code\indetectables\toolkit\bin\installer>python generate-sections.py -f D:\co
1114
[!!!] Find multiple exes. Grabbing the first!
1215
[*] Adding: "die.exe"
1316
[!] force link creation
17+
[+] Process: ExeExplorer
18+
[!!!] Find multiple exes. Grabbing the first!
19+
[*] Adding: "EXE.exe"
1420
[+] Process: ExeinfoPe
1521
[*] Adding: "exeinfope.exe"
1622
[!] force link creation
@@ -67,8 +73,9 @@ D:\code\indetectables\toolkit\bin\installer>python generate-sections.py -f D:\co
6773
[*] Adding: "jd-gui.exe"
6874
[!] force link creation
6975
[+] Process: [JAVA] Recaf
70-
[*] Adding: "recaf-J8-jar-with-dependencies.jar"
76+
[*] Adding jar: "recaf-J8-jar-with-dependencies.jar"
7177
[+] Process: [PYTHON] PyInstxtractor
78+
[*] Adding py: "pyinstxtractor.py"
7279
[+] Process: [VB] VB Decompiler
7380
[*] Adding: "VB Decompiler.exe"
7481
[!] force link creation
@@ -229,10 +236,13 @@ D:\code\indetectables\toolkit\bin\installer>python generate-sections.py -f D:\co
229236
[!] x64 exe
230237
[!] CLI exe
231238
[+] Process: Threadtear
232-
[*] Adding: "threadtear-gui-all.jar"
239+
[*] Adding jar: "threadtear-gui-all.jar"
233240
[+] Process: VirusTotalUploader
234241
[*] Adding: "uploader.exe"
235242
[!] force link creation
243+
[+] Process: x64dbgPluginManager
244+
[!!!] Find multiple exes. Grabbing the first!
245+
[*] Adding: "x64plgmnr.exe"
236246
[+] Process: XOpCodeCalc
237247
[*] Adding: "xocalc.exe"
238248
[!] force link creation
@@ -301,3 +311,5 @@ D:\code\indetectables\toolkit\bin\installer>python generate-sections.py -f D:\co
301311
[!] force link creation
302312

303313
[+] Generate cli register code
314+
315+
D:\code\indetectables\toolkit\bin\installer>

bin/installer/sections/other.iss

+13
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,19 @@ Name: "{#MyAppBinsFolder}\sendto\sendto\Other\VirusTotalUploader"; Filename: "{#
235235

236236

237237

238+
; x64dbgPluginManager
239+
[Components]
240+
Name: "other\x64dbgpluginmanager"; Description: "x64dbgPluginManager"; Types: full;
241+
242+
[Files]
243+
Source: "{#MySrcDir}\toolkit\Other\x64dbgPluginManager\*"; DestDir: "{#MyAppToolsFolder}\Other\x64dbgPluginManager"; Components: "other\x64dbgpluginmanager"; Flags: ignoreversion recursesubdirs createallsubdirs;
244+
245+
[Icons]
246+
Name: "{group}\{#MyAppName}\x64dbgPluginManager"; Filename: "{#MyAppToolsFolder}\Other\x64dbgPluginManager\x64plgmnr.exe"; WorkingDir: "{#MyAppToolsFolder}\Other\x64dbgPluginManager"; Components: "other\x64dbgpluginmanager"; Check: not Is64BitInstallMode;
247+
Name: "{#MyAppBinsFolder}\sendto\sendto\Other\x64dbgPluginManager"; Filename: "{#MyAppToolsFolder}\Other\x64dbgPluginManager\x64plgmnr.exe"; WorkingDir: "{#MyAppToolsFolder}\Other\x64dbgPluginManager"; Components: "other\x64dbgpluginmanager"; Check: not Is64BitInstallMode;
248+
249+
250+
238251
; XOpCodeCalc
239252
[Components]
240253
Name: "other\xopcodecalc"; Description: "XOpCodeCalc"; Types: full;

bin/installer/setup.iss

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "Indetectables Toolkit"
5-
#define MyAppVersion "2022.5"
5+
#define MyAppVersion "2022.7"
66
#define MyAppPublisher "Indetectables"
77
#define MyAppURL "https://www.indetectables.net/"
88
#define MyAppToolsFolder "{app}\toolkit"

extras/ghidra-setup.iss

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
#define MyAppName "Indetectables Toolkit Extras Ghidra"
55
#define MyAppNameOriginal "Indetectables Toolkit"
6-
#define MyAppVersion "2022.5.1"
6+
#define MyAppVersion "2022.7"
77
#define MyAppPublisher "Indetectables"
88
#define MyAppURL "https://www.indetectables.net/"
99
#define MyAppToolsFolder "{app}\toolkit"

0 commit comments

Comments
 (0)