Skip to content

Instantly share code, notes, and snippets.

View laudarch's full-sized avatar
💭
focused mode activated

laudarch laudarch

💭
focused mode activated
View GitHub Profile
# Get-BitLockerRecovery.ps1
# Written by Bill Stewart (bstewart@iname.com)
<#
.SYNOPSIS
Gets BitLocker recovery information for one or more Active Directory computer objects.
.DESCRIPTION
Gets BitLocker recovery information for one or more Active Directory computer objects.
@jkeefe
jkeefe / raspberry-pi-ble-sniffer.md
Last active September 16, 2023 14:33
Notes on using Adafruit's "Bluefruit" BLE sniffer with a Raspberry Pi

BLUETOOTH SNIFFER

Working to sniff Bluetooth Low Energy with the adafruit sniffer

For more information, see this blog post

Going the python route, as described here

before installing pySerial, did ...

@afresh1
afresh1 / setup_images.sh
Created July 23, 2013 02:30
Scripts to setup OpenBSD flashrd images and start qemu instances for each of them.
#!/bin/sh
# Andrew Fresh <andrew AT afresh1.com> - https://gist.github.com/afresh1
# This uses qemu, so pkg_add qemu
# Download and extract flashrd, either from github or here:
# http://www.nmedia.net/flashrd/
# Grab a flashrd image from here:
# http://www.nmedia.net/flashrd/images/
@DeviaVir
DeviaVir / authy.lib.php
Created September 6, 2012 03:47
An extremely simple authy PHP implementation
<?PHP
Class Authy {
// API key
private static $api_key = '';
// Production
// private static $api_url = 'https://api.authy.com/protected/json/';
// Sandbox
private static $api_url = 'http://sandbox-api.authy.com/protected/json/';