diff --git a/var/www/blueprints/crawler_splash.py b/var/www/blueprints/crawler_splash.py index 7a02c225..2ecbd675 100644 --- a/var/www/blueprints/crawler_splash.py +++ b/var/www/blueprints/crawler_splash.py @@ -223,7 +223,7 @@ def send_to_spider(): def domain_discovery(): user_org = current_user.get_org() user_id = current_user.get_user_id() - domain = request.form.get('domain') + domain = request.args.get('domain') data = {'depth': 1, 'har': True, 'screenshot': True, 'url': f'http://{domain}', 'proxy': 'force_tor'} res = crawlers.api_add_crawler_task(data, user_org, user_id=user_id)