blob: 8276bd3a7dbc1d284ee0a068ecd6dd9cd747d848 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# -*- shell-script -*-
# DESCRIPTION: safeguards to prevent security exploitations
# Prevents a program or shell function from pretending to be sudo
sudo () {
/usr/bin/sudo --prompt $'\e[01;32m[sudo] password for '"$USER"$': \033[00m' "$@"
}
|