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
print-password.py•368 B
import os
def insecure_function(password):
print("Received password: " + password)
user_input = "sensitivePassword"
insecure_function(user_input)
# (CWE-359)
# This sample Python file contains a function that prints a password to the console without any security measures.
# It can be used to test SAST tools' ability to identify sensitive information exposure.