14 lines
265 B
PHP
14 lines
265 B
PHP
|
|
<html>
|
||
|
|
<title>asdf</title>
|
||
|
|
<?php
|
||
|
|
$flag='xxx';
|
||
|
|
extract($_GET);
|
||
|
|
if(isset($shiyan)){
|
||
|
|
$content=trim(file_get_contents($flag));
|
||
|
|
if($shiyan==$content){
|
||
|
|
echo'ctf{xxx}'; }
|
||
|
|
else{
|
||
|
|
echo'Oh.no';}
|
||
|
|
}
|
||
|
|
?>
|
||
|
|
</html>
|