-
Notifications
You must be signed in to change notification settings - Fork 5
/
whatweb_image.py
70 lines (60 loc) · 2.73 KB
/
whatweb_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
65
66
67
68
69
70
"""
Run whatweb save data and create images of the results
USAGE: python whatweb_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.whatweb_image")
USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36"
def main(args):
LOG.info("Running whatweb for {}".format(args.url))
if args.proxy:
# command = 'whatweb -v -a 3 --proxy {proxy} --user-agent "{ua}" {url}'.format(
# ua=USER_AGENT, url=args.url, proxy=args.proxy)
command = ['whatweb', '-v', '-a', '3', '--proxy', args.proxy, '--user-agent',
'"' + USER_AGENT + '"', args.url]
else:
# command = 'whatweb -v -a 3 --user-agent "{ua}" {url}'.format(ua=USER_AGENT, url=args.url)
command = ['whatweb', '-v', '-a', '3', '--user-agent', '"' + USER_AGENT + '"', args.url]
LOG.info(command)
netloc = urlparse(args.url).netloc
domain = netloc.split(":")[0]
html_path = os.path.join(args.output, "whatweb_{}.html".format(domain))
text_output = run_commands.bash_command(command, split=False)
html_output = run_commands.create_html_file(text_output, "".join(command), html_path)
# text_output = run_commands.bash_command(command_string, split=False)
# html_output = run_commands.create_html_file(text_output, command_string, 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 whatweb 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:]))