Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am mgeorgy on github.
  • I am mgeorgy (https://keybase.io/mgeorgy) on keybase.
  • I have a public key ASA8Xz4d2hEvICXGnkEiMQ-kovL58s_EEg1mx7R3-o_izwo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am mgeorgy on github.
  • I am mgeorgy (https://keybase.io/mgeorgy) on keybase.
  • I have a public key whose fingerprint is C975 A9F1 AD54 486C 51F1 663A 80D5 1A32 B16C 95F8

To claim this, I am signing this object:

@mgeorgy
mgeorgy / Dockerfile
Created November 29, 2016 07:01
CyberChef Docker Container
############################################################
# Dockerfile to create a CyberChef Container
# Based on Ubuntu 16.04, Node.js 7.x
#
# Clean build: docker build --no-cache=true --tag=cyberchef:<version> .
# Incremental build: docker build --tag=cyberchef:<version> .
# Run container: docker run -d -p 127.0.0.1:8080:80 --name cyberchef -t cyberchef:<version>
# example: docker run -d -p 127.0.0.1:8080:80 --name cyberchef -t cyberchef:1.0
############################################################
@mgeorgy
mgeorgy / menu_launcher.py
Created September 22, 2015 23:10 — forked from abishur/menu_launcher.py
A simple menu system using python for the Terminal (Framebufer)
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Topmenu and the submenus are based of the example found at this location http://blog.skeltonnetworks.com/2010/03/python-curses-custom-menu/
# The rest of the work was done by Matthew Bennett and he requests you keep these two mentions when you reuse the code :-)
# Basic code refactoring by Andrew Scheller
from time import sleep
import curses, os #curses is the interface for capturing key presses on the menu, os launches the files
screen = curses.initscr() #initializes a new window for capturing key presses
curses.noecho() # Disables automatic echoing of key presses (prevents program from input each key twice)