Username: 
Password: 
Restrict session to IP 
Questions  |  score: 7  |  5.68 7.39 7.39 |  Solved By 295 People  |  906427 views  |  since Mar 25, 2009 - 19:36:45

Screwed Signup (Exploit)

GeSHi`ed php code for screwed_signup.include
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
115
<?php
require_once 'ssqlSolved.php'; # Contains the solution message and cleans up the db. Only called upon successful exploitation.
 
/**
 * The whole stuff could be multi-lang too, but it`s maybe better with only english, as you can spot codepoints more easily. * As always: "Code you see is code in use" :) 
 * --- zip ---
*/
function screwed_signupCreateUserTable()
{        $db = gdo_db();
        
        # Create user table
        $query =
                "CREATE TABLE IF NOT EXISTS `chall_sql1` ".                "(".
                "`username` VARCHAR(24) NOT NULL, ".
                "`password` VARCHAR(32) NOT NULL, ".
                "`access_level` INT(10) UNSIGNED NOT NULL DEFAULT 0".
                ")";        $db->queryWrite($query);
 
        # Create super user
        $password = strtoupper(md5('xxxxxxxxxxxxxxxxxx')); # I blanked this out
        $query =                 "INSERT INTO `chall_sql1` ".
                "VALUES ( ".
                "'Admin', '$password', 1337".
                ") ";
        $db->queryWrite($query);}
 
function screwed_signupLogin()
{
        $username = Common::getPostString('username');        $password = strtoupper(md5(Common::getPostString('password')));
 
        if (!screwed_signupUserExists($username)) {
                return htmlDisplayError('User does not exist');
        } 
        if (!screwed_signupPasswordMatch($username, $password)) {
                return htmlDisplayError('Login failed');
        }
         $user = screwed_signupGetUser($username);
        $level = intval($user['access_level']);
        $username = $user['username'];
        htmlDisplayMessage('Hello '.htmlspecialchars($username, ENT_QUOTES).'. You would be logged in with an access_level of '.$level);
        if ($level > 0) {                screwed_signupOnChallengeSolved($username, $password);
        } else {
                htmlDisplayMessage('Logged you out again.');
        }
} 
function screwed_signupUserExists($username)
{
        $db = gdo_db();
        $username = $db->escape($username);        $query = "SELECT 1 FROM `chall_sql1` WHERE `username`='$username'";
        return $db->queryFirst($query) !== false;
}
 
function screwed_signupPasswordMatch($username, $password){
        $db = gdo_db();
        $username = $db->escape($username);
        $query = "SELECT 1 FROM `chall_sql1` WHERE `username`='$username' AND `password`='$password'";
        return $db->queryFirst($query) !== false;}
 
function screwed_signupGetUser($username)
{
        $db = gdo_db();        $username = $db->escape($username);
        $query = "SELECT * FROM `chall_sql1` WHERE `username`='$username'";
        return $db->queryFirst($query);
}
 function screwed_signupIsValidUsername($username)
{
        return preg_match('/^[a-z0-9A-Z ]{3,64}$/D', $username) === 1;
}
 function screwed_signupRegister()
{
        $db = gdo_db();
 
        $uname = trim(Common::getPostString('username')); # trim usernames        if ('' === ($pw = Common::getPostString('password', ''))) { # empty pass, allow pass with spaces and all characters
                return htmlDisplayError('Please choose a rather strong password.');
        }
        elseif (strlen($pw) < 3) { # force secure password
                return htmlDisplayError('Please choose a rather strong password.');        }
        elseif (!screwed_signupIsValidUsername($uname)) { # match the username to be valid
                return htmlDisplayError('Please choose a valid username');
        }
        if (screwed_signupUserExists($uname)) {                return htmlDisplayError('Username already taken');
        }
 
        # put into db
        $uname = $db->escape($uname); # we preg_match the usernames too        $pw = strtoupper(md5($pw)); # no escape needed, uppercase is cool
        $query = "INSERT IGNORE INTO `chall_sql1` VALUES ('$uname', '$pw', 0)";
        $db->queryWrite($query);
 
        htmlDisplayMessage('You have been registered successfully.');        echo '<div><a href="login.php">Go to Login</a></div>';
}
 
?>
 
Your mission
... is to login as Admin.
You are given the source of login and register scripts, also as highlighted version.
Not needed are the login.php and register.php scripts.
© 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 and 2024 by Gizmore