Skip to content

Instantly share code, notes, and snippets.

View ChristianBagley's full-sized avatar

Christian Bagley ChristianBagley

View GitHub Profile
@ChristianBagley
ChristianBagley / cloudy-gamer-launcher.sh
Created June 20, 2017 15:46 — forked from lg/cloudy-gamer-launcher.sh
Easily start/stop Paperspace and Parsec instances
#!/bin/bash
#
# CloudyGamerLauncher by Larry Gadea
# Easily start/stop Paperspace and Parsec instances
#
# Make sure to fill out the variables below. For the machine name, use the
# 8-letter identifier for the machine on Paperspace (ex. PS8RGDUY)
PAPERSPACE_EMAIL=''
PAPERSPACE_PASSWORD=''
@ChristianBagley
ChristianBagley / tempCon.py
Created September 18, 2017 22:11 — forked from enile8/tempCon.py
Python temp conversion
####################################################################
#Python program to convert temperature from either Fahrenheit to #
#Celsius or vise-versa. This is a very simple function example. #
# #
####################################################################
def convert(temp, unit):
unit = unit.lower()
if unit == "c":
from itertools import permutations
def nextBiggest():
inputNumber = str(input('Enter number: '))
for i in sorted(permutations(str(inputNumber))):
nextNumber = int(''.join(i))
if nextNumber > int(inputNumber):
print(nextNumber)
@ChristianBagley
ChristianBagley / pwnd.md
Created October 31, 2017 02:50 — forked from MattKetmo/pwnd.md
pwnd

Tools

  • Metaspoit: Penetration testing software
  • BeEF: The Browser Exploitation Framework
  • PTF: Penetration Testers Framework
  • Bettercap: MITM framework
  • Nessus: Vulnerability scanner
  • AutoNessus: Auto Nessus
  • BDFProxy: Patch Binaries via MITM (BackdoorFactory)
  • Xplico: Network Forensic Analysis Tool (eg. parse pcap file)