!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/5.4.16. PHP/5.4.16 

uname -a: Linux roko-bkp 3.10.0-1160.102.1.el7.x86_64 #1 SMP Tue Oct 17 15:42:21 UTC 2023 x86_64 

uid=48(apache) gid=48(apache) groups=48(apache),1003(webmaster) 

Safe-mode: OFF (not secure)

/var/www/html/site/   drwxr-xr-x
Free 9.41 GB of 93.48 GB (10.07%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     validacao_matricula.php (4.99 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php include "load_ipanel.php" ?>

<!DOCTYPE HTML>
<html lang="pt-br">
    <?php include "mod_head.php" ?>
    <body class="homepage">
        <div id="page-wrapper">

        <?php include "mod_login.php" ?>
        <?php include "mod_menu.php" ?>
        <div id="banner-wrapper">
            <div id="banner" class="container">
                <div class="row">
                    <h2 class="titulo_page">VALIDAÇÃO DA MATRÍCULA</h2>
                </div>
            </div>
        </div>

            <div class="wrapper-style1 wrapper-featured">
                <div class="container">
                    <div class="row">
                        <div class="12u">
                            <div class="borda_divisoria">
                                <p>Digite o número da matrícula apresentado no campo superior de sua certidão, e verifique a validade de seu documento, conforme apresentado abaixo.</p>
                                <div class="registro_total">
                                    <img class="certid_ex" src="images/exemplo_matricula.jpg" alt="">
                                </div>
                                <div align="center">
                     <span>(informe somente números, sem espaços)</span>
                  <br>
                  <br>
                  <b>Número da matrícula:</b>
                  <br>
                  <br>
                     <input name="matricula" id="matricula" type="text" size="30" maxlength="32">
                  <br> <br>
                  <input type="button" class="new_button" name="buscar" value="Pesquisar" id="btPesquisar" onClick="validarMatricula()">
                </div>
                <div id="result" class="blockquote" style="text-align: left"></div>
                            </div>
                      </div>
                    </div>
                </div>
            </div>

            <!-- Footer Wrapper -->
            <?php include "mod_footer.php" ?>

        </div>
    </body>
</html>
<?php include "scripts.php" ?>

<script type="text/javascript">
  function validarMatricula() {
    var matricula = $("#matricula").val();
    if(matricula == undefined || matricula == ""){
        $("#result").html("<span style=\"color: red\"><br>Por favor. Informe o número da matrícula.</span>");
    }else{
      $("#btPesquisar").hide(100);
      $("#result").html("<div align=\"center\" id=\"loading\"><div id=\"div1\" style=\"transform: scale(0.5) rotate(180deg);\"><div class=\"bar1\"></div><div class=\"bar2\"></div><div class=\"bar3\"></div><div class=\"bar4\"></div><div class=\"bar5\"></div><div class=\"bar6\"></div><div class=\"bar7\"></div><div class=\"bar8\"></div></div><p>Validando matrícula! Por favor, aguarde...</p></div>");
      $.ajax({
        url: "inc/ajax_matricula.php",
        data: {matricula: matricula},
        type: "POST",
        dataType: "json",
        success: function(json){
          $("#btPesquisar").show(100);
          if(!json.status){
            $("#result").html("<strong><span style=\"color: red\"><br>Atenção! Número de matrícula inválido.</span></strong>");
          }else{
            html= "<p><br>Este documento foi emitido pelo cart&oacute;rio e sob o n&uacute;mero de Registro apresentados abaixo:</p>";
            html+= "<table class=\"tabela_dados_oficio\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" style=\"font-size:14px; text-align: left; margin: 0 auto;\">";
            html+= "<tbody>";
            html+= "<tr><td align=\"right\"><p class=\"info\">Matrícula:&nbsp;</p></td>";
            html+= "<td align=\"left\"><p class=\"dado\"><strong>"+json.matricula+"</strong></p></td></tr>";
            html+= "<tr><td align=\"right\"><p class=\"info\">Cartório:&nbsp;</p></td>";
            html+= "<td align=\"left\"><p class=\"dado\"><strong>"+json.oficio+"</strong></p></td></tr>";
            html+= "<tr><td align=\"right\"><p class=\"info\">Cidade:&nbsp;</p></td>";
            html+= "<td align=\"left\"><p class=\"dado\"><strong>"+json.cidade+"</strong></p></td></tr>";
            html+= "<tr><td align=\"right\"><p class=\"info\">Acervo:&nbsp;</p></td>";
            html+= "<td align=\"left\"><p class=\"dado\"><strong>"+json.acervo+"</strong></p></td></tr>";
            html+= "<tr><td align=\"right\"><p class=\"info\">Tipo:&nbsp;</p></td>";
            html+= "<td align=\"left\"><p class=\"dado\"><strong>"+json.tipo+"</strong></p></td></tr>";
            html+= "<tr><td align=\"right\"><p class=\"info\">Ano:&nbsp;</p></td>";
            html+= "<td align=\"left\"><p class=\"dado\"><strong>"+json.ano+"</strong></p></td></tr>";
            html+= "<tr><td align=\"right\"><p class=\"info\">Livro:&nbsp;</p></td>";
            html+= "<td align=\"left\"><p class=\"dado\"><strong>"+json.livroTipo+"</strong></p></td></tr>";
            html+= "<tr><td align=\"right\"><p class=\"info\">Folha:&nbsp;</p></td>";
            html+= "<td align=\"left\"><p class=\"dado\"><strong>"+json.folha+"</strong></p></td></tr>";
            html+= "<tr><td align=\"right\"><p class=\"info\">Termo:&nbsp;</p></td>";
            html+= "<td align=\"left\"><p class=\"dado\"><strong>"+json.termo+"</strong></p></td></tr>";
            html+= "</tbody>";
            html+= "</table>";
            $("#result").html(html);
          }
        }
      });
    }
  }
</script>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0036 ]--