-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdirb_image.py
64 lines (54 loc) · 2.23 KB
/
dirb_image.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
"""
Run dirb save data and create images of the results
USAGE: python dirb_image.py <url> <output_dir> [-s <screenshot directory>]
"""
import os
import logging
import argparse
from urllib.parse import urlparse
from utils import utils # noqa
from utils import logging_config # noqa pylint: disable=unused-import
from utils import run_commands
LOG = logging.getLogger("ptscripts.dirb_image")
def main(args):
LOG.info("Running dirb for {}".format(args.url))
netloc = urlparse(args.url).netloc
domain = netloc.split(":")[0]
if args.proxy:
command = ("dirb {url} /usr/share/wordlists/dirbuster/directory-list-lowercase-2.3-small.txt"\
" -S -p {proxy}").format(url=args.url, proxy=args.proxy)
else:
command = "dirb {url} /usr/share/wordlists/dirbuster/directory-list-lowercase-2.3-small.txt -S".format(url=args.url)
html_path = os.path.join(args.output, "dirb_{}.html".format(domain))
text_output = run_commands.bash_command(command)
html_output = run_commands.create_html_file(text_output, command, html_path)
if html_output and args.screenshot:
LOG.info("Creating a screenshot of the output and saving it to {}".format(args.screenshot))
utils.dir_exists(args.screenshot, True)
utils.selenium_image(html_output, args.screenshot)
if not html_output:
LOG.error("Didn't receive a response from running the command.")
def parse_args(args):
parser = argparse.ArgumentParser(
parents=[utils.parent_argparser()],
description='Capture dirb data and image.',
)
parser.add_argument('url', help="url to be tested")
parser.add_argument('output', help="where to store results")
parser.add_argument("-s", "--screenshot",
help="full path to where the screenshot will be saved.")
parser.add_argument("-p", "--proxy",
help="Proxy")
args = parser.parse_args(args)
logger = logging.getLogger("ptscripts")
if args.quiet:
logger.setLevel('ERROR')
elif args.verbose:
logger.setLevel('DEBUG')
logger.debug("Logger set to debug.")
else:
logger.setLevel('INFO')
return args
if __name__ == "__main__":
import sys
main(parse_args(sys.argv[1:]))