Skip to content

Instantly share code, notes, and snippets.

View WernerLuiz92's full-sized avatar
🤘
Listening to good music.

Werner Luiz Gottschalt WernerLuiz92

🤘
Listening to good music.
View GitHub Profile
@albertzsigovits
albertzsigovits / urls.txt
Last active April 15, 2024 18:34
URL reputation checkers
# URL reputation checkers:
##########################
AlienVault OTX https://otx.alienvault.com/browse/pulses
BarracudaCentral http://www.barracudacentral.org/lookups
BrightCloud https://www.brightcloud.com/tools/url-ip-lookup.php
CDRF ThreatCenter https://threatcenter.crdf.fr
Cisco Talos https://www.talosintelligence.com/reputation_center
Checkpoint https://urlcat.checkpoint.com/urlcat
Cyren URL https://www.cyren.com/security-center/url-category-check
@rafael-neri
rafael-neri / validar_cpf.php
Last active April 27, 2024 21:49
Validar CPF em PHP (Completo)
<?php
function validaCPF($cpf) {
// Extrai somente os números
$cpf = preg_replace( '/[^0-9]/is', '', $cpf );
// Verifica se foi informado todos os digitos corretamente
if (strlen($cpf) != 11) {
return false;
@jexchan
jexchan / multiple_ssh_setting.md
Created April 10, 2012 15:00
Multiple SSH keys for different github accounts

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"