Skip to content

Commit ec34e58

Browse files
authored
Merge pull request #3 from nikaiw/nikaiw-fixtypo
README: fix typo
2 parents 2b4c780 + 9133c5a commit ec34e58

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Clippy](https://github.com/airbus-seclab/soxy/actions/workflows/clippy.yml/badge.svg)](https://github.com/airbus-seclab/soxy/actions/workflows/clippy.yml)
44
[![Build](https://github.com/airbus-seclab/soxy/actions/workflows/build.yml/badge.svg)](https://github.com/airbus-seclab/soxy/actions/workflows/build.yml)
55

6-
soxy is a modular tool to interact with several VDIs that operates over RDP,
6+
soxy is a modular tool to interact with several VDIs that operate over RDP,
77
such as VMware Horizon, Citrix and native Windows RDP. It supports useful debug
88
services (e.g. clipboard, console/shell, sharing, FTP server, SOCKS5 proxy).
99

@@ -38,8 +38,8 @@ On the client side, soxy works as a plugin on:
3838
- Citrix client on Linux, macOS and Windows.
3939

4040
On the remote host, soxy can run as a standalone Windows executable or can be
41-
embedded in other applications as a DLL. In release mode, this part of soxy is
42-
to be as small as possible (<200KB). It is built without any logging related
41+
embedded in other applications as a DLL. In release mode, this part of soxy is kept as small as possible (<200KB).
42+
It is built without any logging related
4343
code (even log message strings are absent from the binary) and without symbols.
4444

4545
![](big_picture.png)
@@ -68,7 +68,7 @@ The soxy source code is split into four parts:
6868
local network, depending on the configuration) for each service;
6969
- **backend**: contains the code of the Windows executable
7070
(or DLL) to be launched (or loaded) on the remote Windows machine;
71-
- **standalone**: contains the code to produce an exectuable including both the
71+
- **standalone**: contains the code to produce an executable including both the
7272
`frontend` and the `backend` parts (with an emulated RDP channel) for testing
7373
implementations of services;
7474
- **common**: contains some code used by all other parts.
@@ -150,7 +150,7 @@ The output hierarchy of the created repositories is the following:
150150

151151
#### On macOS
152152

153-
Only the frontend can be build on macOS. Proceed as follows.
153+
Only the frontend can be built on macOS. Proceed as follows.
154154

155155
For the debug version:
156156

@@ -235,7 +235,7 @@ When you launch FreeRDP from the command line, you have to add the argument
235235
sdl-freerdp3 /dynamic-resolution /log-level:INFO /u:User /v:192.168.42.42 /vc:soxy
236236
```
237237

238-
For Remmina, edit your RDP connection, got to the "Advanced" tab and set the
238+
For Remmina, edit your RDP connection, go to the "Advanced" tab and set the
239239
"Static virtual channel" parameter to `soxy`.
240240

241241
#### For Citrix Workspace App
@@ -303,7 +303,7 @@ services.
303303

304304
### Accessing Services
305305

306-
As soon as you have your favorite client setup and the _backend_ code running,
306+
As soon as your favorite client is set up and the _backend_ code is running,
307307
you can start using soxy services from your client machine
308308

309309
#### Remote Clipboard
@@ -343,7 +343,7 @@ such as `nc`, and use the available command:
343343

344344
### Citrix
345345

346-
If you get an error like `failed to open channel handle: virtual channel open failed (last_error = 5)` that's means there are some restrictions on citrix host virtual channels (default behavior in last Citrix version).
346+
If you get an error like `failed to open channel handle: virtual channel open failed (last_error = 5)` it means there are restrictions on citrix host virtual channels (default behavior in last Citrix version).
347347
To fix this, if you have (local) administrator privileges, you can disable Citrix restrictions on virtual channels (which is not recommended):
348348

349349
```powershell
@@ -356,7 +356,7 @@ Or you can whitelist `SOXY` like this if you have (local) administrator privileg
356356
reg add HKLM\SOFTWARE\WOW6432Node\Policies\Citrix\VCPolicies /v VirtualChannelWhiteList /t REG_MULTI_SZ /d SOXY,C:\Users\<USER>\<PATH_TO_SOXY_EXE>
357357
```
358358

359-
Note that in both case, you have to reboot Citrix host after.
359+
Note that in both cases, you have to reboot the Citrix host afterward.
360360

361361
## 🚧 Contributing
362362

@@ -391,5 +391,5 @@ Refer to `common/src/clipboard/` for examples.
391391

392392
## 🏢 License
393393

394-
This project is licensed under the GPLv3 License. See the [LICENSE](LICENSE)
394+
This project is licensed under the GNU GPLv3 License. See the [LICENSE](LICENSE)
395395
file for details.

0 commit comments

Comments
 (0)