hkelley

Results 72 comments of hkelley

Step one complete. Docker healthcheck correctly marked the container as unhealthy: ``` # sudo docker inspect --format='{{json .State.Health}}' crackq { "Status": "unhealthy", "FailingStreak": 38, "Log": [ { "Start": "2024-08-23T14:03:59.238735966Z", "End":...

Key snippets from the yml file below. This configuration has both a healthcheck in crackq container and a separate "restarter" container to bounce crackq/hashcat if it loses the GPUs. ```...

I'm speculating a bit, but could this be the result of https://github.com/f0cker/crackq/blob/ec84c6a162f379febc3f2f21ea8832f32b316de1/crackq/cq_api.py#L1928 where the data to write into the template is taken from the job file: ``` with job_file.open('r') as...

This may be another case where a job that is 100% potfile behaves different (has different data written to disk).

Yes, a warning would help (at least me). When I run a job directly in hashcat, I don't think of it as "failed" simply because it was able to work...

Thanks for that context. Is there any way to directly create or edit a template? I have had a few times where I wanted to make a small adjustment to...

Thanks. Found the file under `/var/crackq/logs/templates/`

Should the template timeouts be in seconds? I haven't tested this exhaustively, but I think the timeout setting from the job may not be saved to the template.

Similar question about Powershell and Az.Resources 7.9.0 Only a basic `eq` works: ``` Get-AzResource -ResourceGroupName $rgname -ODataQuery "`$filter=resourceType eq 'Microsoft.Network/networkInterfaces'" ``` These two fail, though with different exceptions (I get...

We see a similar exception when trying to create a container via docker compose file with "=" (equals sign) in an environment setting: ``` environment: - bhe_database_connection="user=bloodhound" ``` ``` too...