NetCoreDataAdapter Security Concerns
Posted: Sun Jan 14, 2024 5:48 am
im using Js version of stimulsoft and .Net8 (Net Core) as server side data adapter processing from your github open source project (https://github.com/stimulsoft/DataAdapt ... taAdapters).
I've set data adapter URL like this =>
when the viewer makes request to data adapter url with an encrypted request body that contains SqlConnection strings and sql command text and some others parameters.
that encrypted data can be decrypted easily by:
1- Use ROT13 method https://github.com/stimulsoft/DataAdapt ... er.cs#L170.
2- from step 1 you get a valid base64 string then decode that base64 then you will get a plain json text that have all sensitive information.
so isn't that a security issue ??
Regards.
I've set data adapter URL like this =>
Code: Select all
StiOptions.WebServer.url = "/DataAdapters"
that encrypted data can be decrypted easily by:
1- Use ROT13 method https://github.com/stimulsoft/DataAdapt ... er.cs#L170.
2- from step 1 you get a valid base64 string then decode that base64 then you will get a plain json text that have all sensitive information.
so isn't that a security issue ??
Regards.