⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.72
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
psa-roundcube
/
plugins
/
virtuser_file
/
View File Name :
virtuser_file.php
app = rcmail::get_instance(); $this->file = $this->app->config->get('virtuser_file'); if ($this->file) { $this->add_hook('user2email', [$this, 'user2email']); $this->add_hook('email2user', [$this, 'email2user']); } } /** * User > Email */ function user2email($p) { $r = $this->findinvirtual('/\s' . preg_quote($p['user'], '/') . '\s*$/'); $result = []; for ($i=0; $i
0 && strpos($arr[0], '@')) { $result[] = rcube_utils::idn_to_ascii(trim(str_replace('\\@', '@', $arr[0]))); if (!empty($p['first'])) { $p['email'] = $result[0]; break; } } } $p['email'] = empty($result) ? null : $result; return $p; } /** * Email > User */ function email2user($p) { $r = $this->findinvirtual('/^' . preg_quote($p['email'], '/') . '\s/'); for ($i=0; $i
0) { // Replace '\@' with '@' to handle cases where internal usernames include an '@' character. // Sometimes usernames with '@' are saved with a leading '\' to avoid conflicts. $p['user'] = trim(str_replace('\@', '@', $arr[count($arr) - 1])); break; } } return $p; } /** * Find matches of the given pattern in virtuser file * * @param string $pattern Regular expression to search for * * @return array Matching entries */ private function findinvirtual($pattern) { $result = []; $virtual = null; if ($this->file) { $virtual = file($this->file); } if (empty($virtual)) { return $result; } // check each line for matches foreach ($virtual as $line) { $line = trim($line); if (empty($line) || $line[0] == '#') { continue; } if (preg_match($pattern, $line)) { $result[] = $line; } } return $result; } }