Reputation: 118
I recently started to learn about .Net MAUI Blazor apps and have some difficulties understanding if the C# code used in the components is "safe".
Things I know:
So my question is: While using .Net MAUI (the Blazor app variant), is the C# code running inside the components "safe" or is it like WASM where the code can be accessed by the client ?
Upvotes: 4
Views: 1507
Reputation: 21321
"Not Safe".
Its inside your app. Therefore its on the client device. OTOH, its not as exposed as dynamically downloading code to a browser.
The question to ask yourself is whether you consider it safe to directly access database from an app.
Specifically, jailbroken devices can compromise an app.
And the communication might have vulnerabilities (though you will use https to minimize those).
Upvotes: 2