1 2 3 4 56 7 8 9 1011 12 13 14 1516 17 18 19 2021 22 23 24 2526 27 28 29 3031 32 33 34 3536 37 38 39 4041 42 43 44 4546 47 48 49 5051 52 53 54 5556 57 58 59 6061 62 63 64 6566 67 68 69 7071 72 73 74 7576 77 78 79 8081 82 83 84 8586 87 88 89 9091 92 93 94 9596 97 98 99 100101 102 103 104 105106 107 108 109 110111 112 113 114 115116 117 118 119 120121 122 123 124 125126 127 128 129 130131 132 133 134 135136 137 138 139 140141 142 143 144 145146 147 148 149 150151 152 | <?php /** * noothworx proudly presents a secure shop for domain selling! */ # Disable output bufferingif (ob_get_level() > 0) ob_end_clean(); apache_setenv('no-gzip', 1); ini_set('zlib.output_compression', 0); # The core and initchdir('../../../'); $_GET['mo'] = 'WeChall'; $_GET['me'] = 'Challenge'; $cwd = getcwd(); require_once 'protected/config.php';require_once '../gwf3.class.php'; $gwf = new GWF3($cwd, array( 'website_init' => true, 'autoload_modules' => true, 'load_module' => true, 'get_user' => true, 'do_logging' => true, 'blocking' => false, 'no_session' => false, 'store_last_url' => true, 'ignore_user_abort' => false, )); # Need noothtable! require_once 'challenge/noother/stop_us/noothtable.php'; # Get challenge define('GWF_PAGE_TITLE', 'Stop us'); if (false === ($chall = WC_Challenge::getByTitle(GWF_PAGE_TITLE))) { $chall = WC_Challenge::dummyChallenge(GWF_PAGE_TITLE, 3, 'challenge/noother/stop_us/index.php', false); } $price = 10.00; # Price for a domain. $user = GWF_User::getStaticOrGuest();$sid = GWF_Session::getSession()->getID(); noothtable::initNoothworks($sid); # init domain stuff. ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>[WeChall] noother-Domain.com</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Language" content="en" /> <meta name="robots" content="index, follow" /> <meta name="keywords" content="wechall, challenge, stopus, stop us, stop_us" /> <meta name="description" content="noother-domain.com is a fictional service selling .xyz domains. It is a hacking challenge on wechall." /> <link rel="shortcut icon" href="/favicon.ico" /> <link rel="stylesheet" type="text/css" href="/tpl/default/css/gwf3.css?v=9" /> <link rel="stylesheet" type="text/css" href="/tpl/wc4/css/wechall4.css?v=9a" /> </head> <body> <h1><a href="nootherdomain.php">noother-domains.com</a> (powered by <a href="/challenge/noother/stop_us/index.php">WeChall</a>)</h1> <?php if (Common::getGetString('load') === 'balance') { if (noother_timeout($sid) === false) { nooth_message('Checking your credit card ...'); nooth_message('Uploading $10.00 ...'); # +10 money and +1 funding noothtable::increaseMoney($sid, 10); nooth_message(sprintf('Your account balance is now $%.02f.<br/>Thank you for using noother-domains.com!', noothtable::getMoney($sid))); } } if (Common::getGetString('purchase') === 'domain'){ if (noother_timeout($sid) === false) { nooth_message('Checking your balance ...'); nooth_message(sprintf('Your balance is $%.02f ...', noothtable::getMoney($sid))); if (noothtable::getMoney($sid) >= $price) { nooth_message('Balance ok!'); # TODO: Do checks more checks! nooth_message('Checking availability of your domain ...'); nooth_message('Domain is available ...'); # +1 domain if (false === noothtable::purchaseDomain($sid)) { die('Hacking attempt!'); } nooth_message('Purchasing ...'); nooth_message('Domain purchased.'); # -$10.00 nooth_message('Reducing your balance ...'); noothtable::reduceMoney($sid, $price); nooth_message('Thank you for your purchase!'); # Done! nooth_message('Purchased!'); # Something weird? Oo if (noothtable::getFundings($sid) < noothtable::getDomains($sid)) { GWF_Module::loadModuleDB('Forum', true, true); # Get here, hacker! $chall->onChallengeSolved(GWF_Session::getUserID()); } nooth_message('Thank you for using noother-domains.com!'); } else { nooth_message('Insufficient funds!'); } } } # The page! ?> <div> <div>Username: <?php echo $user->displayUsername(); ?></div> <div>Balance: <?php printf('$%.02f', noothtable::getMoney($sid)); ?></div> <div>Domains: <?php echo noothtable::getDomains($sid); ?></div> <div><a href="nootherdomain.php?load=balance">Upload money</a>(<?php echo noothtable::getFundings($sid); ?>)</div> <div><a href="nootherdomain.php?purchase=domain">Purchase domain</a></div> </div> </body><?php ######################## ### Helper functions ### ######################## function noother_timeout($sid){ $wait = noothtable::checkTimeout($sid, time()); if ($wait >= 0) { nooth_message(sprintf('Please wait %s until the next transaction.', GWF_Time::humanDuration(45))); return true; } return false; } function nooth_message($message, $sleep=2) { echo sprintf('<div>%s</div>', $message).PHP_EOL; flush(); sleep($sleep);} ?> |