Skip to content

passioncoder5/Yet-Another-Vulnerable-Web-Application

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

13 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Yet another vulnerable web application

This buggy web application contains vulnerability such as sqli,xss,access control vulnerabilities,IDOR etc and built with low to medium security to enhance the knowledge of script kiddies

Default username and password for Admin login email ara@gmail.com password araara

Set it up using the guide below


🐧 LAMPP (Linux)

  1. Start LAMPP

    sudo /opt/lampp/lampp start
  2. Copy PHP Files

    • Place your .php files into the LAMPP web directory:

      sudo cp -r /path/to/your/php-files/* /opt/lampp/htdocs/newsportal/
    • Access them at: πŸ‘‰ http://localhost/newsportal/

  3. Import Database via phpMyAdmin

    • Open: πŸ‘‰ http://localhost/phpmyadmin/
    • Click Databases β†’ Create new DB (name: news).
    • Select news β†’ Import tab.
    • Browse and upload news.sql.
    • Click Go β†’ schema + data imported.
  4. Update PHP Config Inside your PHP connection file (e.g., config.php):

    $servername = "localhost";
    $username   = "root";
    $password   = "";
    $dbname     = "news";

    (LAMPP root has no password by default.)


πŸͺŸ XAMPP (Windows)

  1. Start XAMPP

    • Open XAMPP Control Panel.
    • Start Apache and MySQL.
  2. Copy PHP Files

    • Place your .php files into:

      C:\xampp\htdocs\newsportal\
      
    • Access them at: πŸ‘‰ http://localhost/newsportal/

  3. Import Database via phpMyAdmin

    • Open: πŸ‘‰ http://localhost/phpmyadmin/
    • Click Databases β†’ Create new DB (name: news).
    • Select news β†’ Import tab.
    • Browse and upload news.sql.
    • Click Go β†’ schema + data imported.
  4. Update PHP Config In your PHP connection file:

    $servername = "localhost";
    $username   = "root";
    $password   = "";
    $dbname     = "news";

    (XAMPP root also has no password by default.)


About

No description, website, or topics provided.

Resources

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published