Last active
November 7, 2020 01:54
-
-
Save phuctm97/192aa32e16c6cf7819d79fe6ad3dd38b to your computer and use it in GitHub Desktop.
💻 Authenticate sudo using Touch ID on macOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script enables authenticating `sudo` commands using Touch ID on macOS by adding a | |
# line 'auth sufficient pam_tid.so' to '/etc/pam.d/sudo'. | |
sudo python <<HEREDOC | |
import re | |
pam_cfg = '/etc/pam.d/sudo' | |
auth_re = re.compile(r'^auth\s+sufficient\s+') | |
tid_re = re.compile(r'^auth\s+sufficient\s+pam_tid.so') | |
def main(): | |
with open(pam_cfg, 'r') as f: | |
contents = f.readlines() | |
index = -1 | |
template = 'auth sufficient ' | |
for i, line in enumerate(contents): | |
if tid_re.match(line) != None: | |
return | |
m = auth_re.match(line) | |
if m != None: | |
index = i | |
template = m.group(0) | |
contents.insert(index + 1, template + 'pam_tid.so\n') | |
with open(pam_cfg, 'w') as f: | |
f.write(''.join(contents)) | |
main() | |
HEREDOC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment