Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
ini_set('display_errors', '0'); # don't show any errors...
error_reporting(E_ALL | E_STRICT); # ...but do log them
require_once('library/class.misc.php');
require_once('library/class.usuarios.php');
session_start();
$IdUsuario = intval($_REQUEST['IdUsuario']);
$Nombre = trim(strval($_REQUEST['Nombre']));
$Apellido = trim(strval($_REQUEST['Apellido']));
$Email = trim(strval($_REQUEST['Email']));
$CodPaisTelefono1 = trim(strval($_REQUEST['CodPaisTelefono1']));
$CodAreaTelefono1 = trim(strval($_REQUEST['CodAreaTelefono1']));
$Telefono1 = trim(strval($_REQUEST['Telefono1']));
$CodPaisCelular1 = trim(strval($_REQUEST['CodPaisCelular1']));
$CodAreaCelular1 = trim(strval($_REQUEST['CodAreaCelular1']));
$Celular1 = trim(strval($_REQUEST['Celular1']));
$Submitted = intval($_REQUEST['Submitted']);
$oUsuarios = new Usuarios();
$oUsuario = $oUsuarios->GetById($IdUsuario);
$err = 0;
if ($Submitted) {
if ($Nombre == '')
$err |= 1;
if ($Apellido == '')
$err |= 2;
if ($Email == '')
$err |= 4;
if ($CodPaisTelefono1 == '')
$err |= 8;
if ($CodAreaTelefono1 == '')
$err |= 16;
if ($Telefono1 == '')
$err |= 32;
if ($CodPaisCelular1 == '')
$err |= 64;
if ($CodAreaCelular1 == '')
$err |= 128;
if ($Celular1 == '')
$err |= 512;
if (!IsEmail($Email))
$err |= 256;
$oUsuario->Nombre = $Nombre;
$oUsuario->Apellido = $Apellido;
$oUsuario->Email1 = $Email;
$oUsuario->CodPaisTelefono1 = ltrim(ltrim($CodPaisTelefono1, '0'), '+');
$oUsuario->CodAreaTelefono1 = ltrim($CodAreaTelefono1, '0');
$oUsuario->Telefono1 = ltrim($Telefono1, '0');
$oUsuario->CodPaisCelular1 = ltrim(ltrim($CodPaisCelular1, '0'), '+');
$oUsuario->CodAreaCelular1 = ltrim($CodAreaCelular1, '0');
$oUsuario->Celular1 = ltrim($Celular1, '0');
$oUsuario->ContactoActualizado = 1;
$oUsuarios->Update($oUsuario);
echo 'true';
exit;
} else {
$Nombre = $oUsuario->Nombre;
$Apellido = $oUsuario->Apellido;
$Email = $oUsuario->Email1;
$CodPaisTelefono1 = $oUsuario->CodPaisTelefono1;
$CodAreaTelefono1 = $oUsuario->CodAreaTelefono1;
$Telefono1 = $oUsuario->Telefono1;
$CodPaisCelular1 = $oUsuario->CodPaisCelular1;
$CodAreaCelular1 = $oUsuario->CodAreaCelular1;
$Celular1 = $oUsuario->Celular1;
}
?>
<div align="center"></div>
<table width="599" border="0" align="center" cellpadding="0" cellspacing="0" class="FondoBlanco">
<tr>
<td width="20" valign="top"> </td>
<td width="559" height="5" valign="top"><div align="center"></div></td>
<td width="20" valign="top"> </td>
</tr>
<tr>
<td width="20" valign="top"> </td>
<td width="559" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="top"><!-- InstanceBeginEditable name="Contenido" -->
<table align="center" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td>
<table align="center" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td height="25" background="images/accc_fondo_botonera.png" colspan="3">
<table width="100%" height="20" border="0" cellpadding="0" cellspacing="0">
<tr valign="middle">
<td width="10" height="31"> </td>
<td height="31" class="TituloPrincipal">ACTUALIZAR INFORMACIÓN DE CONTACTO</td>
<td height="31"><div align="right"> </div></td>
<td width="10" height="31" class="TituloPrincipal"><div align="right"></div></td>
</tr>
</table>
</td>
</tr>
<tr>
<td width="15"> </td>
<td>
<table align="center" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td> </td>
</tr>
<tr>
<td>
<form method="post" name="frmData" id="frmData" action="usuario_actualizar_contacto.php" enctype="application/x-www-form-urlencoded" class="Estilo3">
<input type="hidden" name="IdUsuario" id="IdUsuario" value="<?= $IdUsuario ?>" />
<input type="hidden" name="Submitted" id="Submitted" value="1" />
<table width="100%" border="0" class="bordeGris">
<tr>
<td height="20" colspan="5" align="left" class="tituloCategoriaMenu bordeGrisFondo" ><strong>Por favor, actualice su información de contacto para continuar.</strong></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td width="20"> </td>
<td width="100"><div align="left"><span class="Estilo6">Nombre</span>: </div>
</td>
<td colspan="3">
<input type="text" name="Nombre" id="Nombre" class="camposFormularioSimple" style="height: 25px" value="<?= $Nombre ?>" />
<?php
if ($err & 1) {
?>
<li style="color:#FF0000;">El nombre es obligatorio</li>
<?php
}
?>
</td>
</tr>
<tr>
<td width="20"> </td>
<td><div align="left"><span class="Estilo6">Apellido</span>: </div>
</td>
<td colspan="3">
<input type="text" name="Apellido" id="Apellido" class="camposFormularioSimple" style="height: 25px" value="<?= $Apellido ?>" />
<?php
if ($err & 2) {
?>
<li style="color:#FF0000;">El apellido es obligatorio</li>
<?php
}
?>
</td>
</tr>
<tr>
<td width="20"> </td>
<td><div align="left"><span class="Estilo6">Email</span>: </div>
</td>
<td colspan="3">
<input type="text" name="Email" id="Email" class="camposFormularioSimple" style="height: 25px" value="<?= $Email ?>" />
<?php
if ($err & 4) {
?>
<li style="color:#FF0000;">El email es obligatorio</li>
<?php
}
if ($err & 256) {
?>
<li style="color:#FF0000;">Ingrese un email válido</li>
<?php
}
?>
</td>
</tr>
<tr>
<td width="20"> </td>
<td><div align="left"><span class="Estilo6">Teléfono</span>: </div>
</td>
<td width="48">
<input type="text" name="CodPaisTelefono1" id="CodPaisTelefono1" class="camposFormularioSimple" style="height: 25px; width: 50px;" value="<?= $CodPaisTelefono1 ?>" placeholder="Cód. País" />
<?php
if ($err & 8) {
?>
<li style="color:#FF0000;">El cód. es obligatorio</li>
<?php
}
?>
</td>
</td>
<td width="48">
<input type="text" name="CodAreaTelefono1" id="CodAreaTelefono1" class="camposFormularioSimple" style="height: 25px; width: 50px;" value="<?= $CodAreaTelefono1 ?>" placeholder="Cód. Área" /><?php
if ($err & 16) {
?>
<li style="color:#FF0000;">El cód. es obligatorio</li>
<?php
}
?>
</td>
</td>
<td width="138">
<input type="text" name="Telefono1" id="Telefono1" class="camposFormularioSimple" style="height: 25px; width: 78px;" value="<?= $Telefono1 ?>" placeholder="Teléfono" /><?php
if ($err & 32) {
?>
<li style="color:#FF0000;">El teléfono es obligatorio</li>
<?php
}
?>
</td>
</tr>
<tr>
<td width="20"> </td>
<td><div align="left"><span class="Estilo6">Whatsapp</span>: </div>
</td>
<td width="48">
<input type="text" name="CodPaisCelular1" id="CodPaisCelular1" class="camposFormularioSimple" style="height: 25px; width: 50px;" value="<?= $CodPaisCelular1 ?>" placeholder="Cód. País" /><?php
if ($err & 64) {
?>
<li style="color:#FF0000;">El cód. es obligatorio</li>
<?php
}
?>
</td>
</td>
<td width="48">
<input type="text" name="CodAreaCelular1" id="CodAreaCelular1" class="camposFormularioSimple" style="height: 25px; width: 50px;" value="<?= $CodAreaCelular1 ?>" placeholder="Cód. Área" /><?php
if ($err & 128) {
?>
<li style="color:#FF0000;">El cód. es obligatorio</li>
<?php
}
?>
</td>
</td>
<td width="138">
<input type="text" name="Celular1" id="Celular1" class="camposFormularioSimple" style="height: 25px; width: 78px;" value="<?= $Celular1 ?>" placeholder="Teléfono" /><?php
if ($err & 512) {
?>
<li style="color:#FF0000;">El whatsapp es obligatorio</li>
<?php
}
?>
</td>
</td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="5"><div style="float: right; margin-right: 56px">
<input type="submit" class="botonBasicoSinWidth" value="Guardar" /></div></td>
</tr>
<tr>
<td> </td>
<td> </td>
</tr>
</table>
</form> </td>
</tr>
</table>
</td>
<td width="15"> </td>
</tr>
<tr>
<td width="15"> </td>
<td> </td>
<td width="15"> </td>
</tr>
</table>
</td>
</tr>
</table>
<!-- InstanceEndEditable --></td>
</tr>
</table></td>
<td width="20" valign="top"> </td>
</tr>
<tr>
<td valign="top"> </td>
<td valign="top"> </td>
<td valign="top"> </td>
</tr>
</table>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat