Skip to content

Instantly share code, notes, and snippets.

@geek-at
geek-at / easybank.class.php
Created April 3, 2018 19:33
php wrapper for read only access to easybank.at
<?php
/*
* EasyBank.at client lib
* Reverse engineered by looking at the API calls of the app
*
* Example usage:
*
* <?php
* include_once('easybank.class.php');

Nvidia GTX 1080 Ti Hashcat Benchmarks

Software: Hashcat v3.40-49-g20057d8, Nvidia driver 378.13

Accelerator: 1x Nvidia GTX 1080 Ti FE

Highlights

  1. This card is clock-for-clock identical to the Titan X Pascal, so the numbers should not be new or surprising to anyone.

Index

Preface

Together with HellMood we won this year's (2016) JS1K competition and thought this might be a good opportunity to write about the development process and my motivation behind it. If you're already familiar with JS1K, feel free to skip the next two paragraphs.

@fire
fire / gist:c0fa189c55322e062a23
Last active March 7, 2018 21:38
Install Elementary Loki on ZFS root
# Experimental 2016-01-10
DOES NOT WORK YET.
sudo -i
apt-get update
apt-get install --yes debootstrap zfsutils-linux zfs-initramfs zfs-dkms
modprobe zfs
# setup zfs
@ryrun
ryrun / SFZ2XRNI.lua
Last active February 25, 2023 10:29
Simple converter for renoise 3.1 to convert sfz files to xrni
files = renoise.app():prompt_for_multiple_filenames_to_read({"*.sfz"},"SFZ files to convert")
--check for files
if table.getn(files)>0 then
for key,value in pairs(files) do
outputfile = value:match("^(.*)\.[sS][fF][zZ]+$")
renoise.app():load_instrument_multi_sample(value)
renoise.app():save_instrument(outputfile)
end
renoise.app():show_message(table.getn(files) .. " instruments converted.")
else
@sh1n0b1
sh1n0b1 / linuxprivchecker.py
Created July 13, 2015 23:36
linuxprivchecker.py -- a Linux Privilege Escalation Check Script
#!/usr/env python
###############################################################################################################
## [Title]: linuxprivchecker.py -- a Linux Privilege Escalation Check Script
## [Author]: Mike Czumak (T_v3rn1x) -- @SecuritySift
##-------------------------------------------------------------------------------------------------------------
## [Details]:
## This script is intended to be executed locally on a Linux box to enumerate basic system info and
## search for common privilege escalation vectors such as world writable files, misconfigurations, clear-text
## passwords and applicable exploits.
@hubgit
hubgit / README.md
Last active May 2, 2024 10:55
Remove metadata from a PDF file, using exiftool and qpdf. Note that embedded objects may still contain metadata.

Anonymising PDFs

PDF metadata

Metadata in PDF files can be stored in at least two places:

  • the Info Dictionary, a limited set of key/value pairs
  • XMP packets, which contain RDF statements expressed as XML

PDF files