Install tor via HomeBrew and start the tor serivce.
brew install tor && brew services start tor
And to use obsf4 proxy we need to install its library/ Use HomeBrew for installation of the library.
brew install obfs4proxy
$ grep -P "^[ABCDEFabcdefOoIi]{6,6}$" /usr/share/dict/words | tr 'OoIi' '0011' | tr '[:lower:]' '[:upper:]' | awk '{print "#" $0}' | |
#ACAD1A | |
#B0BB1E | |
#DEBB1E | |
#AB1DED | |
#ACAC1A | |
#ACCEDE | |
#AC1D1C | |
#BAB1ED | |
#BA0BAB |
[Unit] | |
Description=Software Defined Radio TCP Server | |
Requires=network.target | |
After=network.target | |
[Service] | |
ExecStart=/usr/bin/rtl_tcp -a 0.0.0.0 | |
Restart=on-failure | |
KillMode=control-group |
#!/bin/bash | |
reset | |
# FFT bin size for a sample rate of 2,400,000 Hz: | |
# | |
# Bin Count Bin Width (Hz) Bin Width (kHz) | |
# 4 600,000.000 600.000 | |
# 8 300,000.000 300.000 | |
# 16 150,000.000 150.000 |
#!/bin/bash | |
#Requirements: KXSS(https://github.com/Emoe/kxss), Dalfox (https://github.com/hahwul/dalfox), QSreplace(https://github.com/tomnomnom/qsreplace) | |
#Preparation: subfinder -d target.tld -all -silent | httpx -silent | gauplus --random-agent -b eot,jpg,jpeg,gif,css,tif,tiff,png,ttf,otf,woff,woff2,ico,pdf,svg,txt -t 100 -o params.txt && cat params.txt | gf xss | sed "s/'/ /g" | sed "s/(/ /g" | sed "s/)/ /g" | qsreplace "FUZZ" 2> /dev/null | anew -q testparams.txt | |
#Usage: ./inxss.sh testparams.txt target.tld | |
lists=$1 | |
mkout=$(echo -e "$2_$(date +%F_%H_%M_%S)") | |
mkdir -p $mkout | |
echo -e "Total $(cat $1 | wc -l) targets loaded" | |
sleep 6s | |
echo -e "[$(date +"%F %H:%M:%S")] Starting scan..." |
Install tor via HomeBrew and start the tor serivce.
brew install tor && brew services start tor
And to use obsf4 proxy we need to install its library/ Use HomeBrew for installation of the library.
brew install obfs4proxy
#include <Arduino.h> | |
#include <Wire.h> // Only needed for Arduino 1.6.5 and earlier | |
const uint8_t blue = 23; | |
const uint8_t vbatPin = 35; | |
float VBAT; // battery voltage from ESP32 ADC read | |
void setup() | |
{ |
import pandas as pd | |
import concurrent.futures | |
from tqdm import tqdm | |
def threadPoolCall(func, task_args, max_workers = 8, raise_exception=True, log_errors=True, show_progress=True, description=None): | |
""" Distributes out a task between a pool of worker threads and collects | |
the results. The task is a python function, and the arguments to the function | |
are specified in an array of tuple arguments, each element representing a | |
task. |
zmv -n '(*.)(<->)(.[^.]#)' '$1$(($2+1))$3' # would rename x.0001.y to x.2.y.
zmv -n '(*.0#)(<->)(.[^.]#)' '$1$(($2+1))$3'
$ zmv '*' '${(L)f}'
deb http://ports.ubuntu.com/ubuntu-ports focal main restricted universe multiverse | |
deb-src http://ports.ubuntu.com/ubuntu-ports focal main restricted universe multiverse | |
deb http://ports.ubuntu.com/ubuntu-ports focal-updates main restricted universe multiverse | |
deb-src http://ports.ubuntu.com/ubuntu-ports focal-updates main restricted universe multiverse | |
deb http://ports.ubuntu.com/ubuntu-ports focal-backports main restricted universe multiverse | |
deb-src http://ports.ubuntu.com/ubuntu-ports focal-backports main restricted universe multiverse | |
deb http://ports.ubuntu.com/ubuntu-ports focal-security main restricted universe multiverse |
wget -qO- https://check.torproject.org/exit-addresses | grep ExitAddress | cut -d ' ' -f 2 | sed "s/^/deny /g; s/$/;/g" > /etc/nginx/conf.d/tor-block.conf; systemctl reload nginx | |
#next add the following to your nginx site conf | |
#In nginx you then just include the blacklist. | |
include /etc/nginx/conf.d/tor-block.conf; | |
#The file contains statements like this: |