mirror of
https://github.com/horsicq/Detect-It-Easy.git
synced 2026-06-24 01:54:08 +00:00
CX_Freeze fix + todo update
This commit is contained in:
parent
db6feb6a5f
commit
0d01540084
2 changed files with 5 additions and 4 deletions
|
|
@ -10,10 +10,10 @@ function detect(bShowType, bShowVersion, bShowOptions) {
|
|||
|
||||
if (rdataSection) {
|
||||
|
||||
bDetected = (PE.isStringPresent(rdataSection.FileOffset, rdataSection.FileSize, "Unable to change DLL search path!") &&
|
||||
bDetected = (PE.findString(rdataSection.FileOffset, rdataSection.FileSize, "Unable to change DLL search path!") !== -1 &&
|
||||
PE.isSignaturePresent(rdataSection.FileOffset, rdataSection.FileSize, "25006C0073005C006C00690062005C006C006900620072006100720079002E007A00690070003B0025006C0073005C006C0069006200") &&
|
||||
PE.isStringPresent(rdataSection.FileOffset, rdataSection.FileSize, "Out of memory creating sys.path!") &&
|
||||
PE.isStringPresent(rdataSection.FileOffset, rdataSection.FileSize, "Unable to calculate directory of executable!"));
|
||||
PE.findString(rdataSection.FileOffset, rdataSection.FileSize, "Out of memory creating sys.path!") !== -1 &&
|
||||
PE.findString(rdataSection.FileOffset, rdataSection.FileSize, "Unable to calculate directory of executable!") !== -1);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
3
todo.txt
3
todo.txt
|
|
@ -1,3 +1,4 @@
|
|||
[PE]
|
||||
add signature:
|
||||
1) https://github.com/phra/PEzor
|
||||
1) https://github.com/phra/PEzor
|
||||
2) https://github.com/nexe/nexe
|
||||
Loading…
Add table
Add a link
Reference in a new issue