Skip to content

Commit

Permalink
Update manifest_analysis.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ajinabraham authored Jan 9, 2024
1 parent 23c608b commit fd53918
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions mobsf/StaticAnalyzer/views/android/manifest_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@ def assetlinks_check(act_name, well_knowns):
for w_url, host in well_knowns.items():
logger.info(
'App Link Assetlinks Check - [%s] %s', act_name, host)
findings.append(
executor.submit(_check_url, host, w_url).result())
futures.append(
executor.submit(_check_url, host, w_url))
for future in futures:
findings.append(future.result())

return findings

Expand Down

0 comments on commit fd53918

Please sign in to comment.