Skip to content
Snippets Groups Projects
Commit b2f57d0b authored by Mateusz Tyszczak's avatar Mateusz Tyszczak :scroll: Committed by Bartek Wrona
Browse files

Handle unvalidated dynamic method call security vulnerability

parent e5bd455d
No related branches found
No related tags found
1 merge request!292Add other signature providers
......@@ -50,7 +50,12 @@ export class JsonRpcMock extends AProxyMockResolver {
// here we assume that the request is valid
const { method, params } = req.body;
const response = this.mockData[method](params);
const mockFn = this.mockData[method];
if (typeof mockFn !== "function")
throw new Error(`Method ${method} is not implemented`);
const response = mockFn(params);
res.json(response);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment