Skip to content
This repository was archived by the owner on Apr 17, 2021. It is now read-only.

Commit bc049ee

Browse files
committed
Removed DorkNet. I'll find an alternative. Problem: it gets only the first ten results, and AutoSQLi will need a lot to work with
1 parent 60a05a1 commit bc049ee

File tree

4 files changed

+31
-4
lines changed

4 files changed

+31
-4
lines changed

.gitmodules

-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,3 @@
44
[submodule "sqlmap"]
55
path = sqlmap
66
url = https://github.com/sqlmapproject/sqlmap
7-
[submodule "DorkNet"]
8-
path = DorkNet
9-
url = https://github.com/NullArray/DorkNet

DorkNet

-1
This file was deleted.

install.sh

+18
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# From AutoSQLi
33

44
# This script install the requirements of DorkNet and WhatWaf
5+
# And also chmod things up
56
pip install -r DorkNet/requirements.txt
67
pip install -r WhatWaf/requirements.txt
78

@@ -10,3 +11,20 @@ echo "----------------------------"
1011
echo "| dependencies installed ! |"
1112
echo "----------------------------"
1213
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

main.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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()

0 commit comments

Comments
 (0)