Skip to content

Instantly share code, notes, and snippets.

View morteza144's full-sized avatar

morteza morteza144

View GitHub Profile
@morteza144
morteza144 / GoogleDorking.md
Created June 8, 2022 22:41 — 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"
function mori(a){
b=a.split('-');
c=b.filter((a,b)=>b>0);
d=c.map(x=>x);
e= d.map(x=>x.charAt(0).toUpperCase()+x.substr(1)).join('');
return b[0]+e;
}
@morteza144
morteza144 / mori1
Created July 18, 2021 08:46
camalize hello-mori helloMori
function mori(a){
b=a.split('-');
c=b.filter((a,b)=>b>0);
d=c.map(x=>x);
e= d.map(x=>x.charAt(0).toUpperCase()+x.substr(1)).join('');
return b[0]+e;
}