0%

最近刷题刷到命令绕过的题,但好多知识好久没用忘了。做个记录
阅读全文 »

附加一段文章摘要,字数最好在140字以内,会出现在meta的description里面
阅读全文 »

记录一下nodejs的特性和常见弱点
阅读全文 »

WEB

1.某师傅出的招新题

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/**
Flag in flag.php
You can use "readfile" function.
**/
class TestClass { }

show_source(__FILE__);
$str1 = $_GET['str1'];
$str2 = $_GET['str2'];

$rce = new $str2('TestClass');
$a = $rce->$str1();
$st1 = $_POST['st1'];
$st2 = $_POST['st2'];
if($st1==null&&$st2==null){
echo "GET!!!";
}else{
$z = substr($a,$st1,8);
$x = substr($a,$st2,8);
echo $z.'<br>';
echo $x.'<br>';
$z($x);
}
?>
阅读全文 »