Skip to content

Instantly share code, notes, and snippets.

View sathishlkumar's full-sized avatar

SATHISHKUMAR P sathishlkumar

View GitHub Profile
@sathishlkumar
sathishlkumar / GoogleDorking.md
Created December 16, 2021 16:22 — 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"
@sathishlkumar
sathishlkumar / JavascriptRecon.md
Created December 13, 2021 13:48
My Javascript Recon Process - BugBounty

Description

This is a simple guide to perform javascript recon in the bugbounty

Steps

  • The first step is to collect possibly several javascript files (more files = more paths,parameters -> more vulns)
@sathishlkumar
sathishlkumar / execute.php
Created November 25, 2021 15:09 — forked from janmasarik/execute.php
source code from DEF CON Quals 2018 - Easy Pisy challenge
<?php
include 'common.php';
if ($_SERVER['REQUEST_METHOD'] === 'GET') {
print highlight_string(file_get_contents("execute.php"), TRUE);
exit(0);
}
$keys = get_keys();
@sathishlkumar
sathishlkumar / secret_pickle.py
Created November 25, 2021 15:02 — forked from janmasarik/secret_pickle.py
Python source code for Blaze CTF 2018 - secret_pickle
#!/usr/bin/env python3
import pickle
import hashlib
import os
import sys
class Note:
def __init__(self, name, date, content):
self.name = name
self.date = date