Skip to content

Instantly share code, notes, and snippets.

Verifying that "eugeneroux.id" is my Blockstack ID. https://onename.com/eugeneroux
@jabofh
jabofh / zipcrack.py
Created September 3, 2017 17:17
Crack Zip File Passwords
#!/usr/bin/python
#import the required modules
import optparse
import zipfile
from time import time
#parse arguments
parser = optparse.OptionParser()
parser.add_option('-f', '--file', action="store", dest="file_path", help="Zip File Path", default=None)

Keybase proof

I hereby claim:

  • I am jabofh on github.
  • I am eroux (https://keybase.io/eroux) on keybase.
  • I have a public key ASC5UB4Bb1CLXILlowGXshouWRWbXVa26fR47vASECpavQo

To claim this, I am signing this object:

@jabofh
jabofh / mailer.py
Last active March 31, 2021 21:25
Python wrapper around mail to allow easy attachments
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Python 3.2+ Script to send the contents of a file (or files) as a MIME message.
"""
import os, sys, pwd
import textwrap
import smtplib
@jabofh
jabofh / aws-ssm-ec2-proxy-command.sh
Last active March 22, 2023 12:56 — forked from zmingxie/aws-ssm-ec2-proxy-command.sh
AWS SSM SSH Proxy Command
#!/usr/bin/env sh
######## Usage #################################################################
#
# #1 Install the AWS CLI
# https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-install.html
#
# #2 Install the Session Manager Plugin for the AWS CLI
# https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager-working-with-install-plugin.html
#
@jabofh
jabofh / tp2md.pl
Last active March 15, 2024 19:57
Convert TaskPaper formatted File or Input to Markdown on Standard Output
#!/usr/bin/env perl -T
use strict;
use warnings;
use Getopt::Std;
my $VERSION = "0.0.5";
$Getopt::Std::STANDARD_HELP_VERSION = 1;
#===============================================================================