Skip to content

Instantly share code, notes, and snippets.

View xDaevax's full-sized avatar
🎯
Focusing

David Kyle xDaevax

🎯
Focusing
View GitHub Profile
@spences10
spences10 / description.md
Created February 26, 2017 11:08
VBA project password crack

VBA Project Password Crack

SO link

SO answer

Paste the two modules into and empty solution with the workbook you want to crack then run the code in module2

@aliostad
aliostad / BinaryMediaTypeFormatter
Created April 28, 2012 15:17
An ASP.NET Web API media type formatter for application/octet-stream
public class BinaryMediaTypeFormatter : MediaTypeFormatter
{
private static Type _supportedType = typeof (byte[]);
private bool _isAsync = false;
public BinaryMediaTypeFormatter() : this(false)
{
}