4
0
mirror of https://github.com/QuasarApp/pe-parse.git synced 2025-05-09 18:09:33 +00:00

Remove debugging.

This commit is contained in:
Wesley Shields 2013-12-24 13:34:04 -05:00
parent a6af4cbd18
commit 4a574e0e07

@ -74,15 +74,15 @@ print "Resources: (%i)" % len(resources)
for resource in resources:
print "[+] MD5: (%i) %s" % (len(resource.data), md5(resource.data).hexdigest())
if resource.type_str:
print "\tType string (%i): %s" % (len(resource.type_str), resource.type_str)
print "\tType string: %s" % resource.type_str
else:
print "\tType: %s (%s)" % (hex(resource.type), resource.type_as_str())
if resource.name_str:
print "\tName string (%i): %s" % (len(resource.name_str), resource.name_str)
print "\tName string: %s" % resource.name_str
else:
print "\tName: %s" % hex(resource.name)
if resource.lang_str:
print "\tLang string (%i): %s" % (len(resource.name_str), resource.lang_str)
print "\tLang string: %s" % resource.lang_str
else:
print "\tLang: %s" % hex(resource.lang)
print "\tCodepage: %s" % hex(resource.codepage)