CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/exploits/CVE-2010-0840/vuln/Test.java
Views: 11783
1
package vuln;
2
3
/*
4
* This is just a placeholder class. Link implements this so it can be
5
* replaced after compilation with Map.Entry since a normal compiler will not
6
* allow creating a class that implements an interface through inheritance.
7
*
8
* See Sami Koivu's original blog post for details.
9
*/
10
public interface Test {
11
12
public Object getValue() throws Exception;
13
14
}
15
16