Skip to content

Instantly share code, notes, and snippets.

View AbuArefinArooop's full-sized avatar

Abu Arefin Aroop AbuArefinArooop

View GitHub Profile
@AbuArefinArooop
AbuArefinArooop / GoogleDorking.md
Created October 3, 2023 16:52 — 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"
@AbuArefinArooop
AbuArefinArooop / python_mysql.py
Created July 31, 2023 05:48 — forked from bradtraversy/python_mysql.py
Python & MySQL crash course for beginners
import mysql.connector
from mysql.connector import errorcode
config = {
'user': 'root',
'password': '',
'host': 'localhost',
'database': 'acme'
}