I’m also having authentication problems with BRU PE. I have a mac pro (old tower version) that is still running El Capitan. However, I updated El Capitan to 10.11.6 (15G22010) and BRU PE stopped accepting the admin password when starting up.
I updated BRU PE itself, and it stopped asking for admin password upon starting up. I’ve been able to make backups no problem. However the first time I tried to do a restore, it failed saying “no valid sudoers sources found”.
I have spent the past 2 hours working on fixing my “sudoers” files, and apparently BRU has enabled itself to bypass the admin password (awesome, entering my admin password every time I start up was a pain in the butt, although I understand why it needed to do so.).
Ultimately I created an applescript file that changed the ownership of /etc/sudoers, /etc/sudoers.d, and /etc/sudoers.d/BRUExemptions to all be permissions 440. This got the restore to work, however it throws errors saying that it cannot modify the permissions of the files it is restoring.
At the moment, I’ve been able to successfully restore my files, but I fear that if I need to restore more than just a few files, it might fail (I read elsewhere that you can override how many permisssions problems it will allow before quitting?).
For those who want to replicate my applescript:
– open script editor (/Applications/Utilities)
– enter the following into the script:
do shell script “chown root:wheel /etc/sudoers; chmod 440 /etc/sudoers; chmod -N /etc/sudoers” with administrator privileges
do shell script “chown root:wheel /etc/sudoers.d; chmod 440 /etc/sudoers.d; chmod -N /etc/sudoers.d” with administrator privileges
do shell script “chown root:wheel /etc/sudoers.d/BRUExemptions; chmod 440 /etc/sudoers.d/BRUExemptions; chmod -N /etc/sudoers.d/BRUExemptions” with administrator privileges
– click “compile” in the script menu
– click “run” in the script menu
– Authenticate as admin in the system dialog
Then open and run BRU PE and hope it works for you like it did for me!