Script to find which users have sudo access in Linux byHimanshu -October 09, 2020 Script to find which users have sudo access in LinuxScript:#!/bin/bashfor username in `cut -d: -f1 /etc/passwd` do sudo -U $username -ldoneIf you like please follow and comment
Post a Comment
Post a Comment