Why I Actively Discourage Online Tooling like jwt.io and Online JSON Validators
41–50 of 170 posts
Re: Why I Actively Discourage Online Tooling like jwt.io and Online JSON Validators
#42For inspecting JWT tokens, I like the step command-line tool: https://smallstep.com/cli/ pbpaste | step crypto jwt inspect --insecure It can be combined further with jq if you need to dig out a specific field. (pbpaste is a macOS cli command that prints the contents of the clipboard)
Re: Why I Actively Discourage Online Tooling like jwt.io and Online JSON Validators
#43 gen-pass(){
gpg2 --armor --gen-random 1 15
}
gen-pass2(){
openssl rand -base64 15
}
gen-pass3(){
strings -n 1
edit:formattingRe: Why I Actively Discourage Online Tooling like jwt.io and Online JSON Validators
#44For those criticizing the author for 'fantasy' security problems, it seems relevant to emphasize that they work at a bank---their threat model is probably rather more vigorous than most.
Until one day when you work with ACH files and start having existential dread about the american payroll system.
Re: Why I Actively Discourage Online Tooling like jwt.io and Online JSON Validators
#45Webapps like jwt.io run locally in your browser and you can monitor traffic, prevent further requests or even run them yourself to make sure of this. This post is misinformed at best.
did you validate that those sites do not batch data input over time and send them out, much later than your direct user input interactions?
I think that is correct.
Also I agree with previous posters who pointed out that for the common JWT use-case: user authentication in an SPA or website, the JWT is running in users browsers and so should not contain any sensitive information to begin with.
Re: Why I Actively Discourage Online Tooling like jwt.io and Online JSON Validators
#46The browser could recognise that tag and you get a safe space for people to copy/paste/interact with online web tools.
I'm pretty sure you can do this with WASM right now, but the browser doesn't inform the user that this is a safe space.
Re: Why I Actively Discourage Online Tooling like jwt.io and Online JSON Validators
#47Earlier quoted context omitted.
So I'm not the only one. It's even worse than that though, enter 'myintranetsite' and hit return, and you end up on a Google search page. Instead you have to enter ' http://myintranetsite'
Type myintranetsite/ instead, this is faster than http:// in front.
If you prefix with "http://", no requests are made to Google (except "h", "ht", "htt", "http", and "http:")
Re: Why I Actively Discourage Online Tooling like jwt.io and Online JSON Validators
#48(I work at msft)
Re: Why I Actively Discourage Online Tooling like jwt.io and Online JSON Validators
#49Re: Why I Actively Discourage Online Tooling like jwt.io and Online JSON Validators
#50Earlier quoted context omitted.
Sure, but to be sure you’d have to validate it every time, because the site’s content may have changed since your last visit. Do you?
No, you'd just have to validate it when you're inputting something particularly sensitive (and I really do usually look in the network console when I'm doing something like that)