├── .gitignore ├── LICENSE ├── README.md ├── Resources ├── button.css └── hmbct.png ├── Review 2 ├── Resources │ ├── button.css │ └── hmbct.png ├── Review 1 (pdf).pdf ├── Review 2 (pdf).pdf ├── Screenshots │ ├── Review2_1.png │ ├── Review2_2.png │ ├── Review2_3.png │ ├── Review2_4.png │ ├── Review2_5.png │ └── Review2_6.png ├── XSS │ ├── Attack.md │ ├── Documents │ │ ├── Review 1.pdf │ │ └── Review 2.pdf │ ├── XSS_level1.php │ ├── XSS_level2.php │ ├── XSS_level3.php │ ├── XSS_level4.php │ ├── XSS_level5.php │ ├── XSS_level6.html │ ├── cookieStealer.php │ ├── log.txt │ └── xssmainpage.html ├── books.sql ├── homepage.html └── index.php ├── Review 3 ├── Review 3 (pdf).pdf ├── Screenshots │ ├── Review3_1.png │ └── Review3_2.png ├── XSS_level6.html ├── cookieStealer.php ├── log.txt └── xssmainpage.html ├── SQL ├── Attack.md ├── sql1.php ├── sql2.php ├── sql3.php ├── sql4.php ├── sql5.php ├── sql6.php ├── sql7.php └── sqlmainpage.html ├── XSS ├── Attack.md ├── Documents │ ├── Review 1.pdf │ └── Review 2.pdf ├── XSS_level1.php ├── XSS_level2.php ├── XSS_level3.php ├── XSS_level4.php ├── XSS_level5.php ├── XSS_level6.html ├── cookieStealer.php └── xssmainpage.html ├── books.sql ├── homepage.html └── index.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/README.md -------------------------------------------------------------------------------- /Resources/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Resources/button.css -------------------------------------------------------------------------------- /Resources/hmbct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Resources/hmbct.png -------------------------------------------------------------------------------- /Review 2/Resources/button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/Resources/button.css -------------------------------------------------------------------------------- /Review 2/Resources/hmbct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/Resources/hmbct.png -------------------------------------------------------------------------------- /Review 2/Review 1 (pdf).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/Review 1 (pdf).pdf -------------------------------------------------------------------------------- /Review 2/Review 2 (pdf).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/Review 2 (pdf).pdf -------------------------------------------------------------------------------- /Review 2/Screenshots/Review2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/Screenshots/Review2_1.png -------------------------------------------------------------------------------- /Review 2/Screenshots/Review2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/Screenshots/Review2_2.png -------------------------------------------------------------------------------- /Review 2/Screenshots/Review2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/Screenshots/Review2_3.png -------------------------------------------------------------------------------- /Review 2/Screenshots/Review2_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/Screenshots/Review2_4.png -------------------------------------------------------------------------------- /Review 2/Screenshots/Review2_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/Screenshots/Review2_5.png -------------------------------------------------------------------------------- /Review 2/Screenshots/Review2_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/Screenshots/Review2_6.png -------------------------------------------------------------------------------- /Review 2/XSS/Attack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/XSS/Attack.md -------------------------------------------------------------------------------- /Review 2/XSS/Documents/Review 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/XSS/Documents/Review 1.pdf -------------------------------------------------------------------------------- /Review 2/XSS/Documents/Review 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/XSS/Documents/Review 2.pdf -------------------------------------------------------------------------------- /Review 2/XSS/XSS_level1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/XSS/XSS_level1.php -------------------------------------------------------------------------------- /Review 2/XSS/XSS_level2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/XSS/XSS_level2.php -------------------------------------------------------------------------------- /Review 2/XSS/XSS_level3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/XSS/XSS_level3.php -------------------------------------------------------------------------------- /Review 2/XSS/XSS_level4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/XSS/XSS_level4.php -------------------------------------------------------------------------------- /Review 2/XSS/XSS_level5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/XSS/XSS_level5.php -------------------------------------------------------------------------------- /Review 2/XSS/XSS_level6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/XSS/XSS_level6.html -------------------------------------------------------------------------------- /Review 2/XSS/cookieStealer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/XSS/cookieStealer.php -------------------------------------------------------------------------------- /Review 2/XSS/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Review 2/XSS/xssmainpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/XSS/xssmainpage.html -------------------------------------------------------------------------------- /Review 2/books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/books.sql -------------------------------------------------------------------------------- /Review 2/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/homepage.html -------------------------------------------------------------------------------- /Review 2/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 2/index.php -------------------------------------------------------------------------------- /Review 3/Review 3 (pdf).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 3/Review 3 (pdf).pdf -------------------------------------------------------------------------------- /Review 3/Screenshots/Review3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 3/Screenshots/Review3_1.png -------------------------------------------------------------------------------- /Review 3/Screenshots/Review3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 3/Screenshots/Review3_2.png -------------------------------------------------------------------------------- /Review 3/XSS_level6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 3/XSS_level6.html -------------------------------------------------------------------------------- /Review 3/cookieStealer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 3/cookieStealer.php -------------------------------------------------------------------------------- /Review 3/log.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Review 3/xssmainpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/Review 3/xssmainpage.html -------------------------------------------------------------------------------- /SQL/Attack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/SQL/Attack.md -------------------------------------------------------------------------------- /SQL/sql1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/SQL/sql1.php -------------------------------------------------------------------------------- /SQL/sql2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/SQL/sql2.php -------------------------------------------------------------------------------- /SQL/sql3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/SQL/sql3.php -------------------------------------------------------------------------------- /SQL/sql4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/SQL/sql4.php -------------------------------------------------------------------------------- /SQL/sql5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/SQL/sql5.php -------------------------------------------------------------------------------- /SQL/sql6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/SQL/sql6.php -------------------------------------------------------------------------------- /SQL/sql7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/SQL/sql7.php -------------------------------------------------------------------------------- /SQL/sqlmainpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/SQL/sqlmainpage.html -------------------------------------------------------------------------------- /XSS/Attack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/XSS/Attack.md -------------------------------------------------------------------------------- /XSS/Documents/Review 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/XSS/Documents/Review 1.pdf -------------------------------------------------------------------------------- /XSS/Documents/Review 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/XSS/Documents/Review 2.pdf -------------------------------------------------------------------------------- /XSS/XSS_level1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/XSS/XSS_level1.php -------------------------------------------------------------------------------- /XSS/XSS_level2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/XSS/XSS_level2.php -------------------------------------------------------------------------------- /XSS/XSS_level3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/XSS/XSS_level3.php -------------------------------------------------------------------------------- /XSS/XSS_level4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/XSS/XSS_level4.php -------------------------------------------------------------------------------- /XSS/XSS_level5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/XSS/XSS_level5.php -------------------------------------------------------------------------------- /XSS/XSS_level6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/XSS/XSS_level6.html -------------------------------------------------------------------------------- /XSS/cookieStealer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/XSS/cookieStealer.php -------------------------------------------------------------------------------- /XSS/xssmainpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/XSS/xssmainpage.html -------------------------------------------------------------------------------- /books.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/books.sql -------------------------------------------------------------------------------- /homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/homepage.html -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshatvg/Vulnerability-Testing-Solutions/HEAD/index.php --------------------------------------------------------------------------------