API Privilege Escalation Detection Tool Written in Python

API Privilege Escalation Detection Tool #!/usr/bin/env python3 """API Privilege Escalation Detection Tool 功能:检测Web接口的水平越权和垂直越权漏洞 作者:pp 版本:1.0""" import json import requests import time import hashlib import hmac import base64 from typing import Dict, List, Any, Optional from urllib.parse import urlparse, parse_qs import argparse import sys class APIPrivilegeEscalationScanner: """ API Privilege Escalation Detector """ def __init__(self, config: Dict[str, … Read more

Linux Lesson 5: Web Security Vulnerabilities

Linux Lesson 5: Web Security Vulnerabilities

1.1 Web Security Vulnerabilities Before discussing web vulnerabilities, let me briefly talk about web security knowledge. Let’s briefly understand the knowledge related to computer networks and protocols. Composition of Computer Communication Networks A computer network consists of a communication subnet and a resource subnet. The communication subnet is responsible for the error-free and orderly transmission … Read more