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 -ex | |
ip=$1 | |
outdir="out" | |
tmp=`pwd`/tmp | |
mkdir -p $outdir | |
nmap -p- --min-rate 10000 -oG $tmp $ip &>/dev/null | |
nmap -p `egrep -v "^#|Status: Up" $tmp | cut -d' ' -f4- | tr , "\n" | awk -F / '{print $1}' | tr "\n" ,| tr -d " " | sed 's/.$//'` -sCV -oA $outdir/$ip $ip &>/dev/null | |
rm $tmp |
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
^([.'A-zøæéÉ寨Å]+\s)+(\d{1,3})([A-z]| [A-z]|$|) |
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 urllib.request | |
import argparse | |
import shutil | |
import string | |
import random | |
from pathlib import Path | |
from json import JSONDecodeError | |
import json | |
import os | |
import subprocess |
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
access | |
admin | |
api | |
auth | |
aws | |
bearer | |
bot | |
bucket | |
client | |
consumer |
This file has been truncated, but you can view the full 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
* | |
*** | |
***** | |
****** | |
+* | |
_________ | |
█ | |
███ |
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
/ | |
/% | |
/' | |
/) | |
/)))+ | |
/* | |
/***** | |
/*************** | |
/+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ |
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 | |
from multiprocessing import Process, Manager | |
from threading import Thread | |
from urllib.parse import urlparse | |
import requests | |
from bs4 import BeautifulSoup | |
baseurl = input("ONE domain to crawl [must include scheme]: ").strip() | |
headers = { |
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
print([i/100 for i in range(1,20*100) if (i/100)*0.97<(i/100)-0.55][0]) # three percent vs. 0.55 kr |
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, time, os | |
import numpy as np | |
DIR = "out/" | |
if not os.path.exists(DIR): | |
os.makedirs(DIR) | |
""" |