-
-
Save Anirbansingha1/a2481f6504ca943e5c8cfd8dc0094af1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python3 | |
| import sys,os | |
| domain_file=sys.argv[1] | |
| with open(domain_file) as d: | |
| for line in d: | |
| line=line.strip() | |
| output=line+'_ctfr.txt' | |
| amass_cmd='/mnt/software/ctfr.py -d '+line+' -o '+output | |
| os.system(amass_cmd) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment