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 | |
DEST=$HOME/codeql-home | |
## really start to do something | |
[ -d "$DEST" ] && echo "Directory $DEST exists. Remove it before continute" | |
echo -e "Init CodeQL Home: $DEST" | |
mkdir -p $DEST | |
cd $DEST |
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
# Output will be like this: Program_Name ;; https://www.target.com/security | |
curl -s https://raw.githubusercontent.com/disclose/diodb/master/program-list.json | jq -r '.[] | select(.offers_bounty=="yes") | .policy_url as $n | [.program_name,$n] | join(" ;; ") ' | grep -v -E 'hackerone|bugcrowd' |
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
<script>alert(1)</script> |
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
socks4://61.8.75.186:1080 | |
socks4://36.89.143.23:14153 | |
socks4://125.27.10.222:39304 | |
socks4://118.174.220.168:59191 | |
socks4://176.105.199.19:43309 | |
socks4://110.44.126.132:38163 | |
socks4://103.245.19.82:59422 | |
socks4://118.175.176.137:31789 | |
socks4://78.57.227.227:64569 | |
socks4://80.78.73.116:1080 |
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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import os, sys, time, json, argparse | |
from pprint import pprint | |
import requests | |
# Console colors | |
W = '\033[1;0m' # white | |
R = '\033[1;31m' # red |
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
#!/usr/bin/env python3 | |
import subprocess, psutil, signal | |
def execute_cmd(command): | |
cmd = command.split(" ") | |
subprocess.Popen(cmd, stderr=subprocess.STDOUT) | |
def cancel_handler(signal=None, frame=None): |