Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature request: automation #76

Open
BusesCanFly opened this issue Jan 9, 2019 · 1 comment
Open

Feature request: automation #76

BusesCanFly opened this issue Jan 9, 2019 · 1 comment

Comments

@BusesCanFly
Copy link

BusesCanFly commented Jan 9, 2019

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

@D4Vinci
Copy link
Owner

D4Vinci commented Jan 10, 2019

Good idea.
I already planned to fix the tool issues and adding a lot of automation in the next version once I have time.
So wait for the next update, there will be more ideas 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants