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
Append to {shell}rc file | |
alias newtornode='echo -n "[*] Current TOR Node: ";curl --socks5 127.0.0.1:9050 http://checkip.amazonaws.com/;echo "[*] Getting New TOR Node";(echo authenticate "\"thisismypassword\""; echo signal newnym; echo quit) | nc localhost 9051 >/dev/null;sleep 5;echo -n "[+] New TOR Node: ";curl --socks5 127.0.0.1:9050 http://checkip.amazonaws.com/' |
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
from itertools import permutations | |
from itertools import product | |
from sys import exit | |
from time import sleep | |
import os | |
result = os.system('color') ## Allows the script to use colors | |
GREEN = '\033[92m' | |
RED = '\033[31m' |
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
from code import InteractiveConsole | |
class Console(InteractiveConsole): | |
def __init__(*args): InteractiveConsole.__init__(*args) | |
def enter(self, source): | |
source = self.preprocess(source) | |
self.runcode(source) | |
@staticmethod |
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
# simple port scan tool | |
# !/usr/bin/python | |
# -*- coding: utf-8 -*- | |
import optparse,sys | |
from socket import * | |
from threading import * | |
screenLock = Semaphore(value=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 argparse | |
from scapy.all import * | |
import signal | |
import sys | |
from collections import Counter | |
def printpattern(match): | |
if match: | |
print('[+] Found domain: ', match) | |
with open(output_file,'a') as f: | |
if output_file: |
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
# Created by - unknown | |
# python3 | |
from scapy.all import * | |
import sys | |
import os | |
import time | |
try: | |
interface = input("[*] Enter Desired Interface: ") | |
victimIP = input("[*] Enter Victim IP: ") |
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/env/python3 | |
#Easy as PIE - Process Information Enumeration | |
import psutil,hashlib,sys | |
from uuid import uuid4 | |
def hash_file(file): | |
# uuid is used to generate a random number | |
salt = uuid4().hex | |
hashed = hashlib.sha256() | |
with open(file, 'rb') as ofile: |
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 | |
OPTIND=1 | |
function cleanup { | |
clear | |
sleep 4 | |
if [[ $arg != *"-v"* ]]; then | |
echo "Cleaning up this mess..." | |
rm -f ./.temp2 | |
rm -f ./temp1.pcap | |
rm -f ./.temp1 |
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
#Created by - unknown | |
#python2 | |
from scapy.all import * | |
import sys | |
import os | |
import time | |
try: | |
interface = raw_input("[*] Enter Desired Interface: ") | |
victimIP = raw_input("[*] Enter Victim IP: ") |
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 | |
OPTIND=1 | |
function cleanup { | |
echo | |
echo "All URLs are in '$domainURLs'" | |
echo "All unique (sub)domains are in '$domainsubdomains'" | |
echo | |
echo "have a nice day" | |
exit | |
} |