$app.config(['$routeProvider', function($routeProvider){
$routeProvider.when('/', {
templateUrl : "/views/welcome.html",
name: "Início",
controller: "WelcomeController"
})
.when("/talkers", {
templateUrl : "/views/talkers.html",
name: "Palestrantes"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace App\Inquiries; | |
| use PHPHtmlParser\Dom; | |
| class Consult{ | |
| protected $defaultUrl = 'https://consultaca.com/'; | |
| protected $ca; | |
| protected $url; | |
| protected $dom; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $curl = new \Curl\Curl(); | |
| $curl->get('https://irql.bipbop.com.br/', array( | |
| 'q' => 'SELECT FROM \'BIPBOPJS\'.\'CPFCNPJ\'', | |
| 'apiKey' => '6057b71263c21e4ada266c9d4d4da613', | |
| 'documento' => '453.674.018-05', | |
| 'nascimento' => '24/11/1997' | |
| )); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import random | |
| import requests,json,sys | |
| class generator: | |
| cpf = [] | |
| v1 = 0 | |
| v2 = 0 | |
| @staticmethod | |
| def generateCpf(self): | |
| for i in range(1, 10): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 'use strict'; | |
| const http = require('http'); | |
| const cpf = process.argv[2]; | |
| const url = 'http://dabsistemas.saude.gov.br/sistemas/sadab/js/buscar_cpf_dbpessoa.json.php?cpf=' | |
| const consult = `${url}${cpf}`; | |
| http.get(consult, res => { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import requests,json,sys | |
| # Script simples para consulta de dados na base dados nacional do SUS utilizando o CPF. | |
| # Jhonathan Davi A.K.A jh00nbr / Insightl4b lab.insightsecurity.com.br | |
| # Blog: lab.insightsecurity.com.br | |
| # Github: github.com/jh00nbr | |
| # Twitter @jh00nbr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .inpt-no-clickable { | |
| pointer-events: none; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2 | |
| 6 | |
| 16 | |
| 36 | |
| 80 | |
| 176 | |
| 382 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(".selectFreq").on('change', function(){ | |
| alert('ok'); | |
| var soma = 0; | |
| $(".servicos").each(function(x){ | |
| var val = $(this).val(); | |
| if(!val || isNaN(val)) | |
| return false; | |
| soma = soma+parseFloat(val); |