Skip to content

Commit 5b6b6fd

Browse files
author
bwall
committed
Added file path to output
1 parent 28eee6d commit 5b6b6fd

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ optional arguments:
2020
-v, --version show program's version number and exit
2121
-r, --recursive Scan paths recursively
2222
23-
getnetguids v1.2.0 by Brian Wallace (@botnet_hunter)
23+
getnetguids v1.3.0 by Brian Wallace (@botnet_hunter)
2424
2525
```

getnetguids.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def get_assembly_guids(assembly_path):
168168
if __name__ == "__main__":
169169
from argparse import ArgumentParser
170170

171-
version = "1.2.0"
171+
version = "1.3.0"
172172

173173
parser = ArgumentParser(
174174
prog=__file__,
@@ -222,4 +222,4 @@ def scan_paths(paths, recursive):
222222
with open(file_path, 'rb') as f:
223223
s = hashlib.sha256(f.read()).hexdigest()
224224

225-
print "{0}\t{1}\t{2}".format(typelib_id, mvid, s)
225+
print "{0}\t{1}\t{2}\t{3}".format(typelib_id, mvid, s, file_path)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from distutils.core import setup
44

55
setup(name='getnetguids',
6-
version='1.2.0',
6+
version='1.3.0',
77
description='Extracts Typelib IDs and MVIDs from .NET assemblies.',
88
author='Brian Wallace',
99
url='https://github.com/bwall/getnetguids',

0 commit comments

Comments
 (0)