Skip to content

Instantly share code, notes, and snippets.

@leesoh
leesoh / HttpEvidenceGenerator.py
Created May 28, 2020 00:19 — forked from jrmdev/HttpEvidenceGenerator.py
Burp Proxy plugin to generate ready to paste text-based evidence for HTTP requests and responses.
##
## Evidence Generator Evidence Generator - Burp Extension
##
## Download Jython and configure it in the Extender options:
## http://search.maven.org/remotecontent?filepath=org/python/jython-standalone/2.5.4-rc1/jython-standalone-2.5.4-rc1.jar
##
## Right click on any request from different Burp Suite tools and send to the extension
##
from burp import IBurpExtender, ITab, IContextMenuFactory
using System;
using System.Text;
using System.Text.RegularExpressions;
using System.Management.Automation.Runspaces;
using System.Runtime.InteropServices;
using System.Net;
using RGiesecke.DllExport;
namespace Export
{
/*
* SharpPick aka InexorablePoSH
* Description: Application to load and run powershell code via the .NET assemblies
* License: 3-Clause BSD License. See Veil PowerTools Project
*
* This application is part of Veil PowerTools, a collection of offensive PowerShell
* capabilities. Hope they help!
*
* This is part of a sub-repo of PowerPick, a toolkit used to run PowerShell code without the use of Powershell.exe
*/
/*
* SharpPick aka InexorablePoSH
* Description: Application to load and run powershell code via the .NET assemblies
* License: 3-Clause BSD License. See Veil PowerTools Project
*
* This application is part of Veil PowerTools, a collection of offensive PowerShell
* capabilities. Hope they help!
*
* This is part of a sub-repo of PowerPick, a toolkit used to run PowerShell code without the use of Powershell.exe
*/
/*
* SharpPick aka InexorablePoSH
* Description: Application to load and run powershell code via the .NET assemblies
* License: 3-Clause BSD License. See Veil PowerTools Project
*
* This application is part of Veil PowerTools, a collection of offensive PowerShell
* capabilities. Hope they help!
*
* This is part of a sub-repo of PowerPick, a toolkit used to run PowerShell code without the use of Powershell.exe
*/
@leesoh
leesoh / Inject.cs
Created October 3, 2018 22:07
DotNetToJScript Build Walkthrough
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
using System.Text;
public class TestClass
{
public TestClass()
{}
@leesoh
leesoh / example.cs
Created August 8, 2018 18:39
Loads .NET Assembly into script host from current path
using System;
using System.EnterpriseServices;
using System.Runtime.InteropServices;
/*
Author: Casey Smith, Twitter: @subTee
License: BSD 3-Clause
@leesoh
leesoh / katz.cs
Created July 31, 2018 23:33
Updated Katz.cs - Latest Mimikatz, I mean honestly it is 2018...
This file has been truncated, but you can view the full file.
using System;
using System.IO;
using System.Text;
using System.IO.Compression;
using System.EnterpriseServices;
using System.Collections.Generic;
using System.Runtime.InteropServices;
using System.Security.Cryptography;
/*
@leesoh
leesoh / Netlify
Created July 25, 2017 20:55 — forked from vysecurity/Netlify
Netlify
admin.graph.cool
admin.inkl.com
admin.thecirqle.com
api.asset.tv
app.billyapp.com
app.billy.dk
app.billysbilling.com
app.crewmeister.com
app.nuclino.com
app.oktoplus.com.br
@leesoh
leesoh / vs-code-empire-snippet.json
Created September 20, 2016 01:18
Visual Studio Code snippet for an Empire module
"Empire module": {
"prefix": "emp",
"description": "Skeleton for an Empire module",
"body": [
"from lib.common import helpers",
"",
"",
"class Module:",
"",
" def __init__(self, mainMenu, params=[]):",