Giter Club home page Giter Club logo

owasp-vwad's Introduction

OWASP-VWAD OWASP Lab

The OWASP Vulnerable Web Applications Directory Project (VWAD, https://owasp.org/www-project-vulnerable-web-applications-directory/) is a comprehensive and well maintained registry of all known vulnerable web applications currently available.

The individual collections are available via separate tabs on: https://owasp.org/www-project-vulnerable-web-applications-directory/

Editing Process

Just open a PR modifying the JSON file.

Please keep the file sorted by name. You can use this online tool to assist you: https://codeshack.io/json-sorter/. Entries should conform to the schema and are validated automatically during PR handling. You can also use this online service to check before submitting.

Since 20200331 they are automatically copied/deployed to the www-project-vulnerable-web-applications-directory repo, from which they are rendered on the owasp.org website.

owasp-vwad's People

Contributors

aif4thah avatar arthurakay avatar bkimminich avatar commjoen avatar dhower7 avatar drfoofoo avatar ebell451 avatar htrgouvea avatar interference-security avatar ipv4v6 avatar kingthorin avatar markdenihan avatar mike386 avatar msudol avatar nbaars avatar njmulsqb avatar noraj avatar ostesayed avatar pauloasilva avatar pentesttools-com avatar preetkaran20 avatar psiinon avatar raulsiles avatar rcowsill avatar roottusk avatar sadicann avatar samanthagroves avatar snoopysecurity avatar yjaaidi avatar yrprey avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

owasp-vwad's Issues

JSON format change of "References" String into Array

Would anyone mind if I change the References property to an Array?

My proposal is to change

"References": "https://github.com/bkimminich/juice-shop https://hub.docker.com/r/bkimminich/juice-shop/ https://www.gitbook.com/book/bkimminich/pwning-owasp-juice-shop"

into

"References": [
  "https://github.com/bkimminich/juice-shop",
  "https://hub.docker.com/r/bkimminich/juice-shop/",
  "https://www.gitbook.com/book/bkimminich/pwning-owasp-juice-shop"
]

Furthermore, right now JSON would suffer from information loss compared with the TSV format, as it does not have the link labels at the moment. So, we might go one step further and make it

"References": [
  {"Name": "download", "URL": "https://github.com/bkimminich/juice-shop"},
  {"Name": "docker", "URL": "https://hub.docker.com/r/bkimminich/juice-shop/"},
  {"Name": "guide", "URL": "https://www.gitbook.com/book/bkimminich/pwning-owasp-juice-shop"}
]

Add DSVW

Add Damn Small Vulnerable Web:
https://github.com/stamparm/DSVW

Tech: Python

Damn Small Vulnerable Web (DSVW) is a deliberately vulnerable web application written in under 100 lines of code, created for educational purposes. It supports majority of (most popular) web application vulnerabilities together with appropriate attacks.
DSVW

Use any other data format than TSV

As an occasional editor of the VWAD
I want to be able to edit in the GitHub web interface
and after checkout in a tool as simple as a text editor
so that the file format is not regularly broken after even the simplest change.

image

TSV is not exactly a file format that would make this user story possible... 😈

offline discrepancies

These are likely errors that crept in during the tsv > json conversion.

https://github.com/OWASP/OWASP-VWAD/blob/master/src/owasp-wiki/offline.json#L13
Should list Simon Bennetts (psiinon) as author.

https://github.com/OWASP/OWASP-VWAD/blob/master/src/owasp-wiki/offline.json#L26
Remove trailing space in references content.

https://github.com/OWASP/OWASP-VWAD/blob/master/src/owasp-wiki/offline.json#L37-L41
Name should be moved from URL to name element. Current name entry should move to technology element.

https://github.com/OWASP/OWASP-VWAD/blob/master/src/owasp-wiki/offline.json#L72
Remove trailing space in name element.

https://github.com/OWASP/OWASP-VWAD/blob/master/src/owasp-wiki/offline.json#L86
Remove trailing space in name element. (All Hacme entries in fact)

https://github.com/OWASP/OWASP-VWAD/blob/master/src/owasp-wiki/offline.json#L142
Remove trailing space in name element.

https://github.com/OWASP/OWASP-VWAD/blob/master/src/owasp-wiki/offline.json#L149
Remove trailing space in name element.

https://github.com/OWASP/OWASP-VWAD/blob/master/src/owasp-wiki/offline.json#L158
Move references element content to author element.

https://github.com/OWASP/OWASP-VWAD/blob/master/src/owasp-wiki/offline.json#L239-L243
Add missing notes element. Remove trailing space in references content.

https://github.com/OWASP/OWASP-VWAD/blob/master/src/owasp-wiki/offline.json#L248
Remove trailing space in references content.

Update Webgoat.NET

Per OWASP Slack:

@kingthorin_rm there’s two versions of WebGoat.NET - jerryhoff hasn’t been updated since 2014, but there is also one that’s 2018 - https://github.com/rapPayne/WebGoat.Net

Entry should probably be updated something like:

	{
		"url": "https://github.com/rapPayne/WebGoat.Net",
		"name": ".NET Goat",
		"technology": [
			"C#"
		],
		"references": [
			{
				"name": "download",
				"url": "https://github.com/rapPayne/WebGoat.Net"
			},
			{
				"name": "download",
				"url": "http://github.com/jerryhoff/WebGoat.NET"
			}
		],
		"author": "OWASP",
		"notes": null
	}

Migrate to www-project-vulnerable-web-applications-directory

With the new Jekyll-powered OWASP website it should be easy to dynamically parse the JSON data sets and render each in its own tab on https://owasp.org/www-project-vulnerable-web-applications-directory.

Tasks

  • Find out if Jekyll can load JSON from this repo into www-project-vulnerable-web-applications-directory
    • If not, either move the files over (effectively sunsetting this repo with all its ⭐️s...) or
    • Implement an automatic copy job e.g. via Travis-CI or GH-Actions
  • Add a tab per category and dynamically create a table on each from the JSON data

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.