Skip to content

KhaelK138/InsecureWebApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vulnerable Basic Banking Application

This is a vulnerable banking application, meant for practicing exploitation of web vulnerabilities.

The secure version (app_SECURE.py) has most of the vulnerabilities fixed, with the exception of flask session tokens not being invalidated and account email enumeration still existing (albeit with reCAPTCHA sort of implemented). It demonstrates how many of the vulnerabilities can be remediated.

Don't host this app publicly without ensuring anyone that can access it is trusted. You'll have a bad day.

INSTALLATION

Clone the repo, and make sure you have all the required python libraries installed (flask, sqlite3, pickle, flask_bcrypt, validate_email)

USAGE

Insecure Application:

  • Run python3 app.py closed to host the app locally, accessible only at 127.0.0.1:5000
  • Run python3 app.py open to open the app to all network interfaces, accessible at {your ip}:5000

(Mostly) Secure Application:

  • Run python3 app_SECURE.py closed to host the app locally, accessible on 127.0.0.1:5000
  • Run python3 app_SECURE.py open to host the app on your local subnet, accessible at {your ip}:5000

The application can be configured to run on a different port with the flag -p {port}.

About

Extremely Insecure Web App. For the love of god don't host this. Made in a day :)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published