Hydra is a network logon password cracker. It supports SSH and webform cracking.
Questions tagged [hydra]
103 questions
0
votes
0 answers
Hydra can't detect any correct password on https form
I tried to use hydra for my sample website below:
https://demo.leafworks.jp/package/loginplus/admin.php
login id: admin
password: leafworks
login error message: ログインに失敗しました。
I tried this command:
hydra -l admin -p leafworks demo.leafworks.jp…

Mee
- 73
- 1
- 4
0
votes
1 answer
Python to exe - hydra: No module named 'hydra._internal.core_plugins'
I have a Python script (3.9.8) which work fine in the cli (on Win11). Now I want to take my python script and generate a .exe. I did it once with hydra without any problems. Now after the convert I do get this error message from Hydra…

user14379397
- 51
- 4
0
votes
0 answers
RuntimeError: only batches of spatial targets supported (3D tensors) but got targets of size: : [50] Unet integration
I modified this repository to use hydra and add U-net model
https://github.com/kuangliu/pytorch-cifar
I run this:
python3 main.py --config-name=unet_train params.epoch_count=5
I got this error, but when I run resnet and vgg I have no problem
File…
0
votes
1 answer
Linux hydra command - cracking a simple password
I am trying to write a linux command to get into a Wix website I have created and put a password on. I have created the webpage to specifically show my students how easy it is for a hacker to crack a simple password, and hence the importance of…

Missy Jezabel
- 5
- 2
0
votes
1 answer
Ory Hydra - In PKCE flow where is code_verifier stored and checked?
I am using Ory Hydra to complete an OAuth2 authorization_code flow with PKCE. Something is wrong with my setup. The code verifier is not actually validated. I am able to exchange the authz code for a token whether I provide the right verifier, an…

BeetleJuice
- 39,516
- 19
- 105
- 165
0
votes
0 answers
Hydra how to parse a false login message with ':' in it
I had a website with a membership area built on Wordpress awhile ago, haven't used it in awhile, before I was interested infoSec. I've tried hydra on it with a password I know exits and for one that I don't.
When I try to log in with a valid…

Kernel Bash
- 87
- 6
0
votes
1 answer
Hydra : how to assign config files from same group to two different fields
Here is my config directory structure,
config
|
--scenes
|
-- aaa.yaml
-- bbb.yaml
-- ccc.yaml
-- myconfig.yaml
aaa.yaml
--------
field_xxx: "someval"
field_yyy: "someval"
field_zzz: "someval"
bbb.yaml
--------
field_xxx:…

rs_
- 433
- 4
- 12
0
votes
1 answer
ORY Hydra introspect token from external client
I managed to setup ORY Hydra in a docker container and first tests show that it is working fine. Especially, I can issue an access token for a client and also later introspect that token using the hydra command line interface. I can even introspect…

thomas
- 21
- 4
0
votes
1 answer
'E: Unable to locate package hydra' In termux
I started to use termux in my cellphone, and looking for information I find that I can install hydra in it.
However, when I use the comand
pkg install hydra
All I get is an error message as you can see in the title. I've tried to update and upgrade…

Andrés F Ariza Calderón
- 205
- 1
- 6
- 17
0
votes
1 answer
Set Hydra default config in the decorator
Is there a way to define the default config in the hydra decorator and w/o saving it to any yaml file? For some small scripts it might be very hande.
Something like this:
@hydra.main(default={var1='default_value1', var2='xxx'})
def main(cfg):
…

Temak
- 2,929
- 36
- 49
0
votes
1 answer
I am getting error of config file not found while set up of ory hydra
docker run --network hydraguide --name ory-hydra-example--postgres -e POSTGRES_USER=hydra -e POSTGRES_PASSWORD=secret -e POSTGRES_DB=hydra -d postgres:9.6
When i run the above command as mentioned in hydra docs i get the error as below
Config file…

Aswath
- 5
- 2
0
votes
2 answers
OAuth 2.0 Authorisation Code grant + PKCE for native mobile app
I'm currently implementing a new OAuth 2 server (planning to use Ory Hydra) and this will be the authorisation server for both our developers portal where developers create an app they're given client_id and client_secret and use those for the token…

ezekkiel
- 43
- 9
0
votes
0 answers
Is there a way to configure a docker container (testcontainer) with the mapped port before it starts?
I have a testcontainer that creates a Oryd/Hydra container in a Junit 4 test.
@Bean
public GenericContainer hydra() {
WaitStrategy waitStrategy = Wait.forHttp("/health/ready").forStatusCode(200);
GenericContainer hydra =
new…

Bassam
- 146
- 2
- 10
0
votes
1 answer
What is OpenGL ES 2 Shader language analog for HYDRA (pixel bender) sampleLinear?
So I look onto OpenGL ES shader specs but do not see such...
For example - I created simple "pinch to zoon" and "rotate to turn around" and "move to move center" HYDRA pixel bender filter. it can be executed in flash. It is based on default pixel…

Rella
- 65,003
- 109
- 363
- 636
0
votes
1 answer
Why does this simple Hydra command not work despite the writeup specifying the exact same syntax?
So lately I have been trying to learn hydra from tryhackme, and tried to use this simple command
hydra -l molly -P /Users/root/Desktop/ctf/rockyou.txt 10.10.161.247 http-form-post "/:username=^USER^&password=^PASS^:F=incorrect" -V
But it does not…

Abhineet Karn
- 15
- 1
- 4