!C99Shell v. 1.0 pre-release build #13!

Software: Apache. PHP/5.5.15 

uname -a: Windows NT SVR-DMZ 6.1 build 7600 (Windows Server 2008 R2 Enterprise Edition) i586 

SYSTEM 

Safe-mode: OFF (not secure)

C:\AmbienteBogota\ambientebogota.gov.co\actores\Secretariaambiente\Seguimiento_Procesos\   drwxrwxrwx
Free 3.24 GB of 39.52 GB (8.2%)
Detected drives: [ a ] [ c ] [ d ] [ e ] [ f ]
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Ingreso_Procesos.php (28.26 KB)      -rw-rw-rw-
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
//prevents caching
header("Expires: Sat, 01 Jan 2000 00:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: post-check=0, pre-check=0",false);
session_cache_limiter();
session_start();

require(
'../config.php');

require(
'../functions.php');
require_once(
'../conn/conexion.php');
require(
"generanit.php");
//this is group name or username of the group or person that you wish to allow access to
// - please be advise that the Administrators Groups has access to all pages.
/*
if (allow_access(gestores) != "yes")
{
include ('no_access.php');
exit;
}
*/
$gestorcreador=$_SESSION[user_name];
$sql ="SELECT localidad FROM reg_gestores where acronimo='$gestorcreador';";
$result = @mysql_query($sql,$link) or die(mysql_error());
while(
$row mysql_fetch_array($resultMYSQL_ASSOC))
{
    
$localidadgestor=$row['localidad'];
}

?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<HTML>
<HEAD>
<TITLE>Secretaría Distrital de Ambiente</TITLE>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-1458662-7";
urchinTracker();
</script>
<script language="JavaScript" type="text/javascript" src="../js/datetimepicker.js"></script>
<script language="JavaScript">
function echeck(str) {

        var at="@"
        var dot="."
        var lat=str.indexOf(at)
        var lstr=str.length
        var ldot=str.indexOf(dot)
        if (str.indexOf(at)==-1){
           alert("El email no es valido")
           return false
        }

        if (str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr){
           alert("El email no es valido")
           return false
        }

        if (str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr){
            alert("El email no es valido")
            return false
        }

         if (str.indexOf(at,(lat+1))!=-1){
            alert("El email no es valido")
            return false
         }

         if (str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot){
            alert("El email no es valido")
            return false
         }

         if (str.indexOf(dot,(lat+2))==-1){
            alert("El email no es valido")
            return false
         }
        
         if (str.indexOf(" ")!=-1){
            alert("El email no es valido")
            return false
         }

          return true                    
    }

function validar(){

if(document.registro.nombreorg.value==""){
alert("Por favor ingrese un nombre de organización");
document.registro.nombreorg.focus();
document.registro.nombreorg.style.backgroundColor="yellow";
return false;
}
if(document.registro.descripcion.value==""){
alert("Por favor ingrese la descripción del proceso");
document.registro.descripcion.focus();
document.registro.descripcion.style.backgroundColor="yellow";
return false;
}
if(document.registro.nit.value==""){
alert("Por favor ingrese la identificación NIT o cédula");
document.registro.nit.focus();
document.registro.nit.style.backgroundColor="yellow";
return false;
}
if(document.registro.instancia.value==""){
alert("Por favor ingrese una instancia");
document.registro.instancia.focus();
document.registro.instancia.style.backgroundColor="yellow";
return false;
}
if(document.registro.actividad.value==""){
alert("Por favor ingrese el nombre de la actividad");
document.registro.actividad.focus();
document.registro.actividad.style.backgroundColor="yellow";
return false;
}
if(document.registro.acuerdos.value==""){
alert("Por favor ingrese el acuerdo");
document.registro.acuerdos.focus();
document.registro.acuerdos.style.backgroundColor="yellow";
return false;
}
if(document.registro.disensos.value==""){
alert("Por favor ingrese los disensos");
document.registro.disensos.focus();
document.registro.disensos.style.backgroundColor="yellow";
return false;
}
if(document.registro.compromisos.value==""){
alert("Por favor ingrese los compromisos");
document.registro.compromisos.focus();
document.registro.compromisos.style.backgroundColor="yellow";
return false;
}
if(document.registro.cumplimiento.value==""){
alert("Por favor ingrese cumplimiento");
document.registro.cumplimiento.focus();
document.registro.cumplimiento.style.backgroundColor="yellow";
return false;
}

if(document.registro.evidencia.value==""){
alert("Por favor ingrese la evidencia");
document.registro.evidencia.focus();
document.registro.evidencia.style.backgroundColor="yellow";
return false;
}
if(document.registro.asistente.value==""){
alert("Por favor ingrese los asistentes");
document.registro.asistente.focus();
document.registro.asistente.style.backgroundColor="yellow";
return false;
}
var minLength = 6;
if (document.registro.pass.value.length < minLength) {
alert('Su contraseña debe tener como mínimo ' + minLength + ' caracteres.');
return false;
}
/*
if(document.registro.pass2.value!=document.registro.pass.value){
alert("Los valores de las contraseñas no coinciden");
document.registro.pass.focus();
document.registro.pass.style.backgroundColor="yellow";
return false;
}
*/

/*
if(document.registro.acronimo.value==""){
alert("Por favor ingrese la sigla de la organizacion");
document.registro.acronimo.focus();
document.registro.acronimo.style.backgroundColor="yellow";
return false;
}
*/

if(document.registro.localidad.value==0)

alert("Seleccione una localidad");
document.registro.localidad.focus();
return false;
 }


/*
if (isNaN(parseInt(document.registro.telefono.value))) {
   alert("Ingrese solo numeros en este campo");
document.registro.telefono.focus();
document.registro.telefono.style.backgroundColor="yellow";
return false;
}
*/

var emailID=document.registro.email
    
    if ((emailID.value==null)||(emailID.value=="")){
        alert("Ingrese el email de la organizacion")
        emailID.focus()
        return false
    }
    if (echeck(emailID.value)==false){
        emailID.value=""
        emailID.focus()
        return false
    }



if(document.registro.aniocreacion.value==""){
alert("Por favor ingrese la fecha de creacion");
document.registro.aniocreacion.focus();
document.registro.aniocreacion.style.backgroundColor="yellow";
return false;
}
if (isNaN(parseInt(document.registro.aniocreacion.value))) {
   alert("Ingrese solo numeros en este campo");
document.registro.aniocreacion.focus();
document.registro.aniocreacion.style.backgroundColor="yellow";
return false;
}

if(document.registro.email2.value==""){
alert("Por favor ingrese su email");
document.registro.email2.focus();
document.registro.email2.style.backgroundColor="yellow";
return false;
}



var emailID2=document.registro.email2
    
    if ((emailID2.value==null)||(emailID2.value=="")){
        alert("Ingrese el email de la organizacion")
        emailID2.focus()
        return false
    }
    if (echeck(emailID2.value)==false){
        emailID2.value=""
        emailID2.focus()
        return false
    }


if(document.registro.cargo.value==""){
alert("Por favor ingrese su cargo");
document.registro.cargo.focus();
document.registro.cargo.style.backgroundColor="yellow";
return false;
}

if(document.registro.organizacion.value==0)

alert("Seleccione una organizacion");
document.registro.organizacion.focus();
return false;
 }

if(document.registro.localidad.value==0)

alert("Seleccione una localidad");
document.registro.localidad.focus();
return false;
 }

//if (!( document.registro.temas[0].checked||document.registro.temas[1].checked||document.registro.temas[2].checked||document.registro.temas[3].checked ||document.registro.temas[4].checked||document.registro.temas[5].checked||document.registro.temas[6].checked||document.registro.temas[7].checked||document.registro.temas[8].checked||document.registro.temas[9].checked||document.registro.temas[10].checked||document.registro.temas[11].checked||document.registro.temas[12].checked||document.registro.temas[13].checked))

if ( ( document.registro.temas[0].checked == false) && ( document.registro.temas[1].checked == false  ) &&( document.registro.temas[2].checked == false  )&& ( document.registro.temas[3].checked == false  )&& ( document.registro.temas[4].checked == false  )&& ( document.registro.temas[5].checked == false  )&& ( document.registro.temas[6].checked == false  )&& ( document.registro.temas[7].checked == false  )&& ( document.registro.temas[8].checked == false)&& ( document.registro.temas[9].checked == false)&& ( document.registro.temas[10].checked == false)&& ( document.registro.temas[11].checked == false)&& ( document.registro.temas[12].checked == false)&& ( document.registro.temas[13].checked == false))

{
alert ( "Seleccione los temas" );
document.registro.temas[0].focus();
return false;
    
}


if ( ( document.registro.temas_14.checked == true ) && (document.registro.otros_temas.value==""))
{
 alert("Ingrese otro tema");
document.registro.otros_temas.focus();

return false;
 }

//if (!( document.registro.actividades[0].checked||document.registro.actividades[1].checked||document.registro.actividades[2].checked||document.registro.actividades[3].checked ||document.registro.actividades[4].checked||document.registro.actividades[5].checked||document.registro.actividades[6].checked||document.registro.actividades[7].checked||document.registro.actividades[8].checked))

//if ( ( document.registro.actividades[0].checked == false )&&( document.registro.actividades[1].checked == false  )&& ( document.registro.actividades[2].checked == false  )&& ( document.registro.actividades[3].checked == false  )&& ( document.registro.actividades[4].checked == false  )&& ( document.registro.actividades[5].checked == false  )&& ( document.registro.actividades[6].checked == false  )&& ( document.registro.actividades[7].checked == false  )&& ( document.registro.actividades[8].checked == false  ))
if ((document.registro.actividades[0].checked == false) && ( document.registro.actividades[1].checked == false  ) && ( document.registro.actividades[2].checked == false  )&& ( document.registro.actividades[3].checked == false  )&& ( document.registro.actividades[4].checked == false  )&& ( document.registro.actividades[5].checked == false  )&& ( document.registro.actividades[6].checked == false  )&& ( document.registro.actividades[7].checked == false  )&& ( document.registro.actividades[8].checked == false))
{
alert ( "Seleccione las actividades" );
document.registro.actividades[0].focus();
return false;
    
    }

if ( ( document.registro.actividades[7].checked == true ) && (document.registro.otros_actividades.value==""))
{ alert("Ingrese otras actividades");
document.registro.otros_actividades.focus();

return false;
 }

/*if(document.registro.organizaciones_integradas.value=="")

alert("Ingrese las organizaciones integradas a la red");
document.registro.organizaciones_integradas.focus();
return false;
 }
 */


if ( ( document.registro.financiamientos[0].checked == false )&& ( document.registro.financiamientos[1].checked == false  )&& ( document.registro.financiamientos[2].checked == false  )&& ( document.registro.financiamientos[3].checked == false  )&& ( document.registro.financiamientos[4].checked == false  )&& ( document.registro.financiamientos[5].checked == false  )&& ( document.registro.financiamientos[6].checked == false  )&& ( document.registro.financiamientos[7].checked == false  )&& ( document.registro.financiamientos[8].checked == false  )&& ( document.registro.financiamientos[9].checked == false  )&& ( document.registro.financiamientos[10].checked == false  ))
    {
        alert ( "Seleccione los esquemas de financiamiento" );
        document.registro.financiamientos[0].focus();
        return false;
    
    }

if ( ( document.registro.financiamientos[9].checked == true ) && (document.registro.otros_financiamientos.value==""))
{ alert("Ingrese otros financiamientos");
document.registro.otros_financiamientos.focus();

return false;
 }



if ( ( document.registro.material[0].checked == false )&& ( document.registro.material[1].checked == false  )&& ( document.registro.material[2].checked == false  )&& ( document.registro.material[3].checked == false  )&& ( document.registro.material[4].checked == false  )&& ( document.registro.material[5].checked == false  )&& ( document.registro.material[6].checked == false  )&& ( document.registro.material[7].checked == false  ))
    {
        alert ( "Seleccione los tipos de materiales producidos" );
        document.registro.material[0].focus();
        return false;
    
    }
if ( ( document.registro.material[7].checked == true ) && (document.registro.materiales.value==""))
{ alert("Ingrese otros materiales");
document.registro.otros_materiales.focus();

return false;
 }

if(document.registro.mision.value==""){
alert("Por favor ingrese la mision de la organizacion");
document.registro.mision.focus();
document.registro.mision.style.backgroundColor="yellow";
return false;
}

if(document.registro.vision.value==""){
alert("Por favor ingrese la vision de la organizacion");
document.registro.vision.focus();
document.registro.vision.style.backgroundColor="yellow";
return false;
}

    if  ( document.registro.verif_box.value == "" )
    {
        alert ( "Ingrese el codigo de verificacion" );
        document.registro.verif_box.focus();
        document.registro.verif_box.style.backgroundColor="yellow";
    return false;
    
    }

return true;
}


function habilitar1()
{
  var form = document.registro;
   form.otros_temas.disabled = false;
}

function habilitar2()
{
  var form = document.registro;
   form.otros_actividades.disabled = false;
}
function habilitar3()
{
  var form = document.registro;
   form.otros_financiamientos.disabled = false;
}
function habilitar4()
{
  var form = document.registro;
   form.otros_materiales.disabled = false;
}

</script>


<style type="text/css">
body{ margin:0px; background-color:#EFEEEA;}
a{ text-decoration:none}
a:hover{ text-decoration:underline}
fieldset { -moz-border-radius: 8px; border-radius: px;  }
.fuente{ font-family:verdana, Helvetica, sans-serif; font-size:11px; color:#666666; font-weight:normal; padding:4px}
.blanco {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bolder;
    color: #FFFFFF;
    background-color: #999999;
}
a{ color:#006699;}
a.fuentewhite{
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
        color: #FFFFFF; text-decoration:none; padding-left:5px; padding-right:5px;
}
a.fuentewhite:hover{
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
        color: #FFFFcc; text-decoration:underline; padding-left:5px
}
#caja {font-family: verdana, arial; font-size:11px; border:1px solid #999999}
.amarillo{background-image:url(images/yell.jpg); background-repeat:repeat-x}
.style1 {color: #FFFFFF}
.negra1{font-family: verdana, arial; font-size:11px}
fieldset{border: 1px solid  #ccc;}
-->
</style>
<link rel="stylesheet" type="text/css" href="/sda/libreria/css/tabcontent.css" />
</HEAD>
<BODY>
<table border="0" cellpadding="0" cellspacing="0" align="center" width="928"><tr><td width="14" style="background-image:url(/sda/libreria/jpg/new/fondoleft.jpg); background-repeat:repeat-y"></td>
<td><TABLE width="900" border=0 align="center" cellPadding=0 cellSpacing=0>
        <TBODY>
             <TR>
            <TD bgColor=#7DB5C6 style="background-image:url(/sda/libreria/jpg/top08.jpg); background-repeat:no-repeat;" width="900" height="90" valign="bottom"><div align="right"><A href="/" class="fuentewhite">Inicio</A> 
                | <A href="http://www.secretariadeambiente.gov.co/sda/libreria/php/decide.php?patron=00.01" class="fuentewhite">Mapa 
                del Sitio</A> | <A href="http://192.168.10.3/php/reqintranet.php" class="fuentewhite">Intranet 
                SDA</A></div></TD>
          </TR>
          <TR>
            <TD align=left vAlign=top bgColor=#000000><TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
                <TBODY>
                  <TR> 
                    <TD width="73%" bgColor=#669966 background="http://www.secretariadeambiente.gov.co/sda/libreria/jpg/new/bg2.gif"><img src="http://www.secretariadeambiente.gov.co/sda/libreria/gif/bar2.gif" width="518" height="30" border="0" usemap="#Map"></TD>
                    <form name="form1" method="post" action="http://www.secretariadeambiente.gov.co/sda/libreria/php/frame_buscar.php">
                      <TD width="27%" bgColor=#669966  background="http://www.secretariadeambiente.gov.co/sda/libreria/jpg/new/bg2.gif"> 
                        <input name="buscar" type="text" size="20" id="caja"> 
                        <input type="submit" name="Submit" value="Buscar" style="font-size:10px"> 
                        <input name="accion" type="hidden" id="accion" value="1"></TD>
                    </form>
                  </TR>
                  <TR>
                    <TD colspan="2" bgColor=#FFFFFF><table width="900" border="0" cellpadding="0" cellspacing="0">
                        <tr> 
                          <td width="195" valign="top" bgcolor="#F7F7F7"><?php include("../sda/libreria/php/leftmenu2.php"); ?></td>
                          <td width="705" valign="top"><table width="100%" border="0" align="center" cellpadding="3" cellspacing="0" class="fuente" style="padding:3px;">
                              <tr> 
                                <td height="45" align="left" valign="top"> <fieldset>
                                  <legend><font color="#990000"><strong><font size="2" face="Geneva, Arial">Oficina OPEL</font></strong></font></legend>
                                  <br>
                                 <!-- <div align="right"><a href="javascript:void(0);" onClick="history.back();">&laquo;Regresar </a></div> -->
                                 <div align="right"><a href="Seguimiento_Procesos.php">Regresar</a></div>
                                  <font color="#006699" size="4"><strong>Registro de Procesos</strong></font><br>
                                  <div style="padding:4px;">(*) Campos requeridos<br>
                                  <div style="padding:4px;"><strong>Seguimiento a Procesos</strong><br>
                                    <form name="registro" onSubmit="return validar();"  method="POST" action="Guardar_Procesos.php">
 <input type="hidden" value="<?php echo date("Y-m-j");?>" name="fecha" />
                                      <input type="hidden" value="0" name="estado" />
                                      <input type="hidden" value="organizaciones" name="group1" />
                                      <input type="hidden" value="/Secretariaambiente/registro_experiencias.php" name="url" />
                                      <br>
                                      <br>
                                      <fieldset>
                                      <legend><strong><font color="#003333">Formulario Creaci&oacute;n del Proceso</font></strong></legend>
                                      <br>
                                      <table width="100%" border="0" cellspacing="0" cellpadding="2" style="font-size:11px">
                                      <input name="gestorcreador" type="hidden" id="gestorcreador" maxlength="20" value="<?php echo $gestorcreador;?>">
                                      <input name="localidad" type="hidden" id="localidad" maxlength="20" value="<?php echo $localidadgestor;?>">
                                      <tr>
                                          <td align="left">*N&uacute;mero Proceso </td>
                                          <td><input name="nit" type="text" id="nit" maxlength="20" value="<?php echo $codigonit?>"></td>
                                          <td colspan="2" align="left">&nbsp;</td> 
                                          <td align="left">*Nombre de Proceso</td>
                                          <td><input name="nombreorg" type="text" id="nombreorg" maxlength="100"></td>
                                          <td colspan="2" align="left">&nbsp;</td>
                                        </tr>
                                        
                                        <tr>
                                          <td align="left">*Descripci&oacute;n Proceso</td>
                                          <td><textarea name="descripcion" type="text" id="descripcion" maxlength="120"></textarea></td>
                                          <td colspan="2" align="left">&nbsp;</td> 
                                          <td align="left">*Fecha </td>
                                          <td><input id="fecha1" type="text" size="10" name="fecha1"> 
                                            <a href="javascript:NewCal('fecha1','ddmmyyyy')"><img src="../js/cal.gif" width="16" height="16" border="0" alt="Elija fecha"></a>
                                          </td>
                                          <td colspan="3" align="left">
                                            </td> 
                                        </tr>
                                        <tr>
                                        <td>
                                        Seleccione una localidad
                                        </td>
                                        <td>
                                        <select name="localidad" size="1" id="localidad"  style="font-size:11px" onchange="setOptions(document.registro.territorio,document.registro.localidad.options[document.registro.localidad.selectedIndex].value);">
                                              <option value="0" selected>Seleccione</option>
                                              <option value="Usaquen">Usaquén 
                                              <option value="Chapinero">Chapinero</option>
                                              <option value="Santa fe">Santa fe</option>
                                              <option value="San Cristobal">San Cristobal</option>
                                              <option value="Usme">Usme</option>
                                              <option value="Tunjuelito">Tunjuelito</option>
                                              <option value="Bosa">Bosa</option>
                                              <option value="Kennedy">Kennedy</option>
                                              <option value="Fontibon">Fontibon</option>
                                              <option value="Engativa">Engativa</option>
                                              <option value="Suba">Suba</option>
                                              <option value="Barrios unidos">Barrios 
                                              unidos</option>
                                              <option value="Teusaquillo">Teusaquillo</option>
                                              <option value="Martires">Martires</option>
                                              <option value="Antonio narino">Antonio 
                                              nariño</option>
                                              <option value="Puente aranda">Puente 
                                              aranda</option>
                                              <option value="Candelaria">Candelaria</option>
                                              <option value="Rafael uribe uribe">Rafael 
                                              uribe uribe</option>
                                              <option value="Ciudad bolivar">Ciudad 
                                              bolivar</option>
                                              <option value="Sumapaz">Sumapaz</option>
                                            </select></td>
                                        </tr>
                                        </table>
</fieldset>
<BR>
<fieldset>
                                      <legend><strong><font color="#000000">Persona 
                                      de contacto</font></strong></legend>
                                      <br>
                                      <table width="100%" border="0" cellspacing="0" cellpadding="2" style="font-size:11px">
                                        <tr> 
                                          <td width="98" align="right">*Nombre</td>
                                          <td width="228"><input name="nombrecont" type="text" id="nombrecont"></td>
                                          <td width="98" align="right">*Apellido</td>
                                          <td width="228"><input name="apellcont" type="text" id="apellcont"></td>
                                        </tr>
                                        <tr> 
                                          <td width="68" align="right">*E-mail</td>
                                          <td width="281"><input name="emailcont" type="text" id="emailcont"></td>
                                          <td width="68" align="right">*Funci&oacute;n</td>
                                          <td width="281"><input name="funcioncont" type="text" id="funcioncont"></td>
                                        </tr>
                                        <tr> 
                                          <td width="98" align="right">*Cargo</td>
                                          <td width="228"><input name="cargocont" type="text" id="cargocont"></td>
                                          <td width="68" align="right">*Comentarios</td>
                                          <td width="281"><input name="comentcont" type="text" id="comentcont"></td>
                                        </tr>
                                        <tr>
                                          <td width="68" align="right">*Tel&eacute;fono</td>
                                          <td width="281"><input name="telcont" type="text" id="telcont"></td>
                                          <input name="vinculos" type="hidden" id="vinculos" value="PRINCIPAL">
                                        </tr>
                                      </table>
</fieldset>                                      
<BR>
<fieldset>
                                      
                                      <table width="100%" border="0" cellspacing="0" cellpadding="2" style="font-size:11px">
                                        <tr>                                                                                   
                                        <tr> 
                                          <td align="right"><strong>*Ingrese c&oacute;digo</strong></td>
                                          <td> <input name="verif_box" type="text" id="verif_box" style="font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;" maxlength="4"/> 
                                            <img src="../verificationimage.php?<?php echo rand(0,9999);?>" alt="código de verificacion" width="50" height="24" align="absbottom" /></td>
                                        </tr>
                                      </table>
 </fieldset>
                                      <br>
                                      <br>
                                      <div align="center"><input type="submit" name="Submit2" value="Enviar registro">
                                      <!-- <input type="reset" name="Submit22" value="Borrar datos"> --> </div> 
                                     <br></form></div></fieldset></td>
                              </tr> </table></td></tr><tr> 
                          <td height="80" colspan="2" align="center" valign="middle" class="amarillo"><font size="1"><font face="Verdana, Arial"><strong>Secretar&iacute;a 
                            Distrital de Ambiente</strong></font></span><font face="Verdana, Arial"><br>
                            Cra. 6 No. 14 - 98 Pisos 2, 5, 6, 7 y 12 Torre A y 
                            piso 3 y 4 Torre B, Edificio Condominio Parque Santander 
                            - Conmutador: 4441030 <br>
                            Bogot&aacute; - Colombia<br>
                            <a href="mailto:webmaster@secretariadeambiente.gov.co">webmaster@secretariadeambiente.gov.co</a></font></font></td>
                        </tr>
                      </table></TD>
                  </TR>
                </TBODY>
              </TABLE></TD>
          </TR>
        </TBODY>
      </TABLE></td><td style="background-image:url(http://www.secretariadeambiente.gov.co/sda/libreria/jpg/new/rightShadow.jpg); background-repeat:repeat-y" width="14"></td></tr></table>
<map name="Map">
  <area shape="rect" coords="6,8,77,19" href="http://www.secretariadeambiente.gov.co/sda/libreria/php/decide.php?patron=01." alt="Secretar&iacute;a de Ambiente">
  <area shape="rect" coords="266,6,408,20" href="http://www.secretariadeambiente.gov.co/sda/libreria/php/decide.php?patron=02." alt="Servicios al Ciudadano">
  <area shape="rect" coords="98,6,240,21" href="http://www.secretariadeambiente.gov.co/sda/libreria/php/decide.php?patron=03.">
  <area shape="rect" coords="433,7,514,20" href="http://www.secretariadeambiente.gov.co/sda/libreria/php/decide.php?patron=05." alt="En l&iacute;nea">
</map></BODY></HTML>


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.8424 ]--