diff --git a/05_php_addressbook.md b/05_php_addressbook.md
deleted file mode 100644
index f9a23bb..0000000
--- a/05_php_addressbook.md
+++ /dev/null
@@ -1,99 +0,0 @@
-# Enable PHP in Nginx
-
-run in bash:
-
-```bash
-sudo apt install php-fpm -y
-```
-
-get php version/sock
-
-```bash
-ls -l /run/php/*.sock
-```
-
-add to nginx config (server section):
-
-```nginx
-# pass PHP scripts to FastCGI server
-#
-location ~ \.php$ {
- include snippets/fastcgi-php.conf;
- fastcgi_pass unix:/run/php/php8.4-fpm.sock; # <-- use version from output above!
-}
-```
-
-validate nginx configuration & restart if ok:
-
-```bash
-sudo nginx -t
-sudo systemctl reload nginx
-```
-
-create Demo-App:
-
-```bash
-sudo vi /var/www/*domain-name*/*webapp*.php
-```
-
-## Demo Webapp (Addressbook)
-
-```php
-
-
-
-
-
- Demo: Addressbook
-
-
-
- Einfaches Adressbuch
-
-
-
-
-
- Einträge:
-
-
- Benutzer:
-
-
-
- Liste leeren
-
-
-
-
-```
-
-create txt file (as database):
-
-```bash
-cd /var/www/*domain-name*
-sudo touch names.txt
-sudo chown www-data:www-data names.txt
-sudo chown www-data:www-data *webapp*
-```
-
-testing the webapp:
-
-```
-http://*domain-name*/*webapp*.php
-```
-
diff --git a/06_xss_demo.md b/06_xss_demo.md
deleted file mode 100644
index f4b6281..0000000
--- a/06_xss_demo.md
+++ /dev/null
@@ -1,25 +0,0 @@
-# XSS/CSP Demo
-
-## Environment
-Demo App -> [Addressbook](enable_php.md)
-
-## Demo
-check that csp is not set in nginx
-
-## Browser
-add following name & press "Speichern":
-
-```html
-Charlie
-```
-
-and now type on your keyboard...
-
-## CSP
-set CSP in nginx config
-
-```nginx
-add_header Content-Security-Policy "default-src 'self'; script-src 'self';" always;
-```
-
-repeat the Demo.
\ No newline at end of file
diff --git a/07_CSP.md b/07_CSP.md
deleted file mode 100644
index 6ed54fc..0000000
--- a/07_CSP.md
+++ /dev/null
@@ -1,147 +0,0 @@
-# CSP
-
-## XSS/CSP Demo
-Using Demo-App [Addressbook](enable_php.md)
-
-Using Instructions [XSS-Demo](xss_demo.md)
-
-## Preparing Website for exercise
-as simple playground...add following code-block to the index.html (or index.nginx-debian.html) before **`