Ir para conteúdo

Vinoli

Members
  • Total de itens

    8
  • Registro em

  • Última visita

Reputação

0 Comum

Sobre Vinoli

  1. Realmente amigo, funcionou perfeito, agora consigo me virar por aqui... kkkkkk essa aplicação exigiu um conhecimento que eu ainda não tinha, principalmente quanto a curl e utilização de cookies de sites de terceiros. Ficou muito bom, sou imensamente grato pela ajuda. Bom domingo, abraços!
  2. Amigo, agora vem o grande problema desse novo sistema da receita, como ele usa o session e o session é o do meu servidor, se tiver duas pessoas realizando o cadastro em meu site, quando a PESSOA B gerar o novo captcha o da PESSOA A já será anulado e ela não conseguirá validar. Você tem alguma ideia de como implementar isso, superando esse problema? Não consigo vislumbrar nenhum meio.
  3. Perfeito amigo, parabéns pelo trabalho! Muito obrigado pela disposição em ajudar.
  4. Amigo, estou com uma dúvida, como obtenho o valor token, o qual posteriormente é enviado como viewstate? Você informou que a função getCaptchaToken poderia ser removida, pois a mágica seria feita pela session...
  5. Muito bom amigo, vou testar a implementação, sua ajuda foi de granda valia. Obrigado pela contribuição.
  6. amigo, me envie um e-mail bruno.vinny@gmail.com acho que tenho a solução.
  7. Amigos, consegui capturar o captcha para minha página e setar todos os parametros, mas acredito que está havendo um erro no retorno, pois o servidor informa que o Captcha está errado. Segue abaixo o script atualizado: <?php session_start(); class cpf_receita { function monta_form() { if(isset($_POST["enviar"])) { $this->valida_cpf($_POST["CPF"], $_POST["CAPTCHA"]); echo $_POST["CAPTCHA"]; } else { if(!file_exists("RF_cookie_cpf.txt")) { $fp = fopen("RF_cookie_cpf.txt","w"); fwrite($fp, ""); fclose($fp); } $ch = curl_init(); curl_setopt($ch, CURLOPT_COOKIEFILE, realpath("RF_cookie_cpf.txt")); curl_setopt($ch, CURLOPT_COOKIEJAR, realpath("RF_cookie_cpf.txt")); curl_setopt($ch, CURLOPT_URL, "http://www.receita.fazenda.gov.br/scripts/captcha/"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_COOKIE, "flag=0"); $retorno = curl_exec($ch); curl_close($ch); $dom = new DomDocument(); @$dom->loadHTML($retorno); $xpath = new DOMXPath($dom); $q = $xpath->query("//img[@id='RadCaptcha1_CaptchaImage']"); $imagem = "http://www.receita.fazenda.gov.br/scripts/captcha/" . utf8_decode(trim($q->item(0)->getAttribute('src'))); // print_r($imagem); $q = $xpath->query("//input[@id='__VIEWSTATE']"); $_SESSION["viewstate"] = utf8_decode(trim($q->item(0)->getAttribute('value'))); // echo $_SESSION["viewstate"]; ?> <form method="post" action=""> CPF: <input type="text" name="CPF"/> <br /> Captcha: <input type="text" name="CAPTCHA"/> <br /> <img src="<?php echo($imagem); ?>" /> <br/> <input id="id_submit" name="enviar" type="submit" value="Consultar"/> </form> <?php } } function valida_cpf($cpf, $captha) { $ch = curl_init(); /* curl_setopt($ch, CURLOPT_COOKIEFILE, realpath("RF_cookie_cpf.txt")); curl_setopt($ch, CURLOPT_COOKIEJAR, realpath("RF_cookie_cpf.txt")); curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20100101 Firefox/8.0'); curl_setopt($ch, CURLOPT_URL, "http://www.receita.fazenda.gov.br/aplicacoes/atcta/cpf/ConsultaPublicaExibir.asp"); curl_setopt($ch, CURLOPT_COOKIE, "flag=1"); curl_setopt($ch, CURLOPT_POSTFIELDS, 'txtCPF=' . $cpf . '&captcha=' . $captha . '&captchaAudio=&viewstate=' . urlencode($_SESSION["viewstate"]) . '&id_submit=Consultar'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FILETIME, 1); curl_setopt($ch, CURLOPT_TIMEOUT, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); */ $post = array ( 'txtCPF' => $cpf, 'txtTexto_captcha_serpro_gov_br' => $captha, 'captchaAudio' => '', 'Enviar' => 'Consultar', 'viewstate' => urlencode($_SESSION["viewstate"]) ); $data = http_build_query($post, NULL, '&'); $cookie = array('flag' => 1); // $ch = curl_init('http://www.receita.fazenda.gov.br/aplicacoes/atcta/cpf/ConsultaPublicaExibir.asp'); // $ch = curl_init('http://127.0.0.1/includes/bibliotecas/receita_federal_cpf_v1/recebe.php'); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_COOKIEFILE, realpath("RF_cookie_cpf.txt")); curl_setopt($ch, CURLOPT_COOKIEJAR, realpath("RF_cookie_cpf.txt")); curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20100101 Firefox/8.0'); // curl_setopt($ch, CURLOPT_URL, "http://127.0.0.1/includes/bibliotecas/opa/recebe.php"); curl_setopt($ch, CURLOPT_URL, "http://www.receita.fazenda.gov.br/aplicacoes/atcta/cpf/ConsultaPublicaExibir.asp"); curl_setopt($ch, CURLOPT_COOKIE, "flag=1"); // curl_setopt($ch, CURLOPT_COOKIEFILE, $this->cookieFile); // curl_setopt($ch, CURLOPT_COOKIEJAR, $this->cookieFile); // curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20100101 Firefox/8.0'); // curl_setopt($ch, CURLOPT_COOKIE, http_build_query($cookie, NULL, '&')); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_MAXREDIRS, 3); curl_setopt($ch, CURLOPT_REFERER, 'http://www.receita.fazenda.gov.br/aplicacoes/atcta/cpf/consultapublica.asp'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $resultado = curl_exec($ch); //print_r($resultado); curl_close($ch); $dom = new DomDocument(); @$dom->loadHTML($resultado); $xpath = new DOMXPath($dom); $q = $xpath->query('//div[@class="clConteudoCentro"]'); $q2 = $xpath->query('//span[@class="clConteudoDados"]'); $nome = trim(utf8_decode(@$q2->item(1)->nodeValue)); $nome = explode(":", $nome); print_r($resultado."<br><br>"); if(@$nome[1] == "") echo "Captha ou CPF incorreto(s)."; else echo $nome[1]; } } $cpf = new cpf_receita; $cpf->monta_form(); ?>
  8. Amigos, desejo validar um CPF, consultando-o no site da Receita Federal e obtendo o nome cadastrado. Eu possuo alguns scripts, mas o sistema da Receita mudou, haja vista que o Captcha é gerado por outro método. Possuo alguns scripts, porém é necessário uma atualização, estou com dificuldades em implementá-lo. Primeiro é necessário obter os dados referentes ao Captcha, depois enviá-los juntamente com as letras do captcha e o número de CPF que foi digitado. Ocorre que antes a página de geração do capta era http://www.receita.fazenda.gov.br/scripts/captcha/ Mas agora ela passou a ser http://www.receita.fazenda.gov.br/Aplicacoes/ATCTA/CPF/captcha/gerarCaptcha.asp Portanto, há uma diferença nos atributos do Captcha, os quais deverão ser reenviados via CURL. Como vocês podem observar esse script utiliza a biblioteca Simple_html_dom e também é necessário criar um direito chamado 'Cookie' para os armazenar e reutilizar. <?php /** * Description TCPF * @version 1.0 * @package TReceita * @author Ademilson Nunes * @license http://www.gnu.org/licenses/gpl.html */ class TCPF { private $cookieFile; private $token; private $imgCaptcha; /** * Class constructor */ public function __construct() { require_once('lib/Simple_html_dom.php'); require_once('lib/Simple_html_dom_node.php'); session_start(); $this->cookieFile = 'cookie/'.session_id(); if(!file_exists($this->cookieFile)) { $file = fopen($this->cookieFile, 'w'); fclose($file); } $ch = curl_init('http://www.receita.fazenda.gov.br/aplicacoes/atcta/cpf/consultapublica.asp'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_COOKIEJAR, $this->cookieFile); $html = curl_exec($ch); if(!$html) { return false; } $html = new Simple_html_dom($html); $url_imagem = $tokenValue = ''; $imgcaptcha = $html->find('img[id=imgcaptcha]'); if(count($imgcaptcha)) { foreach($imgcaptcha as $imgAttr) $url_imagem = $imgAttr->src; if(preg_match('#guid=(.*)$#', $url_imagem, $arr)) { $idCaptcha = $arr[1]; $viewstate = $html->find('input[id=viewstate]'); if(count($viewstate)) { foreach($viewstate as $inputViewstate) $tokenValue = $inputViewstate->value; } if(!empty($idCaptcha) && !empty($tokenValue)) { $this->token = array($idCaptcha, $tokenValue); } else { $this->token = false; } } } $this->imgCaptcha = $this->getCaptcha($idCaptcha); } /** * _getToken() */ public function _getToken() { return $this->token; } /** * getCPF() * @param string $cpf CPF * @param string $captcha * @param string $token * @return array * */ private function getCPF($cpf, $captcha, $token) { if(!file_exists($this->cookieFile)) { return false; } $post = array ( 'txtCPF' => $cpf, 'captcha' => $captcha, 'captchaAudio' => '', 'Enviar' => 'Consultar', 'viewstate' => $token ); $data = http_build_query($post, NULL, '&'); $cookie = array('flag' => 1); $ch = curl_init('http://www.receita.fazenda.gov.br/aplicacoes/atcta/cpf/ConsultaPublicaExibir.asp'); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_COOKIEFILE, $this->cookieFile); curl_setopt($ch, CURLOPT_COOKIEJAR, $this->cookieFile); curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20100101 Firefox/8.0'); curl_setopt($ch, CURLOPT_COOKIE, http_build_query($cookie, NULL, '&')); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_MAXREDIRS, 3); curl_setopt($ch, CURLOPT_REFERER, 'http://www.receita.fazenda.gov.br/aplicacoes/atcta/cpf/consultapublica.asp'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $html = curl_exec($ch); curl_close($ch); return $html; } /** * parseHtmlCPF() * @param string $html * @return array Resultado */ private function parseHtmlCPF($html) { $dom = new DomDocument(); $dom->loadHTML($html); $nodes = $dom->getElementsByTagName('span'); //$len = $nodes->length; $campos = array(); for($i = 5; $i < 10; $i++) { if(!isset($nodes->item(($i+1))->nodeValue)) { break; } $current = trim($nodes->item($i)->nodeValue); $prox = trim($nodes->item(($i+1))->nodeValue); if(strpos($current, 'o Cadastral') !== false) { $campos['situacao'] = explode(':', $current); if(count($campos['situacao']) == 2) $campos['situacao'] = trim($campos['situacao'][1]); } if(strpos($current, 'Nome da Pessoa F') !== false) { $campos['nome'] = explode(':', $current); if(count($campos['nome']) == 2) $campos['nome'] = trim($campos['nome'][1]); } } return $campos; } /** * getCaptha() * @return image Captha */ private function getCaptcha() { $idCaptcha = $_REQUEST['id']; if(preg_match('#^[a-z0-9-]{36}$#', $idCaptcha)) { $url = 'http://www.receita.fazenda.gov.br/scripts/captcha/Telerik.Web.UI.WebResource.axd?type=rca&guid='.$idCaptcha; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $imgsource = curl_exec($ch); curl_close($ch); if(!empty($imgsource)) { $img = imagecreatefromstring($imgsource); header('Content-type: image/jpg'); return imagejpeg($img); } } } /** * showResult() * @param string $cpf * @param string $captcha * @param string $token * @return array $campos */ public function showResult($cpf, $captcha, $token) { $getHtmlCPF = $this->getCPF($cpf, $captcha, $token); if($getHtmlCPF) { $campos = $this->parseHtmlCPF($getHtmlCPF); var_dump($campos); } } } // cria um objeto TCPF $getCPF = new TCPF; // recebe o token $token = $getCPF->_getToken(); // Se post if ($_POST['cpf']) { $cpf = $_REQUEST['cpf']; $captcha = $_REQUEST['captcha']; $token = $_REQUEST['viewstate']; // executa consulta $getCPF->showResult($cpf, $captcha, $token); } ?> <html> <head> <title>Teste CPF</title> </head> <body> <form method="post" action="TCPF.class.php?showResult"> <span class="titleCats">CPF</span> <br /> <input name="cpf" type="text" maxlength="14" required /> <br /> <img src="TCPF.class.php?getCaptcha&id=<?php echo "$token[0]"; ?>" border="0"> <br /> <input name="captcha" type="text" maxlength="6" required /> <br /> <input type="hidden" name="viewstate" value="<?php echo $token[1]; ?>" /> <br/> <input type="submit" value="Enviar"/> </form> </body> </html>
×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.