Question:You are configuring NTFS file permissions for a Web application with the following
Web.config file:
<configuration>
<system.web>
<authentication mode=\"Windows\" />
<authorization>
<deny users=\"?\" />
</authorization>
</system.web>
<location path=\"Marketing\">
<system.web>
<authorization>
<allow roles=\"FABRIKAM\\Marketing\" />
<deny users=\"*\" />
</authorization>
</system.web>
</location>
</configuration>
For the Marketing folder, you remove all file permissions, and then grant read access to
the FABRIKAM\\John and FABRIKAM\\Sam user accounts. John is a member of the FABRIKAM\\
Domain Users and FABRIKAM\\Marketing groups. Sam is only a member of the
FABRIKAM\\Domain Users group. Which of the following users can access Web forms
located in the Marketing folder?