With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>With Rubeus version with brute module:
With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>With Rubeus version with brute module:
| #!/bin/bash | |
| cd "$(dirname "$0")" | |
| ### download and install lnd | |
| # return values: | |
| # 1 - download failed | |
| # 2 - signature check failed | |
| # 3 - other failure | |
| # 0 - success |
| #!/bin/bash | |
| query() | |
| { | |
| PASS=$(</etc/nodl/maria-btcpay.pwd) | |
| echo "$*" | mysql -u btcpay -p$PASS btcpay | |
| } | |
| case "$1" in | |
| disable-multifactor) | |
| query "DELETE FROM U2FDevices WHERE ApplicationUserId = (SELECT Id FROM AspNetUsers WHERE upper('$2') = NormalizedEmail)" |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| $options = [ | |
| 'memory_cost' => 1<<17, // 128 Mb | |
| 'time_cost' => 4, | |
| 'threads' => 2, | |
| ]; | |
| $test_hash = password_hash('foobar', PASSWORD_ARGON2I, $options); | |
| if(!password_verify('foobar', $test_hash)) { | |
| echo("ARGON2I seems to not be working properly...\n"); | |
| } else { |
| ### As root | |
| apt-get install libc6 libstdc++6 libssl-dev libssl1.0.0 libzstd1 libicu-dev | |
| wget https://download.microsoft.com/download/8/A/7/8A765126-50CA-4C6F-890B-19AE47961E4B/dotnet-sdk-2.1.402-linux-arm.tar.gz | |
| mkdir /opt/dotnet32 | |
| tar zxf dotnet-sdk-2.1.402-linux-arm.tar.gz -C /opt/dotnet32 |
| ### As root | |
| dpkg --add-architecture armhf | |
| apt-get install libc6:armhf libstdc++6:armhf libssl-dev:armhf libssl1.0.0:armhf libzstd1:armhf libicu-dev:armhf | |
| wget https://download.microsoft.com/download/8/A/7/8A765126-50CA-4C6F-890B-19AE47961E4B/dotnet-sdk-2.1.402-linux-arm.tar.gz | |
| mkdir /opt/dotnet32 |