Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
apps /
exim /
Delete
Unzip
Name
Size
Permission
Date
Action
3
[ DIR ]
drwxr-xr-x
2026-04-11 11:45
assets
[ DIR ]
drwxr-xr-x
2026-04-11 11:45
build
[ DIR ]
drwxr-xr-x
2026-04-11 11:45
images
[ DIR ]
drwxr-xr-x
2026-04-11 11:45
includes
[ DIR ]
drwxr-xr-x
2026-04-11 11:45
languages
[ DIR ]
drwxr-xr-x
2026-04-11 11:45
themes
[ DIR ]
drwxr-xr-x
2026-04-11 11:45
todo
[ DIR ]
drwxr-xr-x
2026-04-11 11:45
2020020100.sql
2.03
KB
-rw-r--r--
2026-04-11 11:45
autoresponder_charsets.json
2.88
KB
-rw-r--r--
2025-01-13 08:52
box_msg.json
2.43
KB
-rw-r--r--
2023-02-02 09:28
boxtrapper.php
6.23
KB
-rwxr-xr-x
2023-03-06 08:04
boxtrapper_func.php
8.22
KB
-rw-r--r--
2023-12-15 01:43
boxtrapper_url.php
2.06
KB
-rw-r--r--
2025-10-17 04:29
c7_exim-x86_64.tar.gz
1.89
MB
-rw-r--r--
2026-04-11 11:45
config.inc.php
7.65
KB
-rw-r--r--
2026-04-10 07:27
configure.php
71.76
KB
-rw-r--r--
2026-04-10 05:55
exim-x86_64.tar.gz
1.92
MB
-rw-r--r--
2026-04-11 11:45
exim.conf
44.01
KB
-rw-r--r--
2021-12-24 06:44
exim.json
2.97
KB
-rw-r--r--
2024-06-11 08:31
exim4.conf.template
76.83
KB
-rw-r--r--
2021-12-24 06:44
greylist_common_providers.json
62.76
KB
-rw-r--r--
2022-08-04 11:24
hooks.php
677.01
KB
-rw-r--r--
2026-04-10 07:33
info.xml
4.15
KB
-rw-r--r--
2026-04-10 07:27
install.php
62.1
KB
-rw-r--r--
2026-04-10 07:33
install.xml
63
B
-rw-r--r--
2025-05-08 02:51
logrotate
304
B
-rw-r--r--
2024-02-19 05:16
md5
13.23
KB
-rw-r--r--
2026-04-10 07:33
notes.txt
293
B
-rw-r--r--
2025-11-26 03:01
popb4smtp
1.75
KB
-rw-r--r--
2022-12-09 08:27
popb4smtp-clean
1.93
KB
-rw-r--r--
2022-12-09 08:27
popb4smtp-watch
3.34
KB
-rw-r--r--
2022-12-09 08:27
rbl.json
396
B
-rw-r--r--
2022-09-23 08:09
remove.php
7.95
KB
-rw-r--r--
2026-04-10 07:33
rev
4
B
-rw-r--r--
2026-04-10 07:33
roundcube.tar.gz
7.17
MB
-rw-r--r--
2026-04-11 11:45
sqlite.rcube.db
62
KB
-rw-r--r--
2023-01-12 05:14
update-exim4.conf.conf
1.01
KB
-rw-r--r--
2021-12-24 06:44
update.php
11.53
KB
-rw-r--r--
2026-04-10 07:33
Save
Rename
<?php /** * Boxtrapper PHP program URL File * * @author Julfekar Shaikh */ // Set custom header // NOTE : Never ever remove this as its checked by our Service Check script header('Server:Webuzo'); // Define SOFTACULOUS @define('SOFTACULOUS', 1); @define('EXIM_USERS_PATH', '/etc/exim/users/'); // Load Boxtrapper Functions include_once(__DIR__.'/boxtrapper_func.php'); // Get the mail and msgid from URL $msgid = $_GET['msgid']; $email = $_GET['email']; // Check if email is valid or not if(!filter_var($email, FILTER_VALIDATE_EMAIL)){ die('Invalid Email'); } // Check if we correct msgid if(!preg_match('/^[A-Za-z0-9]{7}$/', $msgid)){ die('Invalid msgid'); } // Get the user from email $user = get_user_from_email($email); // If boxtrapper is enabled on the mail if(!exim_check_boxtrapper_enabled($user, $email)){ echo "Boxtrapper is not enabled on this email. \n"; } $temail = explode('@', $email); // Connect with Queue DB $con = new SQLite3('/etc/exim/users/'.$user.'/'.$temail[1].'/boxtrapper/'.$temail[0].'/queue.db'); // Get the list of Queue ID's from the DB $results = $con->query('SELECT * FROM `queue` WHERE msgid = "'.trim($msgid).'"'); if(empty($results->fetchArray())){ // Means the authentication Key is wrong So we have to reply with wrong Msg id message echo __('Wrong Key! Please follow the proper url.'); exit(0); } while ($row = $results->fetchArray()){ $from = $row['from']; } // If valid, Deliver Message $res = $con->query('SELECT * FROM `queue` WHERE `from` = "'.trim($from).'"'); while ($row = $res->fetchArray()){ deliver_to_mail_address($user, $email, '', $row['msgid']); } // After delivery the mails remove entry from the DB $con->query('DELETE FROM `queue` WHERE `from` = "'.trim($from).'"'); // Make it whitelist if conf allowed us add_mail_in_whilelist($user, $email, $from); function get_user_from_email($mail){ $email = explode('@', $mail); $userdomain = file('/etc/userdomains'); foreach($userdomain as $k => $v){ preg_match('/'.$v.': (.*)/', $v, $out); if(!empty($out[1])){ return trim($out[1]); } } } // End the script exit(0);