![]() |
|
|
|
#1
|
|||
|
|||
|
How can we know a foxpro exe braned by which software ?
Hi,
Is there any way to find an exe branded by which software (like Refox, .....). Thank you, Ravi |
|
#2
|
||||
|
||||
|
KONxiSE packer for VFP files is recognised by RDG packer detector.
Armadillo packer is recognised by PEID. Refox branded files are recognised (level I, level I+) if you are trying to load the exe or app file into refox. Refox branded files level II or III are not recognised by any known packer detector. |
| The Following User Gave Reputation+1 to giv For This Useful Post: | ||
Molasar (04-10-2011) | ||
|
#3
|
|||
|
|||
|
rgd packer detector
|
|
#4
|
|||
|
|||
|
Quote:
Code:
if ".idata" $ left(filetostr("MyFile.exe"),0x400)
? "Refox"
endif
if ".xdata" $ left(filetostr("MyFile.exe"),0x400)
? "Defox"
endif
|
| The Following User Says Thank You to Leonid For This Useful Post: | ||
vilciucostel (10-21-2022) | ||
![]() |
|
|