Skip to content

Instantly share code, notes, and snippets.

View heywoodlh's full-sized avatar
:octocat:
Trapped in Vim

Spencer Heywood heywoodlh

:octocat:
Trapped in Vim
View GitHub Profile
@heywoodlh
heywoodlh / README.md
Created February 27, 2018 22:34
LDS Talks By Speaker

#LDStalksbyspeaker

Searches a web page for linked mp3 lds talk files on lds.org, byuspeeches or linked mp3 files on the actual web page and then downloads them

##Requirements:

lynx wget

@heywoodlh
heywoodlh / requirements.txt
Created February 27, 2018 22:37
Uptime slack notification through python
certifi==2017.11.5
chardet==3.0.4
idna==2.6
requests==2.18.4
slacker==0.9.60
urllib3==1.22
@heywoodlh
heywoodlh / README.md
Last active February 27, 2018 22:43
CF-Zone Editor

cf-zone-editor

DESCRIPTION: Simple, interactive command line utility for managing DNS records hosted on Cloudflare.

DEPENDENCIES: jq

OPTIONAL DEPENDENCIES: pass, rng-tools Pass required in order to support gpg encryption for secure authentication. Rng-tools recommended to create entropy for gpg keys quickly.

USAGE: cf-zone [OPTION]

@heywoodlh
heywoodlh / README.md
Created February 27, 2018 22:48
Slack Login Notification Script

#Security

This is a collection of Python Programs I have created for security purposes.

Dependencies:

  1. Python3
  2. Pip
  3. Git

Installation:

@heywoodlh
heywoodlh / README.md
Created February 27, 2018 22:51
Pushbullet SMS Scripts

Credit for the foundation of this program goes to Pushbullet.py: https://github.com/randomchars/pushbullet.py

Installation:

Download the repository: git clone https://github.com/heywoodlh/pushbullet-sms-cli

Install the dependencies: pip3 install -r requirements.txt

@heywoodlh
heywoodlh / README.md
Created February 27, 2018 22:55
ADB Scripts

adb-scripts

This repository consists of useful adb scripts/commands for the Samsung Galaxy S8.

Feel free to fork this repository and submit your own scripts.

@heywoodlh
heywoodlh / client.py
Created February 27, 2018 22:56
Python Command and Control Examples
#!/usr/bin/env python3
import socket
host_server = 'localhost'
host_port = '1776'
clientsocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
clientsocket.connect((host_server, int(host_port)))
conn_status = 'connection established'
clientsocket.send(conn_status.encode('utf-8'))
@heywoodlh
heywoodlh / pwned.py
Created February 27, 2018 22:58
Pwned-py to check Have I Been Pwned
#!/usr/bin/env python3
import sys
import re
import requests
import urllib3
import json
for email_addresses in sys.argv[1:]:
try:
global email
@heywoodlh
heywoodlh / blueteam-harden-ubuntu.sh
Last active March 5, 2018 18:59
Run Blue Team Hardening Scripts
git clone https://github.com/heywoodlh/blue-team
cd blue-team
for script in hardening/*.sh
do
for ((i=0; i<=3; i++)); do
echo "Running $script"
echo ""
echo ""