Skip to content

Instantly share code, notes, and snippets.

@antonioherraizs
antonioherraizs / deception.php
Last active August 30, 2017 08:59 — forked from koto/1.php
<?php
// and this is how you handle this
function t($code) {
echo "."; // just to detect how many inceptions there were
$code = base64_decode($code);
$code = gzinflate($code);
$m = array();
if (preg_match('/base64_decode\(\"(.+)\"\)/', $code, $m)) {
return t($m[1]);
}