Skip to content

Commit

Permalink
Automatic commit Sat 22 Jun 2019 11:19:40 PM EEST
Browse files Browse the repository at this point in the history
  • Loading branch information
Alamot committed Jun 22, 2019
1 parent 215182b commit 796ca2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion enum/htbscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def enum(ip, ports, max_rate, outfile=None):
output = run_command(cmd)
if outfile:
for line in output.splitlines():
if "rate" not in line: # Don't write rate lines
if "rate:" not in line: # Don't write 'rate:' lines
outfile.write(line + "\n")
outfile.flush()

Expand Down
2 changes: 1 addition & 1 deletion mssql/mssql_shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from __future__ import print_function
# Author: Alamot
# Use pymssql >= 1.0.3 (otherwise it doesn't work correctly)
# To upload a file type: UPLOAD local_path remote_path
# To upload a file, type: UPLOAD local_path remote_path
# e.g. UPLOAD myfile.txt C:\temp\myfile.txt
# If you omit the remote_path it uploads the file on the current working folder.
# Be aware that pymssql has some serious memory leak issues when the connection fails (see: https://github.com/pymssql/pymssql/issues/512).
Expand Down

0 comments on commit 796ca2d

Please sign in to comment.