Lesson 3: Web Basics

Ethical hackers must understand how websites work before learning how to secure them.

HTML Example

<form>
  <input type="text" placeholder="Username">
  <input type="password" placeholder="Password">
</form>

HTTP Methods

GET  - Request data
POST - Send data

JavaScript Logic

if(user === "admin"){
  alert("Access Granted");
}