Linked Tables Security (1 Viewer)

G37Sam

Registered User.
Local time
Today, 14:19
Joined
Apr 23, 2008
Messages
454
Hello,

I was wondering, where does MS Access store the backend passwords of my linked tables? I'm just wondering, if a user manages to gain access to the frontend's design, can he somehow go into certain settings or system tables and figure out the backend password? Just a security concern of mine.

I'd appreciate any help on this

Cheers,
Sam
 

gemma-the-husky

Super Moderator
Staff member
Local time
Today, 11:19
Joined
Sep 12, 2006
Messages
15,660
possibly in the connection string

try

msgbox currentdb.tabledefs("sometable").connect

and see if it is embedded in there somwhere.
 

bparkinson

Registered User.
Local time
Today, 04:19
Joined
Nov 13, 2010
Messages
158
Yep, it reveals the password.

But my database is in the cloud, so I can't use Windows authentication. In a production environment, this would be fine because we would all be following best practices and using mixed-mode authentication, with users authenticated by their domain login. So no password in the .Connect property.

This begs the question of what to do if your production database is in the cloud.
 

G37Sam

Registered User.
Local time
Today, 14:19
Joined
Apr 23, 2008
Messages
454
Oh man, it did show!

Aah well, I'd rather store it than worry about the users having to remember and enter an extra password I guess.
 

Users who are viewing this thread

Top Bottom