Skip to content

Instantly share code, notes, and snippets.

View panchitofelix's full-sized avatar

Francisco Felix Verdin panchitofelix

View GitHub Profile
@panchitofelix
panchitofelix / flutter-instalaciones.md
Created April 12, 2023 23:59 — forked from Klerith/flutter-instalaciones.md
Instalaciones del curso de Flutter - Móvil de cero a experto
@panchitofelix
panchitofelix / GoogleHackMasterList.txt
Created June 16, 2021 18:52 — forked from gabsoftware/GoogleHackMasterList.txt
The definitive super list for "Google Hacking".
admin account info" filetype:log
!Host=*.* intext:enc_UserPassword=* ext:pcf
"# -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) "# -FrontPage-" inurl:service.pwd
"AutoCreate=TRUE password=*"
"http://*:*@www” domainname
"index of/" "ws_ftp.ini" "parent directory"
"liveice configuration file" ext:cfg -site:sourceforge.net
"parent directory" +proftpdpasswd
Duclassified" -site:duware.com "DUware All Rights reserved"
duclassmate" -site:duware.com
@panchitofelix
panchitofelix / plugins.md
Created May 24, 2019 00:41 — forked from Klerith/plugins.md
Lista de plugins que uso en VSC
@panchitofelix
panchitofelix / functions.php
Created July 13, 2018 02:57 — forked from codigoconjuan/functions.php
Paginación en WordPress con WP_Query
function custom_pagination($numpages = '', $pagerange = '', $paged='') {
if (empty($pagerange)) {
$pagerange = 2;
}
/**
* This first part of our function is a fallback
* for custom pagination inside a regular loop that
* uses the global $paged and global $wp_query variables.