forked from jerryhoff/WebGoat.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.aspx
27 lines (20 loc) · 1.14 KB
/
Default.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<%@ Page Title="" Language="C#" MasterPageFile="~/Resources/Master-Pages/Site.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="OWASP.WebGoat.NET.Default" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContentPlaceHolder" runat="server">
<asp:HtmlTitle>Welcome to WebGoat.NET</asp:HtmlTitle>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="HelpContentPlaceholder" runat="server">
This is the Welcome Page...
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="BodyContentPlaceholder" runat="server">
<h1 class="title-regular-4 clearfix">Welcome to WebGoat.NET</h1>
WebGoat.NET is a purposefully insecure web application - use it to learn and understand about bad
coding practices in .NET. Each Module on the left side illustrates a common web vulnerability. WebGoat.NET was
designed to be used in live training and/or e-learning environments.
<br />
<br />
<asp:Label ID="lblOutput" runat="server"></asp:Label>
<br />
<br />
<asp:Button ID="ButtonProceed" SkinID="Button" runat="server"
Text="Set Up Database!" onclick="ButtonProceed_Click"/>
</asp:Content>