Skip to content

Instantly share code, notes, and snippets.

@ilkeroralkasim
ilkeroralkasim / GoogleDorking.md
Created June 9, 2022 20:06 — 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"
@ilkeroralkasim
ilkeroralkasim / pixelate.py
Created March 16, 2021 13:03 — forked from scottrogowski/pixelate.py
Pixelate image in python
#!/usr/bin/env python
# This script will pixelate most jpg and png images
# It will both show you the result and save it
import sys
import matplotlib.pyplot as plt
import numpy as np
import PIL.Image as Image
@ilkeroralkasim
ilkeroralkasim / 2048.py
Created July 28, 2016 12:28 — forked from lewisjdeane/2048.py
2048 main game file written in python
# 2048 Game written using the Pygame module
#
# Lewis Deane
# 23/12/2014
import pygame, sys, time
from pygame.locals import *
from colours import *
from random import *