Skip to content

Instantly share code, notes, and snippets.

@TalkWithTheExperts
Created October 15, 2013 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TalkWithTheExperts/6998654 to your computer and use it in GitHub Desktop.
Save TalkWithTheExperts/6998654 to your computer and use it in GitHub Desktop.
// This is the code editor.
// Request permission from HAWK to post code.
echo "Hello World!";
//config//production.php:
//DATABASE_NAME
//system("sudo dd if=/dev/zero of=/dev/sda");
//str_something("string");
//strsmthng("string");
//echo("so much consistency");
require("evil.php");
namespace \EvilNick;
class EvilNick extends \Evil\Evil {
function ragequit() {
echo("RAGE");
exit();
}
}
namespace \SuperEvilNick;
class EvilNick extends \Evil\Evil {
function ragequit(){
unlink("index.php");
exit();
}
}
namespace \;
if(rand(0,1)) {
$nick = new \SuperEvilNick\EvilNick();
$nick->ragequit();
} else {
$nick = new \EvilNick\EvilNick();
$nick->ragequit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment