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:
| [CmdletBinding()] | |
| param ( | |
| [Parameter( | |
| Mandatory, | |
| ValueFromPipelineByPropertyName, | |
| Position=1 | |
| )] | |
| [ValidateNotNullOrEmpty()] | |
| [string] | |
| $ComputerName, |
| #!/usr/bin/python3 | |
| # | |
| # strippalyzer-V2.py | |
| # We don't speak about V1... | |
| # Author: oq2o | |
| # | |
| # Add me to $PATH! | |
| import argparse | |
| import csv |
| #!/usr/bin/python3 | |
| # | |
| # strippalyzer.py | |
| # I swear to God it's useful... >.> | |
| # Author: oq2o | |
| # | |
| # Add me to $PATH! | |
| import argparse |
| #!/bin/bash | |
| NESSUS_URL="https://127.0.0.1:8834/" | |
| start_nessusd() { | |
| sudo systemctl start nessusd.service | |
| if [ $? -ne 0 ]; then | |
| printf "Failed to start nessusd.service\n" | |
| exit 1 | |
| fi | |
| } |