A basic demo of a CSRF attack for our cybersecurity project 🛡️
Perform CSRF attack and write down the steps to perform it. Also identify the specific vulnerability for this attack and suggest the existing defense mechanisms and their effectiveness. With reference to this propose at least one improvement or your idea for the defense mechanism of the said attack.
Meera Wadher
Reshmika Nambiar
Sarah Tisekar
We've installed Apache Server & PhpMyAdmin on our Ubuntu System.
create database database_name;
Table for users : create table users(user_id varchar(255) NOT NULL, user_name varchar(30), password varchar(30) NOT NULL, email varchar(30) NOT NULL, balance int, PRIMARY KEY (user_id))
Table for tickets : create table ticket(res_id varchar(255), source varchar(30), destination varchar (30), no_of_tickets int, email varchar(30), price_of_one int, total_price int)
- Make the server.php file actually connect to the main application so the user really does click on it 🙃
- Optimize the code
- Make a proper structure for the code