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:
| # https://github.com/ray-cp/pwn_debug/blob/master/build.sh | |
| #!/bin/sh | |
| # echo "install some deps" | |
| # sudo apt-get install gawk -y | |
| # sudo apt-get install bison -y | |
| # sudo apt-get install gcc-multilib -y | |
| # sudo apt-get install g++-multilib -y |
Below are the steps to get an ARM64 version of Ubuntu running in the QEMU emulator on Windows 10.
Install for Windows from https://qemu.weilnetz.de/w64/ (I used qemu-w64-setup-20181211.exe)
Put C:\Program Files\qemu on your PATH, and run the below to check it's working (which will list out
the CPUs the AArch64 emulator can emulate):
qemu-system-aarch64 -M virt -cpu help
| #!/bin/bash | |
| # Install Dependencies | |
| sudo pacman -S git svn gd lib32-gcc-libs patch make bison fakeroot | |
| # Checkout glibc source | |
| svn checkout --depth=empty svn://svn.archlinux.org/packages | |
| cd packages | |
| svn update glibc | |
| cd glibc/repos/core-x86_64 |
| rem USE AT OWN RISK AS IS WITHOUT WARRANTY OF ANY KIND !!!!! | |
| rem https://technet.microsoft.com/en-us/itpro/powershell/windows/defender/set-mppreference | |
| rem To also disable Windows Defender Security Center include this | |
| rem reg add "HKLM\System\CurrentControlSet\Services\SecurityHealthService" /v "Start" /t REG_DWORD /d "4" /f | |
| rem 1 - Disable Real-time protection | |
| reg delete "HKLM\Software\Policies\Microsoft\Windows Defender" /f | |
| reg add "HKLM\Software\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t REG_DWORD /d "1" /f | |
| reg add "HKLM\Software\Policies\Microsoft\Windows Defender" /v "DisableAntiVirus" /t REG_DWORD /d "1" /f | |
| reg add "HKLM\Software\Policies\Microsoft\Windows Defender\MpEngine" /v "MpEnablePus" /t REG_DWORD /d "0" /f | |
| reg add "HKLM\Software\Policies\Microsoft\Windows Defender\Real-Time Protection" /v "DisableBehaviorMonitoring" /t REG_DWORD /d "1" /f |
| <# | |
| .Synopsis | |
| Decrypt an MTPuTTY configuration file | |
| .Description | |
| Read an MTPuTTY configuration file, decrypt the passwords and dump the result | |
| .Parameter ConfigFile | |
| Path to the MTPuTTY configuration file |
| # https://stackoverflow.com/questions/39928401/recover-db-password-stored-in-my-dbeaver-connection | |
| # requires pycryptodome lib (pip install pycryptodome) | |
| import sys | |
| import base64 | |
| import os | |
| import json | |
| from Crypto.Cipher import AES |
sudo pacman -S gdb
sudo pacman -S pwndbg
echo 'source /usr/share/pwndbg/gdbinit.py' >> ~/.gdbinitIf you are getting the following error "Cannot find Pwndbg virtualenv directory: /usr/share/pwndbg/.venv: please re-run setup.sh", do the following steps, otherwise ignore:
| #!/usr/bin/env python3 | |
| import requests, sys | |
| requests.packages.urllib3.disable_warnings() | |
| try: | |
| target = sys.argv[1] | |
| method = sys.argv[2] | |
| except: | |
| print('[!] Usage: python3 check_ip.py <domain/ip> <http/https>') | |
| sys.exit() |
| import random | |
| from pwn import * | |
| SEED = 0xdeadbeef | |
| RANGE_MIN = 1 | |
| RANGE_MAX = 5 | |
| ROUNDS = 20 | |
| SLEEP_TIME = 0.100 # 100ms | |
| random.seed(SEED) |