Skip to content

Instantly share code, notes, and snippets.

View MoatSecure's full-sized avatar
🏠
Working from home

Moat Secure MoatSecure

🏠
Working from home
View GitHub Profile
@heywoodlh
heywoodlh / maderas.txt
Created June 19, 2019 15:47
Clone of the arsenal, armory & library by Maderas (@hackermaderas) -- https://pastebin.com/v8Mr2k95
The arsenal, armory & library by Maderas (@hackermaderas, #CyberpunkisNow) 6/8/2019
Original / 1st version here: https://pastebin.com/rMw4WbhX
___________________________________________________________________________________
# Basic knowledge requirements for Red Teaming, PenTesting, Hacking & Cybersecurity
# These are the basic competencies expected (and tested for during the in-person technical interview) by one of the largest, most visible InfoSec companies # on Earth.
@roma-guru
roma-guru / favicon_downloader.py
Created September 1, 2017 04:58
Simple Python script to download favicons from list of domains (first argument). Used for custom Keepass entry icons.
import sys
import bs4
import requests
from urllib.parse import urlparse, urlunparse
def find_icon(domain):
resp = requests.get("http://{}/".format(domain))
page = bs4.BeautifulSoup(resp.text, 'html.parser')
res = "http://{}/favicon.ico".format(domain)
icons = [e for e in page.find_all(name='link') if 'icon' in e.attrs.get('rel')]