It looks like you're new here. If you want to get involved, click one of these buttons!
<?php
/*
iExploit Hacking Challenge Framework 0.1a
Thanks to Google for help with login scripts
W3Schools for the PHP info
HaxMS for the structure
*/
// --> Constants
define(\"HOME\", \"http://www.iexploit.org/challenges\");
define(\"NAME\", \"iExploit\");
define(\"SLOGAN\", \"//Web Based Hacking Challenges\");
define(\"AUTHOR\", \"Xinapse\");
define(\"COPYRIGHT\", \"© iExploit.org\");
define(\"KEYWORDS\", \"iExploit, Hacking challenges, wargames, hacking game, web application security, hack me, iexploit hacking\");
define(\"DESCRIPTION\", \"Hacking and Security challenges aimed to help improve your knowledge\");
define(\"VERSION\", \"0.1A\");
define(\"LOGOUT\", \"http://www.iexploit.org/challenges/logout.php\");
// --> IPBv3 DB Information <--$host = 'localhost';
$db = 'dbname';
$usr = 'username';
$pwd = 'password';
$go = mysql_connect($host,$usr,$pwd);
$sel = mysql_select_db($db,$go);
return $go;
?>
<?php
session_start();
include('interface/lockdown.php');
include('config.php');
include('inc/islogin.php');
require_once(\"interface/template.php\");
fetchtemplate();
?>
<!--- Main Box =-->
<div>Latest iExploit News</div>
<div>
<br />
<?php
if ($islogin != 'true') {
guestnews();
}
elseif ($islogin == 'true') {
ienews();
}
?><br />
</div>
</div><!--- End Main Box =-->
<!--- Begin Footer =-->
<?php
footer();
?>
<!--- End Footer =-->
<!--- End Body =-->
</body>
</html>