-
Notifications
You must be signed in to change notification settings - Fork 409
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
SSH password spray fails to work where hydra works with same inputs #112
Comments
Also: reading the docs there appears to be no way to have the two input files treated round robin. user1 pass1 Its either or But no option to do criss cross seems to be available which might avoid being locked out better? |
I see, let me debug it |
Signed-off-by: XiaoliChan <[email protected]>
Thanks for the bug report! |
Sweet. Thanks Alex.
Oh from reading the docs the --no-bruteforce option sounded like it was
intended to stop the process after the first pass
user1:pass1
user2:pass2
user3:pass3
then thats it. Which would make the process pretty pointless. And I thought
in my testing of it that was exactly what it was doing. Maybe I
mis-remembered that.
…On Fri, Nov 10, 2023 at 6:27 AM Alex ***@***.***> wrote:
Closed #112 <#112> as
completed via #113 <#113>.
—
Reply to this email directly, view it on GitHub
<#112 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABPAMO7IV7YY772LKAEC4WTYDYMSBAVCNFSM6AAAAAA7FN4LGKVHI2DSMVQWIX3LMV45UABCJFZXG5LFIV3GK3TUJZXXI2LGNFRWC5DJN5XDWMJQHEZDINJXGM2DMNA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Oh yes, this is correct for the |
It feels like instead of just stopping after a 1 to 1 pass it should wait a
defined period of time and then proceed to the next password for all users?
user1:pass1
user2:pass1
user3:pass1
<wait>
user1:pass2
user2:pass2
user3:pass2
<wait>
user1:pass3
user2:pass3
user3:pass3
Where wait can be zero if you want and maybe the default
…On Fri, Nov 10, 2023 at 10:17 AM Alex ***@***.***> wrote:
Oh yes, this is correct for the --brute-force option.
—
Reply to this email directly, view it on GitHub
<#112 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABPAMOYFN5NFT5IYVH3CY63YDZHP5AVCNFSM6AAAAAA7FN4LGKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMBWGAZDMNBSHA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
So really I guess I am suggesting instead of --no-bruteforce there is just
an option for a cycle delay time --delay 30
But whatever. I don't know what I am talking about. you guys are the
experts. :)
Maybe that doesnt avoid a lockout at all.
…On Fri, Nov 10, 2023 at 11:38 AM Dan Edwards ***@***.***> wrote:
It feels like instead of just stopping after a 1 to 1 pass it should wait
a defined period of time and then proceed to the next password for all
users?
user1:pass1
user2:pass1
user3:pass1
<wait>
user1:pass2
user2:pass2
user3:pass2
<wait>
user1:pass3
user2:pass3
user3:pass3
Where wait can be zero if you want and maybe the default
On Fri, Nov 10, 2023 at 10:17 AM Alex ***@***.***> wrote:
> Oh yes, this is correct for the --brute-force option.
>
> —
> Reply to this email directly, view it on GitHub
> <#112 (comment)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/ABPAMOYFN5NFT5IYVH3CY63YDZHP5AVCNFSM6AAAAAA7FN4LGKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQMBWGAZDMNBSHA>
> .
> You are receiving this because you authored the thread.Message ID:
> ***@***.***>
>
|
Ah yes throttling login attempts would be an idea, but it gets really complicated with multithreading (when you specify more than one host). That's probably why nobody has done that before. For single targets it would be an idea tho, but i must say in real life pentests i nearly never brute-force over the network as it is incredible slow and companies most often have a lockout policy that would disable that. For the |
Describe the bug
Using nxc ssh to password spray does not work where same data with hydra does
Reproduced this while hacking the Wifinetic machine on app.hackthebox.com
To Reproduce
Using the following two input files
pass.txt
VeRyUniUqWiFIPasswrd1!
badpassword
goodpassword
users.txt
olivia.walker17
netadmin
samantha.wood93
nxc
Hydra
The text was updated successfully, but these errors were encountered: