Skip to content

Instantly share code, notes, and snippets.

View AHMED3T's full-sized avatar

Ahmed Rasool AHMED3T

View GitHub Profile
@AHMED3T
AHMED3T / gist:282b72d82e2bee101fb00b43da223b82
Created June 16, 2025 10:24
Partial unique fax index with default number
db.collection.createIndex(
{ "fax": 1 },
{
unique: true,
partialFilterExpression: {
$and: [
{ "fax": { $exists: true } },
{ "fax": { $ne: "(999) 999-9999" } }
]
}
🔥Complete Bug Bounty Cheat Sheet🔥
XSS
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/xss.md
https://github.com/ismailtasdelen/xss-payload-list
SQLi
https://github.com/EdOverflow/bugbounty-cheatsheet/blob/master/cheatsheets/sqli.md