Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
WebGoat.NET — OWASP WebGoat.NET | Kitploit
Tools/GitHubGitHub/owasp/webgoat.net
Vulnerability AnalysisCode AnalysisWeb SecurityPenetration TestingLearning & EducationLabs & Practice
GitHubowasp/webgoat.net

WebGoat.NET

OWASP WebGoat.NET

View Repository
737611 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

From the prompt, cd into the WebGoat.NET DB directory

root@kitploit:~
    % 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;
Download Tool