Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ http://blog.cylance.com/you-me-and-.net-guids

```
$ getnetguids -h
usage: getnetguids [-h] [-v] [-r] [path [path ...]]
usage: getnetguids [-h] [-v] [-r] [-c] [path [path ...]]

Extracts Typelib IDs and MVIDs from .NET assemblies.

Expand All @@ -19,7 +19,8 @@ optional arguments:
-h, --help show this help message and exit
-v, --version show program's version number and exit
-r, --recursive Scan paths recursively
-c, --csv Save to CSV

getnetguids v1.4.0 by Brian Wallace (@botnet_hunter)
getnetguids v1.4.2 by Brian Wallace (@botnet_hunter)

```
```
2 changes: 1 addition & 1 deletion getnetguids.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def get_assembly_guids(assembly_path):
if __name__ == "__main__":
from argparse import ArgumentParser

version = "1.4.1"
version = "1.4.2"

parser = ArgumentParser(
prog=__file__,
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
from distutils.core import setup

setup(name='getnetguids',
version='1.4.0',
version='1.4.2',
description='Extracts Typelib IDs and MVIDs from .NET assemblies.',
author='Brian Wallace',
url='https://github.com/bwall/getnetguids',
py_modules=['getnetguids'],
scripts=['getnetguids.py'],
install_requires=['pefile', 'argparse'],
)
)