LoRexxar / Kunlun-M

KunLun-M是一个完全开源的静态白盒扫描工具,支持PHP、JavaScript的语义扫描,基础安全、组件安全扫描,Chrome Ext\Solidity的基础扫描。
MIT License
2.21k stars 309 forks source link

扫描问题:请问这个样例为什么扫不出来呀 #231

Open onlywant opened 1 year ago

onlywant commented 1 year ago

Description

<?php 

$html = '';
if(isset($_GET['submit']) && $_GET['message'] != null){
    $message= $_GET['message'];

    if($message == 'yes'){
        $html.="<p>那就去人民广场一个人坐一会儿吧!</p>";
    }else{  
        $html = "<p>别说这些'{$message}'的话,不要怕,就是干!</p>";
        echo $html;
    }

}
?>
LoRexxar commented 1 year ago

可能是模板语法支持的有问题,我回头看看