Middleman Server for WebHttpObfuscator
- Docker
- Dart SDK
You need to configure and compile the Server for yourself.
git clone https://github.com/Binozo/WebHttpObfuscator-Server.git
cd WebHttpObfuscator-Server
dart pub get
Now you need to edit the bin/webhttpobfuscator_server.dart
file.
Note: You can find example configurations in the examples
directory.
Change the port, encryption and decryption function as you wish.
Now build your docker container
docker build -t ghcr.io/binozo/webhttpobfuscator-server:latest .
Run it
docker run -p 9268:9268 -d ghcr.io/binozo/webhttpobfuscator-server:latest
docker compose:
version: "3.9"
services:
WebHttpObfuscator-Server:
restart: always
image: ghcr.io/binozo/webhttpobfuscator-server:latest
ports:
- "9268:9268"
container_name: "WebHttpObfuscator-Server"