Username: 
Password: 
Restrict session to IP 
Questions  |  score: 5  |  6.96 9.15 8.54 |  Solved By 162 People  |  125903 views  |  since Apr 29, 2011 - 21:49:44

Preg Evasion (Exploit, PHP)

GeSHi`ed php code for preg_evasion
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
110
<?php
chdir('../../../');
define('GWF_PAGE_TITLE', 'Preg Evasion');
require_once('challenge/html_head.php');
require_once GWF_CORE_PATH.'module/WeChall/solutionbox.php';if (false === ($chall = WC_Challenge::getByTitle(GWF_PAGE_TITLE))) {
        $chall = WC_Challenge::dummyChallenge(GWF_PAGE_TITLE, 4, 'challenge/noother/preg_evasion/index.php', false);
}
$chall->showHeader();
# -------------------------- # 
# Your Hacky CSRF protected form (It is just for preventing csrf Oo)
final class NootherForm { public function validate_text($m,$v) { return false; } }
$validator = new NootherForm();
$form = the_form($chall, $validator); 
# Your sourcecode
if (isset($_GET['source']))
{
        $code = file_get_contents('challenge/noother/preg_evasion/index.php');        echo GWF_Message::display('[code lang=php title=preg_evasion]'.$code.'');
}
 
# Your trigger
if (isset($_POST['hackit']) && isset($_POST['text']) && is_string($_POST['text'])){
        if (false !== ($error = $form->validate(Module_WeChall::instance()))) {
                echo $error;
        }
        else        {
                # Let's examine your POST
                $text = $_POST['text'];
 
                # Not Evil?                if (the_preg_match($chall, $text))
                {
                        #But Evil?
                        if (the_strpos($chall, $text))
                        {                                # Try to get here!
                                $chall->onChallengeSolved(GWF_Session::getUserID());
                        }
                }
        }}
 
# Your mission
$href_src = 'sourcecode.php';
$href_src2 = 'index.php?source=show';echo GWF_Box::box($chall->lang('info', array($href_src, $href_src2)), $chall->lang('title'));
 
# Your form
display_the_form($chall, $form);
 # Your footer
echo $chall->copyrightFooter();
require_once('challenge/html_foot.php');
 
 # Owning it ... priceless
 
############################
### Now here is the code ###
############################/**
 * We don't like the text "evilfunction" and "badmethod".
 */
function the_preg_match(WC_Challenge $chall, $text)
{        if (1 === preg_match('#^.*((?:badmethod)|(?:evilfunction)).*$#s', $text, $matches)) {
                echo GWF_HTML::error($chall->lang('title'), $chall->lang('evil', array($matches[1])));
                return false;
        }
        else {                echo GWF_HTML::message($chall->lang('title'), $chall->lang('lovely'));
                return true;
        }
        
} 
/**
 * However if you pass the method above, we want to have "evilfunction" and "badmethod".
 * Paradox?
 */function the_strpos(WC_Challenge $chall, $text)
{
        return strpos($text, 'badmethod') !== false && strpos($text, 'evilfunction') !== false; 
}
 /*
 * A very simple GWF/WC form... prevents csrf Oo...
 */
function the_form(WC_Challenge $chall, $validator)
{        $data = array(
                'div' => array(GWF_Form::HEADLINE, '', $chall->lang('noote')),
                'text' => array(GWF_Form::STRING, '', $chall->lang('th_text')),
                'hackit' => array(GWF_Form::SUBMIT, $chall->lang('btn_hackit')),
        );        return new GWF_Form($validator, $data);
}
 
function display_the_form(WC_Challenge $chall, GWF_Form $form)
{        echo $form->templateY($chall->lang('ft_the_form'));
}
?>
 
 
Preg Evasion
Your mission is to trick the preg_match() function.
Again you may view the sourcecode, also as highlighted version.

Good luck!
Your form
Please send us some text for our personal data collection about you.
Your text
© 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 and 2024 by noother