Coder Social home page Coder Social logo

dvta's Introduction

DVTA 2.0

DVTA is a Vulnerable Thick Client Application developed in C# .NET.

Most of the vulnerabilities that were built into DVTA were found during my real world pentests.

Some of the vulnerabilities covered in this Application.

Insecure local data storage
Insecure logging
Weak cryptography
Lack of code obfuscation
Exposed decryption logic
SQL Injection
CSV Injection
Sensitive data in memory
DLL Hijacking
Clear text data in transit
Client side protection bypasses using Reverse Engineering

Requires .NET version 4.5

Usage:

  1. Get the compiled binary from releases. Alternatively, clone the project and compile from the source.

  2. Set up SQL Server and FTP Server - instructions shown here https://youtu.be/rx8mtI1HU5c

     Queries used in the video:
    
     QUERY TO CREATE "USERS" TABLE:
    
     CREATE TABLE "users" (
         "id" INT IDENTITY(0,1) NOT NULL,
         "username" VARCHAR(100) NOT NULL,
         "password" VARCHAR(100) NOT NULL,
         "email" VARCHAR(100) NULL DEFAULT NULL,
         "isadmin" INT NULL DEFAULT '0',
         PRIMARY KEY ("id")
     )
    
    
     QUERY TO INSERT DATA INTO "USERS" TABLE:
    
     INSERT INTO dbo.users (username, password, email, isadmin)
     VALUES
     ('admin','admin123','[email protected]',1),
     ('rebecca','rebecca','[email protected]',0),
     ('raymond','raymond','[email protected]',0);
    
    
     QUERY TO CREATE "EXPENSES" TABLE:
    
     CREATE TABLE "expenses" (
         "id" INT IDENTITY(0,1) NOT NULL,
         "email" VARCHAR(100) NOT NULL,
         "item" VARCHAR(100) NOT NULL,
         "price" VARCHAR(100) NOT NULL,
         "date" VARCHAR(100) NOT NULL,
         "time" VARCHAR(100) NULL DEFAULT NULL,
         PRIMARY KEY ("id")
     )
    
  3. Configure the client application to communicate with SQL Server and FTP Server - Instructions shown here https://youtu.be/IBdk2uOessc

  4. Explore and exploit

dvta's People

Contributors

srini0x00 avatar kimsyversen avatar

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.