Skip to content

Instantly share code, notes, and snippets.

View ccalok's full-sized avatar

alok choudhary ccalok

View GitHub Profile
@ccalok
ccalok / GoogleDorking.md
Created April 13, 2022 09:18 — 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"
@ccalok
ccalok / parsestruct.go
Created May 27, 2019 10:22
nested struct print with gaoling
package main
import (
"fmt"
"errors"
"reflect"
)