-
-
Notifications
You must be signed in to change notification settings - Fork 408
Open
Labels
Description
I saw there were some similar issues opened about this, however, I believe there could be an easier approach. If a flag could be added, which would then accept two inputs (email:password) it would be pretty easy to automate inputting email:password lists through a simple loop.
Example: (with -a for "automate")
python3 ./Cr3d0v3r.py -q -a email:pasword
[Cr3d0v3r.py website testing output]Then, some simple python could allow for automating Cr3d0v3r.py with a email:password credential list
with open(list) as inf:
lines = [line.strip() for line in inf]
i=0
while i < len(lines):
os.system('./Cr3d0v3r.py -q -a '+lines[i])
i+=1This could make Cr3d0v3r very useful for larger scale testing or even password spraying
:D