We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/michoo/security_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
pyjwt.py•440 B
# If a JSON Web Token (JWT) is not signed with a strong cipher algorithm
# (or not signed at all) an attacker can forge it and impersonate user identities.
# Don’t use none algorithm to sign or verify the validity of a token.
# Don’t use a token without verifying its signature before.
import pyjwt
jwt.decode(token, verify = False) # Noncompliant
jwt.decode(token, key, options={"verify_signature": False}) # Noncompliant