Skip to content

Feature request: automation #76

@BusesCanFly

Description

@BusesCanFly

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+=1

This could make Cr3d0v3r very useful for larger scale testing or even password spraying

:D

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions