
CVE-2020-8835에 대한 교육용 커널 익스플로잇 구현 및 Docker 기반 테스트 환경으로 BPF 취약점 악용과 방어적 완화 기술을 시연합니다.
cd ../app
npm i
node server.js
# Make sure to be in the same directory as the Dockerfile
# Build the Docker image
docker build . -t inf8602/node-web-app
# Your docker image should be listed by Docker
docker images
# Run the image
docker run -p 8080:8080 -d inf8602/node-web-app
# Print the output of the app
docker ps #get the container id
docker logs <container id> # print app output
# Example
# Hello World
sudo sysctl kernel.unprivileged_bpf_disabled=1
cd ../app
npm i
node server.js
Open in Container