Skip to content

Instantly share code, notes, and snippets.

View mdhasnainali's full-sized avatar
:dependabot:
Learning

Md. Hasnain Ali mdhasnainali

:dependabot:
Learning
View GitHub Profile
@mdhasnainali
mdhasnainali / GoogleDorking.md
Created August 29, 2025 15:00 — 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"
@mdhasnainali
mdhasnainali / logging.ini
Created August 13, 2025 14:19 — forked from panamantis/logging.ini
Python logging configuration files (yaml, json, ini)
[loggers]
keys=root,app,uvicorn
[handlers]
keys=console,file,uvicorn
[formatters]
keys=console,file
[logger_root]
## install uv on OS
curl -LsSf https://astral.sh/uv/install.sh | sh
## Create venv
uv venv
uv venv my_env_name
uv venv --python 3.10 (Specific Python Version)
# Activate venv

MySQL Cheat Sheet

Help with SQL commands to interact with a MySQL database

MySQL Locations

  • Mac /usr/local/mysql/bin
  • Windows /Program Files/MySQL/MySQL version/bin
  • Xampp /xampp/mysql/bin

Add mysql to your PATH