You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 27, 2019. It is now read-only.
Hi.
Our security team tested your UI and found a vulnerability.
Here is a feedback from them:
Step-to-reproduce
Token leakage:
Access token stolen.
Internal resources access:
GET /v1/sys/capabilities-self?vaultaddr=https:%2F%2Fgit.wrke.in HTTP/1.1
Host: spb-off-vault01.team.wrike.com:8000
...
you got git.wrke.in content, but we assume, that attacker can no has access to it
Actual result
Token stolen, internal resources accessed
Expected result
No SSRF
Area of Responsibility
Other
Recommendation
Do not user input, take value of target host from configuration.
Currently in /src/vaultapi.js:
let vaultAddr = req.query.vaultaddr;
but should be something like this:
let vaultAddr =config['vaultaddr']
The text was updated successfully, but these errors were encountered: