BAI – Web Application Security

Secured: BAI – Materials

The content is password protected. To see it, please enter the password: Password:

Read more

DVWA – writeup – easy/low level

1. Preparing the environment It is most convenient to run the DVWA locally via Docker. The examples assume the address http://127.0.0.1:4280 and the default account admin/password. git clone https://github.com/digininja/DVWA.gitcd DVWAdocker compose up -d export DVWA=”http://127.0.0.1:4280″ On Kali Linux, install the basic tools used in the exercises: sudo apt updatesudo apt install -y burpsuite curl jq hydra sqlmap wfuzz ffuf netcat-traditional gobuster nik seclists Setting…

Read more

DVWA – WRITEUP – MEDIUM/HIGH LEVEL

Medium / High Levels At Medium and High levels, DVWA introduces simple filters, tokens, delays, client-side validations, or partial server checks. The goal is to show that blacklists and incomplete validation are usually bypassable. 3.1 Brute Force — Medium / High Medium adds a delay after an incorrect login. Therefore, limit parallelism and use a small list of passwords….

Read more