Skip to content

Instantly share code, notes, and snippets.

View nandofalcao's full-sized avatar
🧑‍💻

Fernando Falcao nandofalcao

🧑‍💻
View GitHub Profile
@nandofalcao
nandofalcao / google-dorks
Created April 21, 2025 03:17 — forked from stevenswafford/google-dorks
Listing of a number of useful Google dorks.
" _ _ "
" _ /|| . . ||\ _ "
" ( } \||D ' ' ' C||/ { % "
" | /\__,=_[_] ' . . ' [_]_=,__/\ |"
" |_\_ |----| |----| _/_|"
" | |/ | | | | \| |"
" | /_ | | | | _\ |"
It is all fun and games until someone gets hacked!
@nandofalcao
nandofalcao / GoogleDorking.md
Created April 21, 2025 03:16 — forked from sundowndev/GoogleDorking.md
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@nandofalcao
nandofalcao / linux-setup.sh
Created June 13, 2024 03:49 — forked from dhh/linux-setup.sh
linux-setup.sh
# THIS LINUX SETUP SCRIPT HAS MORPHED INTO A WHOLE PROJECT: HTTPS://OMAKUB.ORG
# PLEASE CHECKOUT THAT PROJECT INSTEAD OF THIS OUTDATED SETUP SCRIPT.
#
#
# Libraries and infrastructure
sudo apt update -y
sudo apt install -y \
docker.io docker-buildx \
build-essential pkg-config autoconf bison rustc cargo clang \
@nandofalcao
nandofalcao / create_x509_certs.md
Created December 28, 2023 18:12 — forked from dasniko/create_x509_certs.md
Creating self signed tls certificates with self-signed root CA
@nandofalcao
nandofalcao / arrayzing.md
Last active June 28, 2023 21:22 — forked from ourmaninamsterdam/LICENSE
Arrayzing - The JavaScript array cheatsheet
@nandofalcao
nandofalcao / README.md
Created April 27, 2022 03:48 — forked from hofmannsven/README.md
Git Cheatsheet
@nandofalcao
nandofalcao / index.php
Created August 15, 2021 22:35 — forked from alexander-young/index.php
WordPress Custom Queries Example
// Get Posts
$posts = get_posts([
'post_type' => 'press-release',
'posts_per_page' => 25,
'category' => 4,
]);
foreach($posts as $post){
setup_postdata($post);
@nandofalcao
nandofalcao / multiple_ssh_setting.md
Created March 20, 2021 06:28 — forked from jexchan/multiple_ssh_setting.md
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 "[email protected]"
@nandofalcao
nandofalcao / .eslintrc
Created February 11, 2018 05:24 — forked from chourobin/.eslintrc
React Native General Eslint File
{
"parser": "babel-eslint",
"env": {
"browser": true
},
"plugins": [
"babel",
"react",
"react-native"
],

Font Face

A mixin for writing @font-face rules in SASS.

Usage

Create a font face rule. Embedded OpenType, WOFF2, WOFF, TrueType, and SVG files are automatically sourced.

@include font-face(Samplino, fonts/Samplino);