From Terminal
# install dependencies
brew install autoconf # required by pecl
brew install libzip
# install zip extenion in your selected MAMP PHP version
ls /Applications/MAMP/bin/php/
X-Azure-ClientIP: 127.0.0.1 | |
X-Azure-SocketIP: 127.0.0.1 | |
X-Originating-IP: 127.0.0.1 | |
X-Forwarded-For: 127.0.0.1 | |
X-Remote-IP: 127.0.0.1 | |
X-Remote-Addr: 127.0.0.1 | |
X-Real-Ip: 127.0.0.1 | |
X-Target-IP: 127.0.0.1 | |
X-Forwarded-Host: localhost | |
True-Client-IP: 127.0.0.1 |
# https://twitter.com/brsn76945860/status/1171233054951501824 | |
pip install mmh3 | |
----------------------------- | |
# python 2 | |
import mmh3 | |
import requests | |
response = requests.get('https://cybersecurity.wtf/favicon.ico') | |
favicon = response.content.encode('base64') |
<Files 403.shtml> | |
order allow,deny | |
allow from all | |
</Files> | |
# https://www.cloudflare.com/ips-v4 | |
# https://www.cloudflare.com/ips-v6 | |
deny from all | |
allow from 103.21.244.0/22 |
<!-- https://www.geeksforgeeks.org/how-to-read-a-local-text-file-using-javascript/ --> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Read Text File</title> | |
</head> | |
<body> | |
<input type="file" name="inputfile" |
#!/usr/bin/env python2 | |
#============================================================================================================# | |
#======= Simply injects a JavaScript Payload into a GIF. ====================================================# | |
#======= or it creates a JavaScript Payload as a GIF. ====================================================# | |
#======= The resulting GIF must be a valid (not corrupted) GIF. =============================================# | |
#======= Author: marcoramilli.blogspot.com ==================================================================# | |
#======= Version: PoC (don't even think to use it in development env.) ======================================# | |
#======= Disclaimer: ========================================================================================# | |
#THIS IS NOT PEP3 FORMATTED | |
#THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR |
#!/bin/bash | |
url=$1 | |
if [ ! -d "$url" ];then | |
mkdir $url | |
fi | |
if [ ! -d "$url/recon" ];then | |
mkdir $url/recon | |
fi | |
# if [ ! -d '$url/recon/eyewitness' ];then | |
# mkdir $url/recon/eyewitness |
From Terminal
# install dependencies
brew install autoconf # required by pecl
brew install libzip
# install zip extenion in your selected MAMP PHP version
ls /Applications/MAMP/bin/php/
//https://golangcode.com/headless-chrome-screenshot/ | |
package main | |
import ( | |
"context" | |
"io/ioutil" | |
"log" | |
"github.com/chromedp/cdproto/page" |
#!/bin/bash | |
echo +++++++++++++++++++++++++++++++++++++++++ | |
echo Randomize Hostname and Renew IP | |
echo by Aung Khant, http://yehg.net | |
echo +++++++++++++++++++++++++++++++++++++++++ | |
echo | |
######################################################## | |
sleep 1 |
package main | |
import ( | |
"fmt" | |
"regexp" | |
"io/ioutil" | |
"log" | |
) | |
func main() { |