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

Added possibility to read users and passwords from two separate files… #72

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

mfulz
Copy link

@mfulz mfulz commented Dec 12, 2023

…. Removed "-" arg as need to read from stdin

This PR will provide a possibility to use bruteforce reading users and passwords from two separate files.

It changes the args to work in the following way:

  • no arg -> read from stdin (user:password)
  • one arg -> read from combo file (user:password)
  • two args -> read users from file (first arg) and passwords from file (second arg) line by line

It is iterating outer over passwords and users in the inner loop.

example:
Users "u1,u2"
Passwords "p1, p2, p3, p4"

will parse in the following order:
u1:p1
u2:p1
u1:p2
u2:p2
...

…. Removed "-" arg as need to read from stdin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant