Tul xxx Tul
User / IP
:
216.73.216.159
Host / Server
:
45.84.207.204 / aircan.me
System
:
Linux lt-bnk-web1726.main-hosting.eu 5.14.0-611.36.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Mar 3 11:23:52 EST 2026 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
u931257429
/
domains
/
aircan.me
/
public_html
/
vnet
/
app
/
views
/
usuarios
/
Viewing: create.php
<?php declare(strict_types=1); // Vista: Usuarios / Crear. ?> <section class="page"> <header class="page__header page__header--with-actions"> <div> <h1 class="page__title">Nuevo usuario</h1> <p class="page__subtitle">Crea un nuevo usuario y asigna su rol</p> </div> <div class="page__actions"> <a class="btn btn--secondary" href="<?= htmlspecialchars((string)BASE_URL, ENT_QUOTES, 'UTF-8') ?>/usuarios">Volver</a> </div> </header> <?php if (!empty($errors)) : ?> <div class="alert alert--error"> <strong>Revisa los siguientes campos:</strong> <ul class="alert__list"> <?php foreach ((array)$errors as $e) : ?> <li><?= htmlspecialchars((string)$e, ENT_QUOTES, 'UTF-8') ?></li> <?php endforeach; ?> </ul> </div> <?php endif; ?> <section class="panel"> <form method="post" action="<?= htmlspecialchars((string)BASE_URL, ENT_QUOTES, 'UTF-8') ?>/usuarios/store" class="form"> <div class="form-grid"> <label class="field"> <span class="field__label">Nombre</span> <input class="field__input" type="text" name="nombre" value="<?= htmlspecialchars((string)($form['nombre'] ?? ''), ENT_QUOTES, 'UTF-8') ?>" required> </label> <label class="field"> <span class="field__label">Email</span> <input class="field__input" type="email" name="email" value="<?= htmlspecialchars((string)($form['email'] ?? ''), ENT_QUOTES, 'UTF-8') ?>" required> </label> <label class="field" style="grid-column: 1 / -1;"> <span class="field__label">ContraseƱa</span> <input class="field__input" type="password" name="password" value="" required> </label> <label class="field"> <span class="field__label">Rol</span> <?php $rol = strtolower((string)($form['rol'] ?? 'operador')); ?> <select class="field__input" name="rol" required> <option value="admin" <?= $rol === 'admin' ? 'selected' : '' ?>>Admin</option> <option value="operador" <?= $rol === 'operador' ? 'selected' : '' ?>>Operador</option> </select> </label> <label class="field"> <span class="field__label">Estado</span> <?php $estado = (string)($form['estado'] ?? '1'); ?> <select class="field__input" name="estado" required> <option value="1" <?= $estado === '1' ? 'selected' : '' ?>>Activo</option> <option value="0" <?= $estado === '0' ? 'selected' : '' ?>>Inactivo</option> </select> </label> </div> <div class="form-actions"> <a class="btn btn--secondary" href="<?= htmlspecialchars((string)BASE_URL, ENT_QUOTES, 'UTF-8') ?>/usuarios">Cancelar</a> <button class="btn btn--primary" type="submit">Guardar</button> </div> </form> </section> </section>
Coded With 💗 by
0x6ick