├── Dockerfile ├── README.md ├── app ├── html │ └── index.html └── training │ ├── Autoload.php │ ├── Output.php │ ├── Route.php │ ├── View.php │ ├── controllers │ ├── CSRF.php │ ├── Home.php │ ├── IDOR.php │ ├── LFI.php │ ├── OpenRedirect.php │ ├── RCE.php │ ├── SQLi.php │ ├── SSRF.php │ ├── Upload.php │ ├── XSS.php │ └── XXE.php │ ├── data │ ├── blogcomments │ │ ├── 1605946074.txt │ │ ├── 1606601736.txt │ │ ├── 1606799176.txt │ │ ├── 1606799181.txt │ │ ├── 1606799188.txt │ │ ├── 1606799261.txt │ │ ├── 1606799292.txt │ │ ├── 1606799386.txt │ │ └── 1606799469.txt │ ├── csrf │ │ └── data.txt │ ├── images │ │ ├── cat1.jpg │ │ ├── cat2.jpg │ │ ├── cat3.jpg │ │ ├── cat4.gif │ │ └── cat5.jpg │ └── test.txt │ ├── models │ └── Http.php │ ├── public │ ├── contacts.xml │ ├── css │ │ └── bootstrap.min.css │ ├── evil.xml │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ └── pic.jpg │ ├── index.php │ ├── js │ │ ├── bootstrap.min.js │ │ └── jquery.min.js │ ├── screenshots │ │ ├── 000d0ede39250e1f69a14f2e82532d65.jpg │ │ ├── 0cdb4db49bfbb9bdbe054385ffb325fc.jpg │ │ ├── 2729e75cb8cbdd0355f7be90f48779df.jpg │ │ ├── 2b94f05776233079db8405f0a67c69ab.jpg │ │ ├── 3c71d453b10394dfb8352c308403bdd0.jpg │ │ ├── 55ae3a70bb5c10170cb25c29c6230d7e.jpg │ │ ├── 741beaefebbefeda751b0092aaed0df6.jpg │ │ ├── 8621cce262cdabf4244bf01fe69a8cfd.jpg │ │ ├── 8ac79bc2e512be56256af1ae359076ac.jpg │ │ ├── 8b49500aa7f0f76d0323d0077f23ab53.jpg │ │ ├── 93f3c268332af6a999c42a4db9faebf1.jpg │ │ ├── a3258584cbb46c31e972a05494b31ced.jpg │ │ ├── b0fd1978534e54285d6c5c09d6d0a8f6.pdf │ │ ├── bb09d5a3a51f177373e579648c4c89aa.pdf │ │ ├── e249c5044203b3c658a7ca8dff7d99eb.jpg │ │ └── e9464cb85c678785474a4d3b744a5a5c.pdf │ ├── sitemap.xml │ └── uploads │ │ ├── filelist.json │ │ └── filelist2.json │ ├── routes │ └── url.php │ └── templates │ ├── 404.php │ ├── csrf │ ├── dash.php │ ├── email.php │ ├── login.php │ ├── notifications.php │ ├── password.php │ └── reset.php │ ├── idor │ └── lesson1.php │ ├── invalid.php │ ├── lfi │ └── lesson1.php │ ├── list.php │ ├── or │ └── lesson1-2.php │ ├── rce │ ├── lesson1.php │ ├── lesson2.php │ └── lesson3.php │ ├── sqli │ ├── article.php │ ├── lesson1.php │ └── lesson2.php │ ├── ssrf │ ├── lesson1.php │ ├── lesson2.php │ ├── lesson3.php │ ├── lesson4-5.php │ ├── lesson4.php │ ├── lesson5.php │ └── lesson7.php │ ├── upload │ ├── lesson1.php │ └── lesson2.php │ ├── xss │ ├── lesson1.php │ ├── lesson2.php │ ├── lesson3.php │ └── lesson4.php │ └── xxe │ ├── lesson1.php │ └── lesson2.php ├── db.sql ├── default └── startup.sh /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/README.md -------------------------------------------------------------------------------- /app/html/index.html: -------------------------------------------------------------------------------- 1 | {status: ok} 2 | -------------------------------------------------------------------------------- /app/training/Autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/Autoload.php -------------------------------------------------------------------------------- /app/training/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/Output.php -------------------------------------------------------------------------------- /app/training/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/Route.php -------------------------------------------------------------------------------- /app/training/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/View.php -------------------------------------------------------------------------------- /app/training/controllers/CSRF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/controllers/CSRF.php -------------------------------------------------------------------------------- /app/training/controllers/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/controllers/Home.php -------------------------------------------------------------------------------- /app/training/controllers/IDOR.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/controllers/IDOR.php -------------------------------------------------------------------------------- /app/training/controllers/LFI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/controllers/LFI.php -------------------------------------------------------------------------------- /app/training/controllers/OpenRedirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/controllers/OpenRedirect.php -------------------------------------------------------------------------------- /app/training/controllers/RCE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/controllers/RCE.php -------------------------------------------------------------------------------- /app/training/controllers/SQLi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/controllers/SQLi.php -------------------------------------------------------------------------------- /app/training/controllers/SSRF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/controllers/SSRF.php -------------------------------------------------------------------------------- /app/training/controllers/Upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/controllers/Upload.php -------------------------------------------------------------------------------- /app/training/controllers/XSS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/controllers/XSS.php -------------------------------------------------------------------------------- /app/training/controllers/XXE.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/controllers/XXE.php -------------------------------------------------------------------------------- /app/training/data/blogcomments/1605946074.txt: -------------------------------------------------------------------------------- 1 | Wow, that's really interesting! -------------------------------------------------------------------------------- /app/training/data/blogcomments/1606601736.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/training/data/blogcomments/1606799176.txt: -------------------------------------------------------------------------------- 1 | adas -------------------------------------------------------------------------------- /app/training/data/blogcomments/1606799181.txt: -------------------------------------------------------------------------------- 1 | asdsada -------------------------------------------------------------------------------- /app/training/data/blogcomments/1606799188.txt: -------------------------------------------------------------------------------- 1 | asdada -------------------------------------------------------------------------------- /app/training/data/blogcomments/1606799261.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/training/data/blogcomments/1606799292.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/training/data/blogcomments/1606799386.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/training/data/blogcomments/1606799469.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/data/blogcomments/1606799469.txt -------------------------------------------------------------------------------- /app/training/data/csrf/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/data/csrf/data.txt -------------------------------------------------------------------------------- /app/training/data/images/cat1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/data/images/cat1.jpg -------------------------------------------------------------------------------- /app/training/data/images/cat2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/data/images/cat2.jpg -------------------------------------------------------------------------------- /app/training/data/images/cat3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/data/images/cat3.jpg -------------------------------------------------------------------------------- /app/training/data/images/cat4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/data/images/cat4.gif -------------------------------------------------------------------------------- /app/training/data/images/cat5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/data/images/cat5.jpg -------------------------------------------------------------------------------- /app/training/data/test.txt: -------------------------------------------------------------------------------- 1 | dsfsfdf 2 | -------------------------------------------------------------------------------- /app/training/models/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/models/Http.php -------------------------------------------------------------------------------- /app/training/public/contacts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/contacts.xml -------------------------------------------------------------------------------- /app/training/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /app/training/public/evil.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/evil.xml -------------------------------------------------------------------------------- /app/training/public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/training/public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/training/public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/training/public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /app/training/public/images/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/images/pic.jpg -------------------------------------------------------------------------------- /app/training/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/index.php -------------------------------------------------------------------------------- /app/training/public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /app/training/public/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/js/jquery.min.js -------------------------------------------------------------------------------- /app/training/public/screenshots/000d0ede39250e1f69a14f2e82532d65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/screenshots/000d0ede39250e1f69a14f2e82532d65.jpg -------------------------------------------------------------------------------- /app/training/public/screenshots/0cdb4db49bfbb9bdbe054385ffb325fc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/screenshots/0cdb4db49bfbb9bdbe054385ffb325fc.jpg -------------------------------------------------------------------------------- /app/training/public/screenshots/2729e75cb8cbdd0355f7be90f48779df.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/screenshots/2729e75cb8cbdd0355f7be90f48779df.jpg -------------------------------------------------------------------------------- /app/training/public/screenshots/2b94f05776233079db8405f0a67c69ab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/screenshots/2b94f05776233079db8405f0a67c69ab.jpg -------------------------------------------------------------------------------- /app/training/public/screenshots/3c71d453b10394dfb8352c308403bdd0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/screenshots/3c71d453b10394dfb8352c308403bdd0.jpg -------------------------------------------------------------------------------- /app/training/public/screenshots/55ae3a70bb5c10170cb25c29c6230d7e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/screenshots/55ae3a70bb5c10170cb25c29c6230d7e.jpg -------------------------------------------------------------------------------- /app/training/public/screenshots/741beaefebbefeda751b0092aaed0df6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/screenshots/741beaefebbefeda751b0092aaed0df6.jpg -------------------------------------------------------------------------------- /app/training/public/screenshots/8621cce262cdabf4244bf01fe69a8cfd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/screenshots/8621cce262cdabf4244bf01fe69a8cfd.jpg -------------------------------------------------------------------------------- /app/training/public/screenshots/8ac79bc2e512be56256af1ae359076ac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/screenshots/8ac79bc2e512be56256af1ae359076ac.jpg -------------------------------------------------------------------------------- /app/training/public/screenshots/8b49500aa7f0f76d0323d0077f23ab53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/screenshots/8b49500aa7f0f76d0323d0077f23ab53.jpg -------------------------------------------------------------------------------- /app/training/public/screenshots/93f3c268332af6a999c42a4db9faebf1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/screenshots/93f3c268332af6a999c42a4db9faebf1.jpg -------------------------------------------------------------------------------- /app/training/public/screenshots/a3258584cbb46c31e972a05494b31ced.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/screenshots/a3258584cbb46c31e972a05494b31ced.jpg -------------------------------------------------------------------------------- /app/training/public/screenshots/b0fd1978534e54285d6c5c09d6d0a8f6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/screenshots/b0fd1978534e54285d6c5c09d6d0a8f6.pdf -------------------------------------------------------------------------------- /app/training/public/screenshots/bb09d5a3a51f177373e579648c4c89aa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/screenshots/bb09d5a3a51f177373e579648c4c89aa.pdf -------------------------------------------------------------------------------- /app/training/public/screenshots/e249c5044203b3c658a7ca8dff7d99eb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/screenshots/e249c5044203b3c658a7ca8dff7d99eb.jpg -------------------------------------------------------------------------------- /app/training/public/screenshots/e9464cb85c678785474a4d3b744a5a5c.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/screenshots/e9464cb85c678785474a4d3b744a5a5c.pdf -------------------------------------------------------------------------------- /app/training/public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/public/sitemap.xml -------------------------------------------------------------------------------- /app/training/public/uploads/filelist.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /app/training/public/uploads/filelist2.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /app/training/routes/url.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/routes/url.php -------------------------------------------------------------------------------- /app/training/templates/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/404.php -------------------------------------------------------------------------------- /app/training/templates/csrf/dash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/csrf/dash.php -------------------------------------------------------------------------------- /app/training/templates/csrf/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/csrf/email.php -------------------------------------------------------------------------------- /app/training/templates/csrf/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/csrf/login.php -------------------------------------------------------------------------------- /app/training/templates/csrf/notifications.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/csrf/notifications.php -------------------------------------------------------------------------------- /app/training/templates/csrf/password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/csrf/password.php -------------------------------------------------------------------------------- /app/training/templates/csrf/reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/csrf/reset.php -------------------------------------------------------------------------------- /app/training/templates/idor/lesson1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/idor/lesson1.php -------------------------------------------------------------------------------- /app/training/templates/invalid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/invalid.php -------------------------------------------------------------------------------- /app/training/templates/lfi/lesson1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/lfi/lesson1.php -------------------------------------------------------------------------------- /app/training/templates/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/list.php -------------------------------------------------------------------------------- /app/training/templates/or/lesson1-2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/or/lesson1-2.php -------------------------------------------------------------------------------- /app/training/templates/rce/lesson1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/rce/lesson1.php -------------------------------------------------------------------------------- /app/training/templates/rce/lesson2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/rce/lesson2.php -------------------------------------------------------------------------------- /app/training/templates/rce/lesson3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/rce/lesson3.php -------------------------------------------------------------------------------- /app/training/templates/sqli/article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/sqli/article.php -------------------------------------------------------------------------------- /app/training/templates/sqli/lesson1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/sqli/lesson1.php -------------------------------------------------------------------------------- /app/training/templates/sqli/lesson2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/sqli/lesson2.php -------------------------------------------------------------------------------- /app/training/templates/ssrf/lesson1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/ssrf/lesson1.php -------------------------------------------------------------------------------- /app/training/templates/ssrf/lesson2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/ssrf/lesson2.php -------------------------------------------------------------------------------- /app/training/templates/ssrf/lesson3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/ssrf/lesson3.php -------------------------------------------------------------------------------- /app/training/templates/ssrf/lesson4-5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/ssrf/lesson4-5.php -------------------------------------------------------------------------------- /app/training/templates/ssrf/lesson4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/ssrf/lesson4.php -------------------------------------------------------------------------------- /app/training/templates/ssrf/lesson5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/ssrf/lesson5.php -------------------------------------------------------------------------------- /app/training/templates/ssrf/lesson7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/ssrf/lesson7.php -------------------------------------------------------------------------------- /app/training/templates/upload/lesson1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/upload/lesson1.php -------------------------------------------------------------------------------- /app/training/templates/upload/lesson2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/upload/lesson2.php -------------------------------------------------------------------------------- /app/training/templates/xss/lesson1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/xss/lesson1.php -------------------------------------------------------------------------------- /app/training/templates/xss/lesson2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/xss/lesson2.php -------------------------------------------------------------------------------- /app/training/templates/xss/lesson3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/xss/lesson3.php -------------------------------------------------------------------------------- /app/training/templates/xss/lesson4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/xss/lesson4.php -------------------------------------------------------------------------------- /app/training/templates/xxe/lesson1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/xxe/lesson1.php -------------------------------------------------------------------------------- /app/training/templates/xxe/lesson2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/app/training/templates/xxe/lesson2.php -------------------------------------------------------------------------------- /db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/db.sql -------------------------------------------------------------------------------- /default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/default -------------------------------------------------------------------------------- /startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nahamsec/nahamsec.training/HEAD/startup.sh --------------------------------------------------------------------------------