Skip to content

Commit

Permalink
Release 2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
p0dalirius committed May 25, 2022
1 parent ccbde36 commit 9bbfed5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
Binary file modified .github/banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified .github/example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion FindUncommonShares.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def parse_args():

secret = parser.add_argument_group()
cred = secret.add_mutually_exclusive_group()
cred.add_argument("--no-pass", action="store_true", help="Don't ask for password (useful for -k)")
cred.add_argument("--no-pass", default=False, action="store_true", help="Don't ask for password (useful for -k)")
cred.add_argument("-p", "--password", dest="auth_password", metavar="PASSWORD", action="store", help="Password to authenticate with")
cred.add_argument("-H", "--hashes", dest="auth_hashes", action="store", metavar="[LMHASH:]NTHASH", help='NT/LM hashes, format is LMhash:NThash')
cred.add_argument("--aes-key", dest="auth_key", action="store", metavar="hex key", help='AES key to use for Kerberos Authentication (128 or 256 bits)')
Expand All @@ -124,6 +124,10 @@ def parse_args():

args = parser.parse_args()

if args.auth_password is None and args.no_pass == False:
from getpass import getpass
args.auth_password = getpass("Password:")

return args


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ authentication & connection:

```
$ ./FindUncommonShares.py -u 'Administrator' -d 'LAB.local' -p 'Admin123!' --dc-ip 192.168.2.1
FindUncommonShares v2.0 - by @podalirius_
FindUncommonShares v2.1 - by @podalirius_
[>] Extracting all computers ...
[+] Found 2 computers.
Expand Down
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
impacket
nslookup
xlsxwriter

0 comments on commit 9bbfed5

Please sign in to comment.