Skip to content

Instantly share code, notes, and snippets.

@shay360
shay360 / GoogleDorking.md
Created June 18, 2022 11:55 — 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"
@shay360
shay360 / const-let-var.js
Last active October 5, 2021 06:51
javascript :)
/*
The main difference between const let and var is the hoisting and initializing of them on runtime
while const and let will be added to temporal dead zone, the var will be available no matter where you are initializing him
*/
timeLet = 'time-let';
let timeLet = 'time-let-init';
console.log(timeLet); // Error
timeConst = 'time-const';
@shay360
shay360 / string-utils.js
Created May 28, 2020 05:58 — forked from jonlabelle/string-utils.js
Useful collection of JavaScript string utilities.
// String utils
//
// resources:
// -- mout, https://github.com/mout/mout/tree/master/src/string
/**
* "Safer" String.toLowerCase()
*/
function lowerCase(str) {
return str.toLowerCase();
@shay360
shay360 / r-debug.php
Created June 11, 2018 06:02 — forked from Rarst/r-debug.php
R Debug (set of dump helpers for debug)
<?php
/*
Plugin Name: R Debug
Description: Set of dump helpers for debug.
Author: Andrey "Rarst" Savchenko
Author URI: http://www.rarst.net/
License: MIT
*/
/**
@shay360
shay360 / json-schema.js
Created May 2, 2018 09:58 — forked from JamesMessinger/json-schema.js
Using JSON Schema in Postman
// Define the JSON Schema
const customerSchema = {
"required": ["id"],
"properties": {
"id": {
"type": "integer",
"minimum": 100,
"maximum": 1000
},
"name": {