Skip to content

Instantly share code, notes, and snippets.

View subfission's full-sized avatar
👨‍💻
InfoSec, privacy, and programming

ѕυвƒιѕѕιση subfission

👨‍💻
InfoSec, privacy, and programming
  • This is not the web page you are looking for
View GitHub Profile
@subfission
subfission / voices.txt
Last active July 23, 2019 15:28 — forked from mculp/voices.txt
List of voices available by the `say` command on OS X
#-----------------------------------------
# Missing ones can be downloaded from
# Preferences > Accessibility > Speech,
# clicking the voice selector
# selecting Customize.
#-----------------------------------------
Agnes en_US # Isn't it nice to have a computer that will talk to you?
Albert en_US # I have a frog in my throat. No, I mean a real frog!
Alex en_US # Most people recognize me by my voice.
@subfission
subfission / mn-scanner.py
Created October 8, 2018 11:48 — forked from Mcostart/mn-scanner.py
Automate network scanning tasks using the nmap and masscan tools.
#!/usr/bin/python
import xml.etree.ElementTree as ET
import subprocess
import time
import os
#http://xael.org/pages/python-nmap-en.html
import nmap
def parseMasscanReport(path):
hostsPorts = {}
@subfission
subfission / ssl-check.py
Created October 1, 2018 17:20 — forked from gdamjan/ssl-check.py
Python script to check on SSL certificates
# -*- encoding: utf-8 -*-
# requires a recent enough python with idna support in socket
# pyopenssl, cryptography and idna
from OpenSSL import SSL
from cryptography import x509
from cryptography.x509.oid import NameOID
import idna
from socket import socket
@subfission
subfission / Paths
Created September 13, 2018 22:59 — forked from TuncerMehmet/PathList
Dir Pathlist
*
*.gif
*.gif/
*.html
*.jsp
*.jsp/
*.jws
*.portal
*.portion
*.portlet
@subfission
subfission / wp-multicall-example.xml
Last active June 18, 2018 17:53 — forked from samhotchkiss/wp-multicall-example.xml
Example of Multicall in WordPress
<?xml version="1.0"?>
<methodCall>
<methodName>system.multicall</methodName>
<params>
<param>
<value>
<array>
<data>
<value>
<struct><member><name>methodName</name><value><string>wp.getAuthors</string></value></member><member><name>params</name><value><array><data><value><string>1</string></value><value><string>zach</string></value><value><string>a</string></value></data></array></value></member></struct>
@subfission
subfission / enum_ec2_instances.go
Last active February 22, 2018 21:41 — forked from stephen-mw/list_ec2_instances.md
List running EC2 instances with golang and aws-sdk-go
/*
List all of your running (or pending) EC2 instances with Amazon golang sdk.
For a list of filters or instance attributes consult the [official documentation](http://godoc.org/github.com/awslabs/aws-sdk-go/gen/ec2#Instance).
*/
package main
import (
"fmt"
"github.com/awslabs/aws-sdk-go/aws"