Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on an implementation in Salesforce for a customer which involves setting up partner module. We cannot setup access rights on User object standard fields based on profiles, and using partner login info, you can access all user info from Dataloader or Apex Explorer, which looks like a security hole in Salesforce.

Does anyone faced this issue before or has a workaround?

share|improve this question
1  
Hi Nitesh, I can see this is attracting close votes because SFDC development doesn't always involve coding. I'm proposing a Salesforce stack exchange site here: area51.stackexchange.com/proposals/37589/salesforce Please follow and put an (abridged) version of your question there! – LaceySnr Jan 20 '12 at 23:09
Also, when you say all user info, do you mean user info on their own record or on other user records? – LaceySnr Jan 20 '12 at 23:10
I meant all user records.. – Nitesh Jan 21 '12 at 0:24

1 Answer

If I am understanding you correctly, your concern is that you can access all of the User records using the Login information provided by your customer.

I agree that this is a security issue, but I don't believe it is Salesforce specific as much as the security practices of your customer. If the user credentials won't need to access information via the data loader or Apex Explorer, then they should remove the "API Enabled" permission from the profile. If the credentials should only have API Access they should turn on the "API Only User" permission on the profile.

What it comes down to is they need to restrict the "un-trusted" users to only the permissions and access levels that they need. I have found the profile permissions to be capable of meeting all of my security needs.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.