Skip to content

Commit d0de7d4

Browse files
committed
Merge pull request #3 from za/master
add how to contribute
2 parents fe6fee8 + 1f0df7b commit d0de7d4

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,7 @@ NoSQLMap MongoDB Management Attack Demo.
7070

7171
<a href="http://www.youtube.com/watch?feature=player_embedded&v=xSFi-jxOBwM" target="_blank"><img src="http://img.youtube.com/vi/xSFi-jxOBwM/0.jpg" alt="NoSQLMap MongoDB Management Attack Demo" width="240" height="180" border="10" /></a>
7272

73+
Contribute
74+
==========
7375

76+
If you'd like to contribute, please create [new issue](https://github.com/tcstool/NoSQLMap/issues) or [pull request](https://github.com/tcstool/NoSQLMap/pulls).

nosqlmap.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ def mainMenu():
3333
select = True
3434
while select:
3535
os.system('clear')
36-
print "NoSQLMap [email protected]"
36+
label = subprocess.check_output(["git","describe"])
37+
print "NoSQLMap " + label + " [email protected]"
3738
print "\n"
3839
print "1-Set options (do this first)"
3940
print "2-NoSQL DB Access Attacks"
@@ -754,4 +755,4 @@ def stealDBs(myDB):
754755
raw_input ("Something went wrong. Are you sure your MongoDB is running and options are set? Press enter to return...")
755756
mainMenu()
756757

757-
mainMenu()
758+
mainMenu()

0 commit comments

Comments
 (0)