Skip to content

Instantly share code, notes, and snippets.

View akasakaid's full-sized avatar
😈

Fawwaz Thoerif akasakaid

😈
View GitHub Profile
@akasakaid
akasakaid / django-database-standalone.py
Created August 14, 2024 05:38 — forked from mw3i/django-database-standalone.py
Truly Standalone Django-ORM Wrapper
'''
Proof of Concept:
Django devs built an ORM that seems way more straightforward than many existing tools. This class lets you leverage the django-orm without any project settings or other aspects of a django setup.
There are probably weak points and functionality missing, but it seems like a relatively intuitive proof of concept
'''
import os
import django
from django.conf import settings
@akasakaid
akasakaid / GoogleDorking.md
Created January 19, 2023 03:25 — 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"