Skip to content

Instantly share code, notes, and snippets.

View ResistanceIsUseless's full-sized avatar
:octocat:
Building Security Tools

StaticBunny ResistanceIsUseless

:octocat:
Building Security Tools
View GitHub Profile
[
{
"name": "ADMIN_PASSWORD",
"value": "(admin).+(secret|token|key|password).+"
},
{
"name": "AWS API Gateway",
"value": "[0-9a-z]+.execute-api.[0-9a-z.-_]+.amazonaws.com"
},
{
#!/usr/bin/env python3
"""
Python script to enumerate valid Microsoft 365 domains, retrieve tenant name, and check for an MDI instance.
Based on: https://github.com/thalpius/Microsoft-Defender-for-Identity-Check-Instance.
Usage: ./check_mdi.py -d <domain>
"""
import argparse
import dns.resolver
@ResistanceIsUseless
ResistanceIsUseless / PSA64.cs
Created February 24, 2020 18:49 — forked from NickTyrer/PSA64.cs
PSAttack Using MSBuild Downloader
This file has been truncated, but you can view the full file.
//Credits to Casey Smith for his initial research here "https://gist.github.com/subTee/ca477b4d19c885bec05ce238cbad6371"
//Based on Jared Haight work (https://github.com/jaredhaight/PSAttack)
//1. Compile "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe /out:PSA64.exe PSA64.cs"
using System;
using System.Reflection;
namespace PSA64
{
class Program
{
@ResistanceIsUseless
ResistanceIsUseless / bountyscan_setup.sh
Last active March 8, 2023 12:44 — forked from jhaddix/bountyscan_setup.sh
Bug bounty environment setup with some additional tools
#!/bin/bash
#note: This is a pretty sloppy script in someplaces so use at your own risk.
########################################
# Configuration
########################################
InstallPath=/home/static/Tools
########################################
mkdir -p $InstallPath/{temp,Scripts/Recon}
echo -e "\e[92m[*] Starting Install... [*]"
@ResistanceIsUseless
ResistanceIsUseless / install_scapy.sh
Last active August 29, 2015 14:05 — forked from nvasilakis/install_scapy.sh
OSX Scapy Install Script
#!/bin/bash
#requires wget(brew install wget) or replace wget with curl -I
wget http://libdnet.googlecode.com/files/libdnet-1.12.tgz
tar xfz libdnet-1.12.tgz
cd libdnet-1.12
./configure
make
sudo make install
cd python
sudo python setup.py install