Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

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 subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants