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
sample.js•368 B
function insecureFunction(password) {
console.log("Received password: " + password);
}
var userInput = "sensitivePassword";
insecureFunction(userInput);
// (CWE-359)
// This sample JavaScript file contains an insecure function that logs a password to the console.
// It can be used to test SAST tools' ability to identify sensitive information exposure.