Blog: Jeremy Warner
Jeremy Warner's Blog
Posts
Categories
Tags
Jeremy Warner's Blog
Posts
Categories
Tags
Generative Art 2Art 2Links 2WebDev 4Vue Ecosystem 3Flowers 1Wildflowers 1Black Hills 2Dotnet 2Development 2Visual Studio 1Nuget 1Outdoors 1Camping 1RTT 1Family 1
JWT Decode in Visual Studio

Posted: 5/4/2025
Category:
Blog
Tags:
Dotnet
Development
Visual Studio

I recently found out that there is a built-in JWT decoder in Visual Studio's Text Visualizer. This made my life just a bit easier when debugging token issues this past week - instead of copying out the string and dropping it onto a third party site like jwt.io, I could see the token's values right in Visual Studio.

Continue Reading >>
Identifying Vulnerable Nuget Packages - A Mystery (Solved)

Posted: 4/29/2025
Category:
Blog
Tags:
Dotnet
Nuget
Development

I'm working on updating packages on multiple projects to eliminate vulnerable nuget packages. We have been doing this on a recurring basis for some time, but I recently got a script built to do better searches across transitive dependencies in all projects under a given path. And... it's exposed quite a few more packages that need to be updated. The basic command I'm using to identify vulnerable packages is dotnet list package --vulnerable --include-transitive.

Continue Reading >>