I hereby claim:
- I am glennzw on github.
- I am glennzw (https://keybase.io/glennzw) on keybase.
- I have a public key ASCtulQWaZSDBFFdhN72CTGtGzo2u1WWOweVoumB7mHRKAo
To claim this, I am signing this object:
/* | |
e.g output: | |
[email protected] submitted data at November 3rd 2020, 7:12:25 pm | |
[email protected] submitted data at October 1st 2020, 6:15:48 pm | |
[email protected] submitted data at October 1st 2020, 6:15:41 pm | |
[email protected] submitted data at October 1st 2020, 6:13:52 pm | |
*/ |
Create Herokuapp: | |
1. Create repo | |
mkdir derp | |
cd derp | |
touch derp.go | |
echo "web: derp" > Procfile |
(ps|sort name|gu|ft -HideTableHeaders -Property Name |Out-String).Trim() -replace "\s+", "," |
#!/usr/env/python | |
# -*- coding: utf-8 -*- | |
# Hack to allow us to load icon images in Maltego by following | |
# the redirect and serving up the actual image. | |
from flask import Flask, send_file | |
import requests | |
app = Flask(__name__) | |
@app.route('/fb/pic/<id>') |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/python | |
# Check SSL certificate properties | |
from socket import socket, setdefaulttimeout | |
import ssl | |
import OpenSSL | |
from dateutil.parser import parse | |
import datetime | |
import csv | |
import calendar | |
import time |
#!/usr/bin/python | |
# Check if a host has OWA | |
import requests | |
import dns.resolver | |
import csv | |
import sys | |
from requests.packages.urllib3.exceptions import InsecureRequestWarning | |
requests.packages.urllib3.disable_warnings(InsecureRequestWarning) |
#!/usr/bin/python | |
import boto.ses | |
import time | |
AWS_ACCESS_KEY = 'xxx' | |
AWS_SECRET_KEY = 'xxx' | |
conn = boto.ses.connect_to_region("us-west-2",aws_access_key_id=AWS_ACCESS_KEY, aws_secret_access_key=AWS_SECRET_KEY) | |
while True: |
#e.g. file: | |
# 13893,Mickey,Brady,Sinn Féin,Newry and Armagh | |
import csv | |
import codecs | |
def unicode_csv_reader(unicode_csv_data, dialect=csv.excel, **kwargs): | |
# csv.py doesn't do Unicode; encode temporarily as UTF-8: | |
csv_reader = csv.reader(utf_8_encoder(unicode_csv_data), |
#!/bin/bash | |
if curl -s http://www.isup.me/$1 | grep -q "It's just you"; then echo $1 is up; else echo $1 is down; fi |