You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package exploitpack;
import java.awt.Desktop;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.JOptionPane;
/**
*
* @author jsacco
*/
public class ExploitPack {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Path path = Paths.get("./exploits/");
if (System.getProperty("java.version").startsWith("1.8")) {
if (Files.exists(path)) {
SplashScreen.main(null);
} else {
JOptionPane.showMessageDialog(null, "Sorry. Could not found Exploit Folder\nTry from console: \"java -jar ExploitPack.jar\"", "Exploit Pack says:", JOptionPane.ERROR_MESSAGE);