blob: 02e8576f8f3d753143f56aa0551f77d2db914f6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/env python2.7
import sys
import struct
import os
def main(argv):
buf = bytearray()
with open(argv[0], "rb") as fin:
for line in fin:
buf += line
buf[0xF8:0x100] = '\x00' * (0x100-0xF8) # export table
buf[0x100:0x108] = '\x00' * (0x108-0x100) # import table
with open(argv[0], "wb") as fout:
fout.write(str(buf))
if __name__ == "__main__":
if len(sys.argv) < 2:
print os.path.basename(sys.argv[0]) + ' usage: ' + sys.argv[0] + ' [PE-FILE]'
sys.exit(1)
print os.path.basename(sys.argv[0]) + ': NULL\'ing Import/Export Data Directory Entries ..'
main(sys.argv[1:])
sys.exit(0)
|