Add an option (suggestion)
syrius01 opened this issue · 2 comments
syrius01 commented
Hi,
First I wanted to thank you for this awesome tool. Would it be possible to add an option for running WPForce with all WordPress urls in a file?
e.g. : python wpforce.py -i usr.txt -w passwd.txt -f filename-containing-urls.txt
This would be awesome. Thanks again.
n00py commented
Hello,
I don't think I will add this as it's a little too far outside of what I designed it for, but I can suggest a way you could do this in bash.
You could probably make something like this:
while read filename-containing-urls.txt ; do python wpforce.py -i usr.txt -w passwd.txt -f $i ; done < filename-containing-urls.txt
That syntax might be a bit off but that would be the basic idea
syrius01 commented
Thanks for your quick reply. I get this msg:
line 1: read: `url3.txt': not a valid identifier