eb4611642d
CVE-2015-8103
10 lines
239 B
Java
Executable File
10 lines
239 B
Java
Executable File
package ysoserial.payloads;
|
|
|
|
public interface ObjectPayload<T> {
|
|
/*
|
|
* return armed payload object to be serialized that will execute specified
|
|
* command on deserialization
|
|
*/
|
|
public T getObject(String command) throws Exception;
|
|
}
|