old-28 -- .htaccess
URL: http://webhacking.kr:10002

I first tried to upload basic php script:
<?php echo phpinfo(); ?>
But after upload file became:
?php echo phpinfo(); ?>

The server is Apache, so we can upload .htaccess
file and disable PHP rendering to read the flag.php
php_flag engine off

<?php
$flag="FLAG{easy_peasy_apachy}";
?>
Last updated