Questions tagged [hydra]

Hydra is a network logon password cracker. It supports SSH and webform cracking.

103 questions
2
votes
1 answer

emacs elisp (other-window 0)

I try to write a hydra function to switch windows. Basically I want that C-x o takes me to the other window, and then "o" will cycle through all the windows. So I put in .emacs (global-set-key (kbd "C-x o") (defhydra hydra-other-window (:pre…
user3208
  • 155
  • 3
2
votes
3 answers

Does a VCL OrgChart component with decent features exists? Is there a viable alternative?

I am using DevExpress OrgChart component that is still maintained but not developed since 2003 (fortunately bugs are fixed, but nothing more). Honestly this component, even if it starts to look too old still suffices my requirements except for 2…
UnDiUdin
  • 14,924
  • 39
  • 151
  • 249
2
votes
1 answer

Remote Desktop / RDP credentials check from command line (no GUI)

We're currently writing a tool aimed at checking the validity of credentials over various applications (http, ssh, smb, rdp). No problem for the 3 former. But for RDP, I couldn't find a single way of doing this easily. The tool is embedded within a…
jrm
  • 599
  • 6
  • 12
2
votes
1 answer

Run Hydra (mpiexec) locally gives strange SSH error

I am trying to run example code from this question: MPI basic example doesn't work but when I do: $ mpirun -np 2 mpi_test I get this: ssh: Could not resolve hostname wvxvw-laptop: Name or service not known And then the program hangs until…
user797257
2
votes
1 answer

RemObjects Hydra Plugin Can't Handle WM_DEVICECHANGE Windows Messages Directly

I Creating a Hydra Host Application and a Hydra Plugin. I put a Procedure for Handling a Windows Message in Plugin; but in this case we can't handle this windows message. for solving this problem we can handle It in Host App and then we must talk…
Shaahin Ashayeri
  • 918
  • 2
  • 13
  • 30
1
vote
1 answer

Typhoeus gem not reducing response time

Basically I have 857 image links to check. I implemented it in 3 different methods and run them 3 times each. Method 1: Using Typhoeus and Hydra (Parallel Requests) hydra = Typhoeus::Hydra.new(:max_concurrency => 50) st = Time.now @image_urls.each…
John Lee
  • 1,241
  • 2
  • 16
  • 29
1
vote
1 answer

Poetry unable to install hydra

Poetry can not install hydra with the below error. How to install Hydra with poetry: $ poetry add hydra Using version ^2.5 for hydra Updating…
mCs
  • 2,591
  • 6
  • 39
  • 66
1
vote
0 answers

Storing parameters in .yaml file - how to escape?

Does anyone have knowledge on escaping characters in Yaml? I am currently creating pipelines with the StreamSets SDK for Python and now introducing Hydra to store the configs in .yaml files to allow us to tweak or add certain params with Compose and…
1
vote
0 answers

What is the point of using `MISSING` in hydra or pydantic?

I am creating a configuration management system in python and are exploring options between hydra/pydantic/both. I get a little confused over when to use MISSING versus just leaving it blank/optional. I will use an example of OmegaConf here…
ilovewt
  • 911
  • 2
  • 10
  • 18
1
vote
1 answer

Access Hydra configuration parameters from different files

I'm trying to integrate hydra into my reinforcement learning code and I would like to access configuration parameters from different files, containing various functions and classes. Short Example: Main file main.py: import…
1
vote
1 answer

Sweeping over multiple configurations

I'm interested in using hydra to run some experiments over various datasets. Following the documentation found here, I've set up my conf directory as follows conf ├── config.yaml ├── dataset │   ├── experiment_1_0.yaml │   ├──…
Demetri Pananos
  • 6,770
  • 9
  • 42
  • 73
1
vote
0 answers

ModuleNotFoundError: No module named 'hydra'

I'm trying to run a Python script but it gives an error immediately at the first line of code while trying importing hydra library via: import hydra The error i get is the following: Traceback (most recent call last): File "C:\Documenti\Python\01…
Mario
  • 137
  • 1
  • 10
1
vote
1 answer

Handling high number of configuration parameters in python

In my Machine Learning project I have a high number of parameters that are loaded from a configuration file, e.g. a YAML file. I wonder, is there any best practice on how to integrate them in the codebase other than a number of 'setup_by_cfg'…
Haydnspass
  • 67
  • 6
1
vote
1 answer

Store user attributes in Optuna Sweeper plugin for Hydra

How can I store additional information in an optuna trial when using it via the Hydra sweep plugin? My use case is as follows: I want to optimize a bunch of hyperparameters. I am storing all reproducibility information of all experiments (i.e.,…
Michel Kok
  • 354
  • 1
  • 10
1
vote
1 answer

How to reference other .yaml files of hydra conf folder?

My conf directory looks like: conf - hydra - run - dir - job_timestamp.yaml main.yaml in main.yaml I am trying to overwrite the hydra output directory with a custom structure as defined in job_timestamp.yaml: dir:…