Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Top Posters

Who's Online (2)

Powered by Vanilla. Made with Bootstrap.
iExploit Web Hacking Challenge Framework Alpha 0.1
  • Xin
    Posts: 3,251
    I managed to get a working system up yesterday but it was insecure as hell with SQLi and cookie manipulation, so im gonna go for a big project with it so help where you can guys.

    Thanks to Google for help with login scripts
    W3Schools for the PHP info
    HaxMS for the structure

    Config.php
    <?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\", \"&copy 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;

    ?>


    Index.php
    <?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>
    Xin
  • I could probably help a bit with the missions. I've had a bit of experience coding the missions on Poison.
  • Xin
    Posts: 3,251
    Its not the missions we have a problem with really its the points system, me and semtex have decided were just gonna reload Wordpress and use the old scripts until we get a good solution
    Xin
  • said:


    Its not the missions we have a problem with really its the points system, me and semtex have decided were just gonna reload Wordpress and use the old scripts until we get a good solution



    Are you using an SQL database for the points system?
  • Sh3llc0d3
    Posts: 1,910
    said:


    said:


    Its not the missions we have a problem with really its the points system, me and semtex have decided were just gonna reload Wordpress and use the old scripts until we get a good solution



    Are you using an SQL database for the points system?


    Hopefully when the new one is sorted it will be using a sql database, not sure about the wordpress original one though.
  • Xin
    Posts: 3,251
    Thread outdated/old . Closed
    Xin
This discussion has been closed.
All Discussions