Skip to content

Instantly share code, notes, and snippets.

@orangetw
Created October 19, 2015 07:17
Show Gist options
  • Save orangetw/cb3487e47d7aaaea4692 to your computer and use it in GitHub Desktop.
Save orangetw/cb3487e47d7aaaea4692 to your computer and use it in GitHub Desktop.
HITCON CTF 2015 Quals Babyfirst
<?php
highlight_file(__FILE__);
$dir = 'sandbox/' . $_SERVER['REMOTE_ADDR'];
if ( !file_exists($dir) )
mkdir($dir);
chdir($dir);
$args = $_GET['args'];
for ( $i=0; $i<count($args); $i++ ){
if ( !preg_match('/^\w+$/', $args[$i]) )
exit();
}
exec("/bin/orange " . implode(" ", $args));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment