Skip to main content

Basically we have disabled the screenshot feature for a certain group in my organization via JAMF Configuration Profiles, but recently we have found a loophole for users to take screenshots via enabling the “Show features for web developers” and then on Safari, going to Develop tab and “Show Web Inspector” > Elements tab and right click the html to show the option to “capture screenshot” and it will allow you to save the screenshot. We are trying to remediate this loophole by disabling the option to enable the web developers option. Anyone have any ideas? I have tried using Configuration Profile and using the Application & Custom Settings option, but could not get it to work using the plist I found online.

https://www.geeksforgeeks.org/techtips/how-to-take-screenshot-apple-safari/

 


Build a profile off these keys?

https://www.reddit.com/r/macsysadmin/comments/1k24wup/how_can_i_disable_or_prevent_the_use_of_show/


Configuration Profiles > Application & Custom Settings > Upload

 

preferences domain : com.apple.Safari.SandboxBroker

Property List : 

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>ShowDevelopMenu</key>
    <false/>
</dict>
</plist>


@mpuyet thank you so much, it worked!