Skip to content

Commit 8d0f269

Browse files
committed
Refactoring base
1 parent 43e44d0 commit 8d0f269

File tree

5 files changed

+28
-7
lines changed

5 files changed

+28
-7
lines changed

.vs/VSWorkspaceState.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"ExpandedNodes": [
3+
"",
4+
"\\vuln_apps"
5+
],
6+
"SelectedNode": "\\nsmcouch.py",
7+
"PreviewInSolutionExplorer": false
8+
}

.vs/slnx.sqlite

0 Bytes
Binary file not shown.

nosqlmap.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,7 @@ def mainMenu():
5454

5555
mmSelect = True
5656
while mmSelect:
57-
os.system('clear')
58-
  print " _ _ ___ ___ _ __ __           "
59-
  print "| \| |___/ __|/ _ \| | | \/ |__ _ _ __ "
60-
  print "| .` / _ \__ \ (_) | |__| |\/| / _` | '_ \"
61-
  print "|_|\_\___/___/\__\_\____|_| |_\__,_| .__/"
62-
  print " v0.7 codingo@protonmail.com      |_|   "
63-
print "\n"
57+
print "NoSQLMap - GUI"
6458
print "1-Set options"
6559
print "2-NoSQL DB Access Attacks"
6660
print "3-NoSQL Web App attacks"

nosqlmapCLI.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/usr/bin/python
2+
# NoSQLMap Copyright 2012-2017 NoSQLMap Development team
3+
# See the file 'doc/COPYING' for copying permission
4+
5+
import sys
6+
import nsmcouch
7+
import nsmmongo
8+
import nsmscan
9+
import nsmweb
10+
11+
def main():
12+
print("╔╗╔┌─┐╔═╗╔═╗ ╦ ╔╦╗┌─┐┌─┐")
13+
print("║║║│ │╚═╗║═╬╗║ ║║║├─┤├─┘")
14+
print("╝╚╝└─┘╚═╝╚═╝╚╩═╝╩ ╩┴ ┴┴ ")
15+
16+
17+
18+
if __name__ == '__main__':
19+
main()

testcase.py

Whitespace-only changes.

0 commit comments

Comments
 (0)