Skip to content

Commit

Permalink
Merge pull request #1244 from Talanor/fix/s3bucket-subdomain
Browse files Browse the repository at this point in the history
Fix "subdomain" s3 bucket
  • Loading branch information
yogeshojha authored May 9, 2024
2 parents 812806d + 0204220 commit ed3e61f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/reNgine/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,7 @@ def subdomain_discovery(

elif tool == 'oneforall':
cmd = f'python3 /usr/src/github/OneForAll/oneforall.py --target {host} run'
cmd_extract = f'cut -d\',\' -f6 /usr/src/github/OneForAll/results/{host}.csv > {self.results_dir}/subdomains_oneforall.txt'
cmd_extract = f'cut -d\',\' -f6 /usr/src/github/OneForAll/results/{host}.csv | tail -n +2 > {self.results_dir}/subdomains_oneforall.txt'
cmd_rm = f'rm -rf /usr/src/github/OneForAll/results/{host}.csv'
cmd += f' && {cmd_extract} && {cmd_rm}'

Expand Down

0 comments on commit ed3e61f

Please sign in to comment.