Skip to content

Instantly share code, notes, and snippets.

View Badr-MOUFAD's full-sized avatar
lightning

Badr MOUFAD Badr-MOUFAD

lightning
View GitHub Profile
@Badr-MOUFAD
Badr-MOUFAD / GoogleDorking.md
Created May 18, 2023 15:17 — 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"
{
"asq": 1,
"certify": 1158,
"net": 71,
"assembly": 22,
"framework": 96,
"1": 20,
"3": 28,
"4": 18,
"reflector": 1,
@Badr-MOUFAD
Badr-MOUFAD / my-gist-python
Created June 12, 2021 22:25
This is a test gist to be embedded in Medium
import numpy as np
import matplotlib.pyplot as plt
x = linspace(0, 10, 1000)
f = lambda u: u ** 2
plt(x, f(x))