diff --git a/Privesc/.gitignore b/Privesc/.gitignore new file mode 100644 index 0000000..e4e5f6c --- /dev/null +++ b/Privesc/.gitignore @@ -0,0 +1 @@ +*~ \ No newline at end of file diff --git a/Privesc/Challenges/Sudo_Challenge_1/docker-compose.yaml b/Privesc/Challenges/Sudo_Challenge_1/docker-compose.yaml new file mode 100644 index 0000000..825d4fb --- /dev/null +++ b/Privesc/Challenges/Sudo_Challenge_1/docker-compose.yaml @@ -0,0 +1,8 @@ +version: "3" + +services: + ssh: + image: cueh/245_sudo_challenge_1 + #Uncomment this to map SSH to localhost + #ports: + # - "22:22" diff --git a/Privesc/Challenges/Sudo_Challenge_2/docker-compose.yaml b/Privesc/Challenges/Sudo_Challenge_2/docker-compose.yaml new file mode 100644 index 0000000..71e0d75 --- /dev/null +++ b/Privesc/Challenges/Sudo_Challenge_2/docker-compose.yaml @@ -0,0 +1,8 @@ +version: "3" + +services: + ssh: + image: cueh/245_sudo_challenge_2 + #Uncomment this to map SSH to localhost + #ports: + # - "22:22" diff --git a/Privesc/Challenges/Suid_Challenge_1/docker-compose.yaml b/Privesc/Challenges/Suid_Challenge_1/docker-compose.yaml new file mode 100644 index 0000000..4d48926 --- /dev/null +++ b/Privesc/Challenges/Suid_Challenge_1/docker-compose.yaml @@ -0,0 +1,8 @@ +version: "3" + +services: + ssh: + image: cueh/245_suid_challenge_1 + #Uncomment this to map SSH to localhost + #ports: + # - "22:22" diff --git a/Privesc/Challenges/Suid_Challenge_2/docker-compose.yaml b/Privesc/Challenges/Suid_Challenge_2/docker-compose.yaml new file mode 100644 index 0000000..ef97d25 --- /dev/null +++ b/Privesc/Challenges/Suid_Challenge_2/docker-compose.yaml @@ -0,0 +1,8 @@ +version: "3" + +services: + ssh: + image: cueh/245_suid_challenge_2 + #Uncomment this to map SSH to localhost + #ports: + # - "22:22" diff --git a/Privesc/Demos/Capbility_Demo/docker-compose.yaml b/Privesc/Demos/Capbility_Demo/docker-compose.yaml new file mode 100644 index 0000000..555d5ad --- /dev/null +++ b/Privesc/Demos/Capbility_Demo/docker-compose.yaml @@ -0,0 +1,8 @@ +version: "3" + +services: + ssh: + image: cueh/245_capability_demo + #Uncomment this to map SSH to localhost + #ports: + # - "22:22" diff --git a/Privesc/Demos/SudoDemo/docker-compose.yaml b/Privesc/Demos/SudoDemo/docker-compose.yaml new file mode 100644 index 0000000..ca86937 --- /dev/null +++ b/Privesc/Demos/SudoDemo/docker-compose.yaml @@ -0,0 +1,8 @@ +version: "3" + +services: + ssh: + image: cueh/245_sudo_demo + #Uncomment this to map SSH to localhost + #ports: + # - "22:22" diff --git a/Privesc/Demos/Suid_Demo_File/docker-compose.yaml b/Privesc/Demos/Suid_Demo_File/docker-compose.yaml new file mode 100644 index 0000000..451ead9 --- /dev/null +++ b/Privesc/Demos/Suid_Demo_File/docker-compose.yaml @@ -0,0 +1,8 @@ +version: "3" + +services: + ssh: + image: cueh/245_suid_demo_file + #Uncomment this to map SSH to localhost + #ports: + # - "22:22" diff --git a/Privesc/Demos/Suid_Demo_Path/docker-compose.yaml b/Privesc/Demos/Suid_Demo_Path/docker-compose.yaml new file mode 100644 index 0000000..baf162d --- /dev/null +++ b/Privesc/Demos/Suid_Demo_Path/docker-compose.yaml @@ -0,0 +1,8 @@ +version: "3" + +services: + ssh: + image: cueh/245_suid_demo_path + #Uncomment this to map SSH to localhost + #ports: + # - "22:22" diff --git a/Privesc/README.md b/Privesc/README.md new file mode 100644 index 0000000..001064c --- /dev/null +++ b/Privesc/README.md @@ -0,0 +1,5 @@ +# Lab Tasks for Privilege Escalation + + +Demos will follow the Course material +Challenges you are on your own