joeymalvinni / eqty-proxy

A fast and efficient proxy server which blocks content restriction filters for school-issued devices

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

10/20/2023 ARCHIVED

This was archived due to the creation of justice.

EQTY-Proxy banner

Installation

Clone the eqty-proxy github repository:

git clone https://github.com/joeymalvinni/eqty-proxy.git
cd eqty-proxy

Install the modules:

npm install

Now you should be ready to set up the server.

Setup

Add a credentials.js file in the /src directory:

cd src
touch credentials.js

Edit this file to follow this structure:

let CREDENTIALS = [
    { username: 'user', password: 'pass' },
    { username: 'user1', password: 'pass1' }
]

module.exports = CREDENTIALS;

Create random useragents for each of these users:

node lib/useragents.js

Now you can run the server!

npm start

About

A fast and efficient proxy server which blocks content restriction filters for school-issued devices

License:Apache License 2.0


Languages

Language:JavaScript 100.0%