I've found that my website is using id_token and it contains user's information. One of that is my phone number which I think it could be a sensitive information. Because, if the attackers are able to capture the request, they get my id_token and decode it. They have my email (obviously) and my phone number which I think should not be there. I'm confused that if my phone number gets disclosed, is that considered a vulnerability?
email: "weixxx@xxx.com",
email_verified: false,
phone_number: "+372591114xxx",
firebase: {
identities: {
phone: [
"+372591114xxx"
],
email: [
"weixxx@xxx.com"
]
},
sign_in_provider: "custom"
}
}.
[signature]
id_token? – Steffen Ullrich Dec 14 '18 at 06:44id_tokenresides on the URL. It could be captured, saved in logs, URLs may also be displayed on-screen, bookmarked or emailed around by users. Yes it's submitted via web though. @SteffenUllrich – Ender Dec 14 '18 at 07:51id_token? Or do you just mean a website you've visited, i.e. these private data are only sent to you? – Steffen Ullrich Dec 14 '18 at 08:28