We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26ad2ed commit 3f6328eCopy full SHA for 3f6328e
nsmscan.py
@@ -7,6 +7,7 @@
7
import nsmmongo
8
import nsmcouch
9
10
+
11
def massScan(platform):
12
yes_tag = ['y', 'Y']
13
no_tag = ['n', 'N']
@@ -83,11 +84,11 @@ def massScan(platform):
83
84
85
elif result[0] == 1:
86
print platform + " running but credentials required on " + target.rstrip() + "."
- creds.append(target.rstrip()) #Future use
87
+ creds.append(target.rstrip()) # Future use
88
89
elif result[0] == 2:
90
print "Successful " + platform + " connection to " + target.rstrip() + " but error executing command."
- commError.append(target.rstrip()) #Future use
91
+ commError.append(target.rstrip()) # Future use
92
93
elif result[0] == 3:
94
print "Couldn't connect to " + target.rstrip() + "."
0 commit comments