mock-server
Enables developers to create and manage mock API servers for testing and development, simulating various scenarios and responses.
Install this skill
Security score
The mock-server skill was audited on Feb 28, 2026 and we found 23 security issues across 4 threat categories. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 520 | console.log(`Mock server running on http://localhost:${PORT}`); |
Template literal with variable interpolation in command context
| 585 | console.log(`GraphQL mock server ready at ${url}`); |
Curl to non-GitHub URL
| 79 | curl http://localhost:3000/users |
Curl to non-GitHub URL
| 82 | curl http://localhost:3000/users/1 |
Curl to non-GitHub URL
| 85 | curl -X POST http://localhost:3000/users \ |
Curl to non-GitHub URL
| 90 | curl -X PUT http://localhost:3000/users/1 \ |
Curl to non-GitHub URL
| 95 | curl -X PATCH http://localhost:3000/users/1 \ |
Curl to non-GitHub URL
| 100 | curl -X DELETE http://localhost:3000/users/1 |
Curl to non-GitHub URL
| 103 | curl "http://localhost:3000/users?_page=1&_limit=10" |
Curl to non-GitHub URL
| 104 | curl "http://localhost:3000/users?_sort=name&_order=asc" |
Curl to non-GitHub URL
| 105 | curl "http://localhost:3000/posts?userId=1" |
Access to .env file
| 244 | if (process.env.NODE_ENV === 'development') { |
Access to .env file
| 518 | const PORT = process.env.PORT || 3000; |
External URL reference
| 79 | curl http://localhost:3000/users |
External URL reference
| 82 | curl http://localhost:3000/users/1 |
External URL reference
| 85 | curl -X POST http://localhost:3000/users \ |
External URL reference
| 90 | curl -X PUT http://localhost:3000/users/1 \ |
External URL reference
| 95 | curl -X PATCH http://localhost:3000/users/1 \ |
External URL reference
| 100 | curl -X DELETE http://localhost:3000/users/1 |
External URL reference
| 103 | curl "http://localhost:3000/users?_page=1&_limit=10" |
External URL reference
| 104 | curl "http://localhost:3000/users?_sort=name&_order=asc" |
External URL reference
| 105 | curl "http://localhost:3000/posts?userId=1" |
External URL reference
| 520 | console.log(`Mock server running on http://localhost:${PORT}`); |