This repository was archived by the owner on Apr 17, 2021. It is now read-only.
File tree 4 files changed +31
-4
lines changed
4 files changed +31
-4
lines changed Original file line number Diff line number Diff line change 4
4
[submodule "sqlmap "]
5
5
path = sqlmap
6
6
url = https://github.com/sqlmapproject/sqlmap
7
- [submodule "DorkNet "]
8
- path = DorkNet
9
- url = https://github.com/NullArray/DorkNet
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
# From AutoSQLi
3
3
4
4
# This script install the requirements of DorkNet and WhatWaf
5
+ # And also chmod things up
5
6
pip install -r DorkNet/requirements.txt
6
7
pip install -r WhatWaf/requirements.txt
7
8
@@ -10,3 +11,20 @@ echo "----------------------------"
10
11
echo " | dependencies installed ! |"
11
12
echo " ----------------------------"
12
13
echo " "
14
+
15
+ # chmoding
16
+
17
+ echo " running chmod +x on *.py ..."
18
+ chmod +x DorkNet/dorknet.py
19
+ chmod +x WhatWaf/WhatWaf.py
20
+ chmod +x sqlmap/sqlmap.py
21
+
22
+ # installation of geckodriver
23
+
24
+ echo " installing geckodriver..."
25
+ # since we are pretty dumb as a shell programmer, just bulkly launch install commands with sudo privileges
26
+ echo " Don't mind if there are errors, that's ok. You should get two of them"
27
+ echo " If you're on macOS make sure that brew is in your PATH"
28
+ sudo pacman -S geckodriver
29
+ sudo apt-get install geckodriver
30
+ brew install geckodriver
Original file line number Diff line number Diff line change
1
+ #!/usr/bin/env python3
2
+ from src import log
3
+
4
+ def DorkNet (dork ):
5
+
6
+
7
+
8
+ def main ():
9
+ log .debug ("Test to get some urls out of DorkNet" )
10
+ log .info (DorkNet ("chaton mignon" ))
11
+
12
+ if __name__ == "__main__" :
13
+ main ()
You can’t perform that action at this time.
0 commit comments