static void Main() { VulnReportHelpers.setBaseDirBasedOnExecutionEnvironment(); VulnReportHelpers.confirmExistenceOfRequiredFilesAndFolders(); VulnReportHelpers.loadCustomORGdata(); bool bByPassSplashPage = false; // Set this to true to bypass the Splash page (useful when in development mode) frmSplashPage sp = new frmSplashPage(bByPassSplashPage); if (bByPassSplashPage || (sp.ShowDialog() == DialogResult.OK)) { OrgBasePaths obp = OrgBasePaths.GetPaths(); obp.initiatePaths(); Application.Run(new PenTest_Reporter()); } }