Added attack database
This commit is contained in:
12
db.sql
Normal file
12
db.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
CREATE DATABASE injection;
|
||||
USE injection;
|
||||
|
||||
CREATE TABLE Users(
|
||||
IdUtente INT PRIMARY KEY AUTO_INCREMENT,
|
||||
Username VARCHAR(32),
|
||||
Password VARCHAR(104)
|
||||
);
|
||||
|
||||
INSERT INTO Users (Username, Password) VALUES
|
||||
('AndreStork', 'freebossetti'),
|
||||
('epstein', 'rpeddiddy');
|
||||
Reference in New Issue
Block a user