Skip to content

Commit

Permalink
README.md is updated and mysmb.py is updated for Python3 and Python2 (w…
Browse files Browse the repository at this point in the history
  • Loading branch information
aysebilgegunduz authored and ljrk0 committed Mar 2, 2023
1 parent b4e4063 commit 4439c7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This allows for this version of the MS17-010 exploit to be a bit more flexible,

Included is also an enternal blue checker script that allows you to test if your target is potentially vulnerable to MS17-010

run `python eternalblue_checker.py <TARGET-IP>`
run `python eternal_checker.py <TARGET-IP>`


## TODO:
Expand Down
2 changes: 1 addition & 1 deletion mysmb.py
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ def run(self):
logging.info('Creating tmp directory')
try:
os.mkdir(SMBSERVER_DIR)
except Exception, e:
except Exception as e:
logging.critical(str(e))
pass
logging.info('Setting up SMB Server')
Expand Down

0 comments on commit 4439c7c

Please sign in to comment.