Dec 11, 2022
Here is my oneliner command when I run xray tool on my targeted domains
while read domain; do ./xray_linux_amd64 ws --basic-crawler --plugins xss,sqldet,xxe,cmd-injection,path-traversal $domain >> output.txt; done < targets.txt && sort output.txt | uniq > temp && mv temp output.txt
Note: your target domain txt file name must be targets.txt