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 ff32ce9 commit 2131859Copy full SHA for 2131859
.vs/slnx.sqlite
0 Bytes
lib/core/__version__.py
@@ -0,0 +1 @@
1
+__version__ = '1.0'
nosqlmap.py
@@ -0,0 +1,22 @@
+#!/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
+from lib.core.__version__ import __version__
7
8
+def print_banner():
9
+ print("╔╗╔┌─┐╔═╗╔═╗ ╦ ╔╦╗┌─┐┌─┐")
10
+ print("║║║│ │╚═╗║═╬╗║ ║║║├─┤├─┘")
11
+ print("╝╚╝└─┘╚═╝╚═╝╚╩═╝╩ ╩┴ ┴┴ ")
12
+ print(" Version %s www.nosqlmap.net" % __version__)
13
+ print(" By @tcstool and @codingo_")
14
15
+def main():
16
+ print_banner()
17
18
19
20
21
+if __name__ == '__main__':
22
+ main()
nosqlmapCLI.py
0 commit comments