diff --git a/Docker/run-analysis.sh b/Docker/run-analysis.sh index da23eb8..e1f941f 100755 --- a/Docker/run-analysis.sh +++ b/Docker/run-analysis.sh @@ -44,7 +44,9 @@ while IFS= read -r DOMAIN; do continue fi echo "{\"current_action\": \"scanning for requests from $DOMAIN...\"}" - network_inspector_search "domain:$DOMAIN" # can filter with more granularity: https://developer.mozilla.org/en-US/docs/Tools/Network_Monitor/request_list#filtering_by_properties + # network_inspector_search "domain:$DOMAIN" # can filter with more granularity: https://developer.mozilla.org/en-US/docs/Tools/Network_Monitor/request_list#filtering_by_properties + network_inspector_search "$DOMAIN" # the "domain:" prefix caused problems, as the GUI forces an autocomplete action. This can be worked around by pressing `ESC`, but if you press ESC when there are NO requests, then the console appears and messes up the layout. + # grab ni_search count=0 diff --git a/Docker/utils.sh b/Docker/utils.sh index f319205..3bc4b75 100644 --- a/Docker/utils.sh +++ b/Docker/utils.sh @@ -158,6 +158,7 @@ load_website(){ break; fi done + sleep 3 # sometimes the consent modal needs a little time to show up echo "{\"current_action\": \"website loaded\"}" }