Skip to content

Instantly share code, notes, and snippets.

View Abhinandan-Khurana's full-sized avatar
😬
4b595a464d343343494e33574f5532484b5a5a5745525a594d354c454f32444d4d4e57564b32413d

Abhinandan Khurana Abhinandan-Khurana

😬
4b595a464d343343494e33574f5532484b5a5a5745525a594d354c454f32444d4d4e57564b32413d
View GitHub Profile
@Abhinandan-Khurana
Abhinandan-Khurana / GoogleDorking.md
Created June 29, 2025 19:13 — 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"
@Abhinandan-Khurana
Abhinandan-Khurana / default.md
Created June 25, 2025 10:52 — forked from cablej/default.md
Cluely System prompt

<core_identity> You are an assistant called Cluely, developed and created by Cluely, whose sole purpose is to analyze and solve problems asked by the user or shown on the screen. Your responses must be specific, accurate, and actionable. </core_identity>

<general_guidelines>

  • NEVER use meta-phrases (e.g., "let me help you", "I can see that").
  • NEVER summarize unless explicitly requested.
  • NEVER provide unsolicited advice.
  • NEVER refer to "screenshot" or "image" - refer to it as "the screen" if needed.
  • ALWAYS be specific, detailed, and accurate.
@Abhinandan-Khurana
Abhinandan-Khurana / flux-dev-under-8gbs.py
Created October 26, 2024 14:34 — forked from ariG23498/flux-dev-under-8gbs.py
Run FLUX Dev under 8gbs of VRAM.
# Taken from: https://gist.github.com/sayakpaul/23862a2e7f5ab73dfdcc513751289bea
from diffusers import FluxPipeline, FluxTransformer2DModel
from transformers import T5EncoderModel
import torch
import gc
def flush():
gc.collect()
@Abhinandan-Khurana
Abhinandan-Khurana / virustotal-scrape.sh
Created October 25, 2024 16:35 — forked from voker2311/virustotal-scrape.sh
Script that uses VirusTotal API to fetch subdomains
#!/bin/bash
target=$1
url="https://www.virustotal.com/api/v3/domains/$target/subdomains"
api_key="api_key over here" # Change this
if [[ $# -eq 0 ]];then
echo "[-] Usage: ./virus-scrape.sh <target.com>"
exit 1;
fi
@Abhinandan-Khurana
Abhinandan-Khurana / Palera1n-cheatsheet-ios-pentesting.md
Last active September 18, 2024 07:51 — forked from novitae/README.md
Palera1n & SSL Pinning / Reverse Cheatsheet

Palera1n & SSL Pinning / Reverse Cheatsheet

Jailbreak

  • Download latest release of palera1n.
  • Connect iphone to computer.
  • Jailbreak using palera1n --setup-fakefs --fakefs. This will setup fakefs to access to sudo later.
  • Once phone is running, run palera1n -f to load fakefs. Do it everytime you restart the phone to rejailbreak it, no need to do previous step if the phone wasn't reset.

Terminal

Connecting to SSH

  • Ensure openssh package is installed on Sileo
  • You can then connect to ssh mobile@IP
@Abhinandan-Khurana
Abhinandan-Khurana / x86-m1.md
Created June 18, 2024 09:20 — forked from tadhgboyle/x86-m1.md
running x86_64 `.ova` VMs on an m1 mac
  • install homebrew if you have not already

    • /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
  • install qemu

    • brew install qemu
  • extract the .ova file

    • tar -xvf /path/to/ova
@Abhinandan-Khurana
Abhinandan-Khurana / google_dorks.txt
Created May 16, 2024 09:56
google_dorks_for_SQLi_CCTV_LFI_sensitive_info
# Google Dorks Collection For Securiy Researchers
## What Is Google Dorks?
It is an advanced google search used for specific data enumeration!
## This document contains four types of google dorks:
> Google dorks for SQL injection,
> Google dorks for Local File Inclusion,
> Google dorks For open CCTV cams
@Abhinandan-Khurana
Abhinandan-Khurana / UIDevice_Jaibroken.swift
Created April 24, 2024 13:56 — forked from sdlee3/UIDevice_Jaibroken.swift
Jailbroken and Simulator detection
import Foundation
import UIKit
import MachO
extension UIDevice {
var isSimulator: Bool {
return TARGET_OS_SIMULATOR != 0
}