Skip to content

Instantly share code, notes, and snippets.

View seqrity's full-sized avatar
👁️‍🗨️

Seqrity seqrity

👁️‍🗨️
View GitHub Profile
@seqrity
seqrity / ffuf_urls
Created September 19, 2022 18:35
A simple script for fuzzing URL list by ffuf
#!/bin/bash
mkdir -p out
for line in $(cat urls.txt)
do
DOMAIN=$(echo $line | tr : _ | tr -d //)
ffuf -u $line/FUZZ -w dir_wl.txt -D -e php,aspx,jsp,html,js,txt,bak,zip,json,conf,log,git -t 100 -mc 200 -r -o out/$DOMAIN
done
@seqrity
seqrity / wordlist_from_js.sh
Last active March 5, 2023 06:35
Make wordlist from js files
#! /bin/bash
## This script fetch js files from a domain name and make a wordlist by words in js files
## Credit: https://gist.github.com/aufzayed/6cabed910c081cc2f2186cd27b80f687
##### Install requirements #####
##### Before running this script you should install Go #####
## Install subjs (https://github.com/lc/subjs)
GO111MODULE=on go get -u -v github.com/lc/subjs