Skip to content

Instantly share code, notes, and snippets.

View ApijaySh's full-sized avatar
:octocat:
Focusing

Apijay ApijaySh

:octocat:
Focusing
View GitHub Profile
@ApijaySh
ApijaySh / GoogleDorking.md
Created June 14, 2023 13:09 — 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"
@ApijaySh
ApijaySh / peopleCounter.py
Created February 14, 2020 18:25 — forked from jotathebest/peopleCounter.py
Pedestrian detector that sends people counter results to Ubidots. Libraries: OpenCV, requests, imutils
from imutils.object_detection import non_max_suppression
import numpy as np
import imutils
import cv2
import requests
import time
import argparse
import time
'''