-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update mssqlclient.py #1381
Update mssqlclient.py #1381
Conversation
Add functionality to upload files
Hey @kiriknik, sorry coming so late to this one Thanks for this PR! This branch should be rebased with latest changes as we've modified this example to make it callable from ntlmrelayx as an interactive shell; so some classes have been moved to other files (now it is in impacket/examples/mssqlshell.py) Despite that, I've been checking it and have a few comments:
Thank you! |
Implemented requested changes.
Removed addition of |
impacket/examples/mssqlshell.py
Outdated
else: | ||
print("[-] ERROR! MD5 hashes do NOT match!") | ||
print("[+] Uploaded file MD5: %s" % md5sum_uploaded) | ||
except: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
inform uknown exception conditions
avoid except: clauses
Showing unhandled exceptions in
|
Thanks for the PR!! |
Add functionality to upload files