WhiteHatCyberus / Simple-Login-I

This is a vulnerable login page that is developed in Python's Flask Framework and a backend MySQL server.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Status: ✔️

Simple Login I

Note: Learn how to install, setup and configure the latest version of mysql-server in Linux here

  • To begin, install the packages in requirements.txt using the apt package installer.
  • The application is configured with default mysql server credentials.
username="root"
password=""
db_name="mysql"

f3

  • To enable custom configuration, open app.py in your editor and change the entry values:
....
# Connect to MySQL database
        db = mysql.connector.connect(
            host="localhost",
            user="root",
            password="",
            database="mysql"
        )
....
  • Run app.py
sudo python3 app.py

f1

Connect with me

About

This is a vulnerable login page that is developed in Python's Flask Framework and a backend MySQL server.

License:MIT License


Languages

Language:Python 100.0%