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.145.41.108
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 /
pgadm2020 /
razorpay /
[ HOME SHELL ]
Name
Size
Permission
Action
checkout
[ DIR ]
drwxrwxrwx
razorpay-php
[ DIR ]
drwxrwxrwx
.editorconfig
392
B
-rwxrwxrwx
.gitignore
9
B
-rwxrwxrwx
.razorpay.php
3.61
KB
-rw-r--r--
LICENSE
1.07
KB
-rwxrwxrwx
README.md
2.06
KB
-rwxrwxrwx
config.php
455
B
-rwxrwxrwx
config.php.sample
313
B
-rwxrwxrwx
error_log
6.56
MB
-rwxrwxrwx
index.html
1.19
KB
-rwxrwxrwx
pay.php
8
KB
-rwxrwxrwx
verify.php
10.85
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.html
<!DOCTYPE html> <html> <head lang="en"> <meta charset="utf-8"> <link rel="stylesheet" href="http://yegor256.github.io/tacit/tacit.min.css"/> </head> <body> <form id="checkout-selection" method="POST"> <input type="radio" name="checkout" value="automatic">Automatic Checkout Demo<br> <input type="radio" name="checkout" value="orders">Manual Checkout Demo<br> <input type="submit" value="Submit"> </form> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> <script> jQuery(document).ready(function($) { var form = $('#checkout-selection'); var radio = $('input[name="checkout"]'); var choice = ''; radio.change(function(e) { choice = this.value; if (choice === 'orders') { form.attr('action', 'pay.php?checkout=manual'); } else { form.attr('action', 'pay.php?checkout=automatic'); } }); }); </script> </body> </html>
Close