Best Ways to Secure TinyWebDB

180 views
Skip to first unread message

Kanishka Chakraborty

unread,
Jan 6, 2018, 12:07:37 AM1/6/18
to MIT App Inventor Forum
After creating a TinyWebDB service of your own, comes the need for securing it. The first thing to do, is to change the index.html to basically a blank page, or a page linking to your app. The advanced problem, however, is that even though a person looking at your DataBase web service won't be able to read/write stuff, they can indeed copy the URL into a TinyWebDB component in their own app, and then wreak havoc on your service. The ways to save yourself (mostly) are:

1. Don't share the URL. That's the easiest thing to do, and your first line of defence.
2. Don't set ServiceURL in Designer, set it in blocks - not a normal text block, but an OBFUSCATED text block. Another layer of security from anyone tearing up the APK.
3. For all your tags, use a specific naming system with a keyphrase at the start. To store login detail, for example, you could do "sysadmin/passphrase/username" as tag, where passphrase and username are upto you of course. In the app, while joining strings for assembling the tag, again, put passphrase in an OBFUSCATED text block. This should prevent others from reading your data.

Don't hesitate to share your own ways, this is by no means an exhaustive list.

Happy Inventing,
Kanishka

Abraham Getzler

unread,
Jan 6, 2018, 9:19:37 PM1/6/18
to MIT App Inventor Forum
Reply all
Reply to author
Forward
0 new messages