We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<?php function read_file($li){ return @file_get_contents($li); } function read_file2($li){ return file_get_contents($li); } read_file(aaa($_GET['a'])); read_file2(aaa($_GET['a']));
因为敏感函数调用在return中,所以要找到漏洞函数,则需要分析当前行语句,然后解析寻找
The text was updated successfully, but these errors were encountered:
fix
Sorry, something went wrong.
No branches or pull requests
因为敏感函数调用在return中,所以要找到漏洞函数,则需要分析当前行语句,然后解析寻找
The text was updated successfully, but these errors were encountered: