Skip to content

Instantly share code, notes, and snippets.

View jaegeral's full-sized avatar

Alexander J jaegeral

View GitHub Profile
@jaegeral
jaegeral / vulmap_osx.py
Created May 3, 2019 19:36 — forked from paralax/vulmap_osx.py
check for software vulnerabilities on OSX
import glob
import plistlib
import sys
import xml
import requests
class VulnScanner(object):
def __init__(self):
self.url = 'https://vulmon.com/scannerapi?product={0}&version={1}&dev=1'
@jaegeral
jaegeral / TI-Search-Shortcuts.md
Last active March 26, 2019 06:27 — forked from Neo23x0/TI-Search-Shortcuts.md
Search Engine Shortcuts

Search Engine Shortcuts

Use Manage Search Engines in your browser to add these search engines. You can then use the 'keyword' in the URL bar to do a quick lookup. Find more details about managing your search engines in Chrome here.

e.g. Type

v dad8ebcbb5fa6721ccad45b81874e22c
#!/usr/bin/env python
# created by Glenn P. Edwards Jr.
# https://hiddenillusion.github.io
# @hiddenillusion
# Date: 2017-07-08
# (while at FireEye)
import cmd
import os
@jaegeral
jaegeral / honeymap-ssl-ngninx.conf
Last active August 29, 2015 14:14 — forked from jatrost/honeymap-ssl-ngninx.conf
some SSL / TLS hardening based on bettercrypto
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 8443 ssl;
ssl_certificate /etc/ssl/private/mhn.yourcompany.com.pem;
ssl_certificate_key /etc/ssl/private/mhn.yourcompany.com.pem;
ssl_prefer_server_ciphers on;
@jaegeral
jaegeral / damazon.py
Last active August 29, 2015 14:10 — forked from zakx/damazon.py
#!/usr/bin/python
# setup: pip install requests beautifulsoup4
from decimal import Decimal
import requests
from bs4 import BeautifulSoup
import sys
import getpass