33 lines
924 B
Markdown
33 lines
924 B
Markdown
# unrknize
|
|
|
|
Spoof RosKomPozor listening by protocol
|
|
|
|
## How it works
|
|
|
|
unrknize-server part simply starts tls encrypted server that acts like a https server \
|
|
unrknize-client part acts like a normal browser that connects to a normal https site
|
|
|
|
## Usage
|
|
|
|
On server:
|
|
|
|
```bash
|
|
git clone https://git.meex.lol/MeexReay/unrknize
|
|
cd unrknize/unrknize-server
|
|
cargo run -- somepassword.example.com 127.0.0.1:443
|
|
# certificates can be self-signed, or i would even say that they SHOULD be self-signed
|
|
# use nginx or smth if you already have https port used
|
|
# somepassword.example.com can be changed on anything else, for example just your ip address
|
|
```
|
|
|
|
On client:
|
|
```bash
|
|
git clone https://git.meex.lol/MeexReay/unrknize
|
|
cd unrknize/unrknize-client
|
|
cargo run -- somepassword.example.com 127.0.0.1:443 127.0.0.1:1080
|
|
# 127.0.0.1:1080 is the local server where you can connect now
|
|
```
|
|
|
|
## License
|
|
|
|
This project is licensed under WTFPL. |