#HTML presentation tools
There are many HTML presentation tools and they are all created for slightly different reasons. Here's an overview. Please let me know if I forgot any.
##CSSS
CSS-based SlideShow System
#!/usr/bin/env python | |
""" | |
MS12-020/CVE-2012-0002 Vulnerability Tester | |
based on sleepya's version @ http://pastebin.com/Ks2PhKb4 | |
""" | |
import socket | |
import struct | |
import sys |
A very basic regex-based Markdown parser. Supports the
following elements (and can be extended via Slimdown::add_rule()
):
#!/usr/bin/env ruby | |
# | |
# ms12-020 PoC attempt | |
# | |
# NOTE: This was crafted based on a legit connection packet capture and reversing | |
# a packet capture of the leaked MAPP PoC. | |
# | |
# by Joshua J. Drake (jduck) | |
# |
<# | |
.SYNOPSIS | |
An MTR clone for PowerShell. | |
Written by Tyler Applebaum. | |
Version 2.1 | |
.LINK | |
https://gist.github.com/tylerapplebaum/dc527a3bd875f11871e2 | |
http://www.team-cymru.org/IP-ASN-mapping.html#dns |
These are my notes on how to set up GPG with the private key stored on the hardware Yubikey. This will reduce the chances of your GPG private key from being stolen, and also allow you to protect other secrets such as SSH private keys.
It's just some notes and a partial worklog for now, but I may turn it into a full blog post later.
#!/usr/bin/env bash | |
GNUPGHOME="$HOME/.gnupg" | |
PIDFILE="$GNUPGHOME/win-gpg-agent-relay.pid" | |
LOGFILE="$GNUPGHOME/win-gpg-agent-relay.log" | |
is_pid_running() { | |
if [[ -z "$1" ]]; then | |
return 1 | |
fi |