Skip to content

Commit 796ca2d

Browse files
committed
Automatic commit Sat 22 Jun 2019 11:19:40 PM EEST
1 parent 215182b commit 796ca2d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

enum/htbscan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def enum(ip, ports, max_rate, outfile=None):
2828
output = run_command(cmd)
2929
if outfile:
3030
for line in output.splitlines():
31-
if "rate" not in line: # Don't write rate lines
31+
if "rate:" not in line: # Don't write 'rate:' lines
3232
outfile.write(line + "\n")
3333
outfile.flush()
3434

mssql/mssql_shell.py

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

0 commit comments

Comments
 (0)