Skip to content

Instantly share code, notes, and snippets.

View bx33661's full-sized avatar
🌎
Working from home

Bpple bx33661

🌎
Working from home
View GitHub Profile
@bx33661
bx33661 / attack.py
Created November 5, 2025 06:57
NoSQL注入示例基于MongoDB
import requests
import string
import re
TARGET_USERNAME = "admin"
# "神谕"的判断依据
SUCCESS_MESSAGE = "登录成功"
CHARSET = string.ascii_letters + string.digits + "!@#$%^&*()_+-=[]{}|;:,.<>?/`~"