2021-10-06 13:01:32 -03:00
2021-11-09 07:47:50 -03:00
2021-11-03 22:42:22 -03:00
2021-11-10 18:11:49 -03:00
2021-10-06 13:01:32 -03:00
2021-04-17 21:50:35 -03:00
2021-10-28 20:31:56 -03:00
2021-10-31 22:57:20 -03:00
2021-10-31 22:57:20 -03:00
2021-10-30 07:01:02 -03:00
2021-11-08 17:45:56 -03:00
2021-11-08 07:46:45 -03:00
2021-02-25 15:16:58 -03:00
2021-11-10 18:59:50 -03:00
2021-10-30 07:09:08 -03:00

OFVp Server

A Small pocketknife to implement the SSH server and/or a Wireguard Server.

Features

  • OpenSSH Server
  • Squid Proxy Server
  • Wireguard Server (Requerid priviled to run)

Deploys

  • Docker Composer:
version: "3.9"
volumes:
  HttpInjectorData:
services:
  ofvp_server:
    image: ghcr.io/ofvp-project/server:latest
    privileged: true
    restart: always
    ports:
      - 3000:3000/tcp
      - 2222:22/tcp 
      - 8081:80/tcp
      - 80:8081/tcp
      - 7300:7300/tcp
      - 10086:10086/udp
      - 10086:10086/tcp
      - 51820:51820/udp
    volumes:
      - /lib/modules/:/lib/modules/
      - HttpInjectorData:/root/HttpInjectorServer

  • Docker:

    Create docker volume to storage All files in container: docker volume create HttpInjectorStorage

    • Linux:

      docker run --privileged --rm --detach \
      -p 3000:3000 \
      -p 22:22 \
      -p 80:8081 \
      -p 8080:80 \
      -p 7300:7300 \
      -p 51820:51820 \
      -v HttpInjectorStorage:/root/HttpInjectorServer \
      -v /lib/modules/:/lib/modules/ \
      ghcr.io/ofvp-project/server:latest
      
    • MacOs:

      docker run --privileged --rm --detach \
      -p 3000:3000 \
      -p 22:22 \
      -p 80:8081 \
      -p 8080:80 \
      -p 7300:7300 \
      -p 51820:51820 \
      -v HttpInjectorStorage:/root/HttpInjectorServer \
      ghcr.io/ofvp-project/server:latest
      
    • Windows:

      docker run --privileged --rm --detach ^
      -p 3000:3000 ^
      -p 22:22 ^
      -p 8081:80 ^
      -p 7300:7300 ^
      -p 51820:51820 ^
      -v $(echo ~)/HttpInjectorServer:/root/HttpInjectorServer ^
      ghcr.io/ofvp-project/server:latest
      
S
Description
Start an image and apply the settings and nothing else is needed.
Readme MIT
7 MiB
Languages
JavaScript 85.4%
Shell 6.6%
Dockerfile 4%
HTML 4%