This file contains hidden or 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 | |
WORDLIST="wordlist.txt" | |
OUTPUT="output.txt" | |
TARGET="https://example.com/FUZZ" | |
if [ ! -f _wordlist.txt ] || [ `wc -l _wordlist.txt | cut -f 1 -d " "` -eq 0 ] | |
then | |
sort -u $WORDLIST > _wordlist.txt | |
if [ -f $OUTPUT ] | |
then |
This file contains hidden or 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
import re | |
import requests | |
import sys | |
TOKEN="*x-csrf-token Header*" | |
COOKIE="*__Host-session Cookie*" | |
USERNAME="*HackerOne Username*" | |
bugs = [] | |
pages = 1 |
This file contains hidden or 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
import json | |
import re | |
import sys | |
scopes = [] | |
f = sys.stdin | |
if len(sys.argv) == 2: | |
f = open(sys.argv[1]) | |
scopes_defs = [x.strip().lower() for x in f.readlines() if len(x.strip())] |
This file contains hidden or 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
// https://gist.github.com/richinseattle/c527a3acb6f152796a580401057c78b4 | |
#include <stdio.h> | |
#include <ctype.h> | |
#ifndef HEXDUMP_COLS | |
#define HEXDUMP_COLS 16 | |
#endif | |
void hexdump(void *mem, unsigned int len) | |
{ |
This file contains hidden or 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
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
SetTitleMatchMode, RegEx | |
Run, "Wireshark-win64-3.2.6.exe" | |
WinWait, Wireshark [\d\.]+ 64-bit Setup,, 30 | |
Loop, 7 |
This file contains hidden or 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
package main | |
import ( | |
"fmt" | |
"net" | |
"os" | |
) | |
func connect() { | |
c, err := net.Dial("tcp4", fmt.Sprintf("%s:4444", os.Args[1])) |
OlderNewer