.github
.mvn
config
docker
docs
webgoat-container
webgoat-integration-tests
webgoat-lessons
auth-bypass
bypass-restrictions
challenge
chrome-dev-tools
cia
client-side-filtering
cross-site-scripting
crypto
csrf
html-tampering
http-basics
http-proxies
idor
insecure-deserialization
insecure-login
jwt
missing-function-ac
password-reset
path-traversal
secure-passwords
src
pom.xml
sql-injection
ssrf
vulnerable-components
webgoat-introduction
webgoat-lesson-template
webwolf-introduction
xxe
pom.xml
sol.MD
sol.txt
webgoat-server
webwolf
.gitignore
COPYRIGHT.txt
CREATE_RELEASE.MD
LICENSE.txt
README.MD
RELEASE_NOTES.md
mvn-debug
mvnw
mvnw.cmd
pom.xml
19 lines
723 B
XML
19 lines
723 B
XML
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<artifactId>secure-passwords</artifactId>
|
|
<packaging>jar</packaging>
|
|
<parent>
|
|
<groupId>org.owasp.webgoat.lesson</groupId>
|
|
<artifactId>webgoat-lessons-parent</artifactId>
|
|
<version>8.2.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.nulab-inc</groupId>
|
|
<artifactId>zxcvbn</artifactId>
|
|
<version>1.4.0</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |