yassirlaaouissi / vx_underground

A scalable web app features LiveView authentication, user roles and permission system, and secure S3/Wasabi uploads. It calculates file hashes with Erlang crypto library and uses Oban for all most API requests for automated retries. It includes a custom Logger backend to log to Discord, has CI/CD setup and is deployed on Fly.io.

Home Page:https://vxu.fly.dev/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

VxUnderground

Features

Built With

Screenshots

Index Listing Show Listing Upload

Getting Started

Prerequisites

  1. Install erlang, Elixir, NodeJS, Postgres

    1. With homebrew the commands are:
     brew update
     brew install erlang elixir nodejs postgres
    1. Or if you prefer asdf
     brew update
     brew install asdf
    
     asdf plugin-add erlang
     asdf plugin-add elixir
     asdf plugin-add nodejs
    
     asdf install

Installation

  1. Clone this Repo and enter the directory.
  2. Set up the project with the command mix setup
  3. Set the following env variables in order to get Wasabi/S3 to work.
    1. AWS_ACCESS_KEY_ID
    2. AWS_SECRET_ACCESS_KEY
    3. S3_BUCKET_NAME
  4. Set the following env variables in order to get Triage / VT to work.
    1. VIRUS_TOTAL_API_KEY
    2. TRIAGE_API_KEY
  5. Set the following env variables in order to get Discord Logging to work. (optional)
    1. DISCORD_BOT_TOKEN
    2. DISCORD_CHANNEL_ID
  6. Start Phoenix server with iex -S mix phx.server
    1. Now you can visit localhost:4000 or localhost:4001 from your browser.
  7. Once you register a user, you make it admin by running this in the same window you ran iex -S mix phx.server in (yes we run commands in a running server)
    1. VxUnderground.Accounts.get_user!(1) |> VxUnderground.Accounts.add_role_to_user("Admin")

You can run unit tests with the command mix test

TODO

  • Setup Minio for Dev upload / download
  • Better file types
  • YARA Tags
  • API routes

Database architecture 🗂

classDiagram
    class Sample{
      +Integer size
      +String md5
      +String sha1
      +String sha256
      +String sha512
      +String s3_object_key
      +Array names
      +Array tags
      +DateTime first_seen
    }

    class Users {
     +String email
     +String username
     +String tier
     +String password
     +Integer role_id
     +String hashed_password
     +DateTime confirmed_at
    }
    class Role {
        +String name
        +Jsonb permissions
    }

About

A scalable web app features LiveView authentication, user roles and permission system, and secure S3/Wasabi uploads. It calculates file hashes with Erlang crypto library and uses Oban for all most API requests for automated retries. It includes a custom Logger backend to log to Discord, has CI/CD setup and is deployed on Fly.io.

https://vxu.fly.dev/


Languages

Language:Elixir 89.1%Language:HTML 6.9%Language:JavaScript 2.0%Language:Dockerfile 0.8%Language:CSS 0.8%Language:Shell 0.3%Language:Batchfile 0.0%