From 4445b2a091bff9808454f0d0815fa4f465d7a596 Mon Sep 17 00:00:00 2001 From: Trevor Elwell Date: Sun, 5 Jul 2020 22:16:09 -0400 Subject: [PATCH] add reference for priv esc when user is member of lxd group --- LinEnum.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/LinEnum.sh b/LinEnum.sh index d8c69f2..5e3bf13 100755 --- a/LinEnum.sh +++ b/LinEnum.sh @@ -1309,7 +1309,8 @@ fi #specific checks - are we a member of the lxd group lxdgroup=`id | grep -i lxd 2>/dev/null` if [ "$lxdgroup" ]; then - echo -e "\e[00;33m[+] We're a member of the (lxd) group - could possibly misuse these rights!\e[00m\n$lxdgroup" + echo -e "\e[00;33m[+] We're a member of the (lxd) group - could possibly misusse these rights!" + echo -e "\e[00;33See: https://book.hacktricks.xyz/linux-unix/privilege-escalation/lxd-privilege-escalation\e[00m\n$lxdgroup" echo -e "\n" fi }