forked from OWASP/WebGoat.NET
-
Notifications
You must be signed in to change notification settings - Fork 5
jowasp/WebGoat.NET
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
From the prompt, cd into the WebGoat.NET DB directory
% cd /WebGoat.NET/DB
Start the mysql utility, giving the name (and password, if needed) of a user permission to create databases. For example, to use the default root user:
% mysql --user=root
Create the webgoat_coins database and load the schema. (Loading the schema the schema the first time will give error messages as it attemps to empty any existing tables, just ignore these.)
mysql> create database webgoat_coins;
mysql> use webgoat_coins;
mysql> source create_webgoatcoins.sql;
Load the table contents:
mysql> source load_webgoatcoins.sql;
Exit from mysql:
mysql> quit;
About
OWASP WebGoat.NET
Resources
Stars
Watchers
Forks
Releases
No releases published
Languages
- C# 62.1%
- Classic ASP 21.9%
- CSS 9.9%
- JavaScript 4.8%
- XSLT 1.3%