Skip to content

Instantly share code, notes, and snippets.

@coldfusion39
coldfusion39 / backdoor.ino
Last active May 19, 2017 05:55
Teensy code for backdooring USB devices
// Copyright (c) 2017, Brandan Geise [coldfusion]
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
@coldfusion39
coldfusion39 / woodo
Created July 3, 2015 02:46
Sudowoodo
if [ $EUID != 0 ]; then
echo "It's a weird tree."
else
echo ' _ __'
echo ' / `\ (~._ ./ )'
echo ' \__/ __`-_\__/ ./'
echo ' _ \ \/ \ \ |_ __'
echo ' ( ) \__/ -^ \ / \'
echo ' \_/ " \ | o o |.. / __'
echo " \\. --' ==== / || / \\ "
@coldfusion39
coldfusion39 / Inject-Macro.ps1
Created October 4, 2015 14:36
Injects a VBA macro into .xls Excel documents
<#
.SYNOPSIS
Inject VBA macro code into an Excel document.
Author: coldfusion
License: BSD 3-Clause
Required Dependencies: None
Optional Dependencies: None
.DESCRIPTION

Keybase proof

I hereby claim:

  • I am coldfusion39 on github.
  • I am coldfusion (https://keybase.io/coldfusion) on keybase.
  • I have a public key whose fingerprint is C8FC 13D1 14FA F3F4 E094 2E54 F177 C9A1 5B3D 3C2E

To claim this, I am signing this object:

@coldfusion39
coldfusion39 / fierce.pl
Created December 20, 2015 03:57
Working version of Fierce
#!/usr/bin/perl
#########################################
# Fierce v0.9.9 - Beta 03/24/2007
# By RSnake http://ha.ckers.org/fierce/
# Threading and additions by IceShaman
#########################################
use strict;
use Net::hostent;
@coldfusion39
coldfusion39 / hosts.txt
Created December 20, 2015 03:59
Fierce wordlist small
*.b
*.blog
*.blogs
*.dev
*.mail
*.red
*.s
*.search
*.staging
0
@coldfusion39
coldfusion39 / nessus_2_db.py
Last active February 15, 2023 12:52
Import Nessus results into a Postgresql database
#!/usr/bin/env python
# Copyright (c) 2017, Brandan Geise [coldfusion]
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
@coldfusion39
coldfusion39 / ProxyTest.ps1
Created April 8, 2016 13:11
Test Windows proxy
#No Proxy
function NoProxy {
Param($URL);
$WC = New-Object Net.WebClient
$WC.DownloadString($URL)
}
#Proxy 1
function Proxy1 {
Param($URL);
@coldfusion39
coldfusion39 / deskey_to_ntlm.py
Last active April 17, 2019 13:45
Retrieve the NTLM from a captured NetNTLMv1 session
#!/usr/bin/env python
# Copyright (c) 2017, Brandan Geise [coldfusion]
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
@coldfusion39
coldfusion39 / netBIOS-sort.py
Last active June 5, 2019 16:33
Sort and unique Responder hashes
#!/usr/bin/env python
# Copyright (c) 2017, Brandan Geise [coldfusion]
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#