CX_Freeze fix + todo update

This commit is contained in:
DosX 2024-06-14 10:22:28 +03:00
commit 0d01540084
2 changed files with 5 additions and 4 deletions

View file

@ -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);
}

View file

@ -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