Iman Hajimostafazadeh
Iman Hajimostafazadeh

Reputation: 127

How to Secure SQLite database?

We have a windows application which is written by electron and SQLite as database, the problem is we want our application to secure the database file after its first authentication with database, and only have the application itself can modify the file, while preventing the windows standard user from modifying or deleting the file manually. What are the options here?

Upvotes: 4

Views: 1130

Answers (1)

Seyed Ali Davoodi
Seyed Ali Davoodi

Reputation: 26

You can use third-party applications like https://robotronic.de/runasspcen.html

Run application as another user or start program as administrator from a limited account like the command runas, but without to enter login information on each start.

RunAsSpc

Upvotes: 1

Related Questions