A RDP (Remote Desktop Protocol) proxy.
(A RDP client in projects/ClientQtGraphicAPI
, a RDP web client in projects/jsclient
)
Support of:
- RDP client to RDP server and
- RDP client to VNC server
- Dependencies
- Compilation
- Run ReDemPtion
- Convert .mwrm/.wrm capture to video
- Generate target and lib/obj dependencies
- Compile proxy_recorder
- Packaging
- Tag and Version
- Test files
- FAQ
To compile ReDemPtion you need the following packages:
- libboost-tools-dev (contains bjam: software build tool) (https://github.com/boostorg/build)
- libboost-test-dev (unit-test dependency)
- zlib1g-dev
- libssl-dev
- libkrb5-dev
- libgssglue-dev (unnecessary since Ubuntu 17.10 and Debian 10)
- libsnappy-dev
- libpng-dev (libpng12-dev (< Debian 10))
- libffmpeg-dev (see below)
- g++ >= 8.0 or clang++ >= 5.0 or other C++17 compiler
apt install libboost-tools-dev libboost-test-dev libssl-dev libkrb5-dev libsnappy-dev libpng-dev
Submodule ($ git submodule update --init
):
- libavcodec-dev
- libavformat-dev
- libavutil-dev
- libswscale-dev
- libx264-dev
apt install libavcodec-dev libavformat-dev libavutil-dev libswscale-dev libx264-dev
And set the build variables (optionally)
FFMPEG_INC_PATH=/my/ffmpeg/include/path
FFMPEG_LIB_PATH=/my/ffmpeg/library/path
(/!\ without/
terminal)FFMPEG_LINK_MODE=shared
(static or shared, shared by default)
Disable ffmpeg with NO_FFMPEG=1
.
Well, that's pretty easy once you installed the required dependencies.
Just run (as user):
$ bjam
or bjam toolset=your-compiler
(ex: bjam toolset=gcc
) (see https://boostorg.github.io/build/manual/develop/index.html#bbv2.overview.configuration and tools/bjam/user-config.jam
)
Verbose tests:
$ export REDEMPTION_LOG_PRINT=1
$ bjam tests
REDEMPTION_LOG_PRINT=e
for error and debug onlyREDEMPTION_LOG_PRINT=d
for debug onlyREDEMPTION_LOG_PRINT=w
for other than info
Note: bjam tests.norec
, bjam tests/front.norec
execute files directly in tests directory, but not recursively.
Compile executables without tests (as user):
$ bjam exe libs
and install (as administrator):
# bjam install
Binaries are located by default in /usr/local/bin
. For a user install, see setting build variables.
Use bjam --help
for more information.
REDEMPTION_FILTER_ERROR
: Only withBOOST_STACKTRACE=1
. no backtrace for specific error (seesrc/core/error.hpp
). example:export REDEMPTION_FILTER_ERROR=ERR_TRANSPORT_NO_MORE_DATA,ERR_SEC
.
List with sed -E 's/.*\[ setvar ([^ ]+).*\] ;/\1/;t;d' jam/defines.jam
bjam -s FFMPEG_INC_PATH=$HOME/ffmpeg/includes ...
Or with a shell variable
export FFMPEG_INC_PATH=$HOME/ffmpeg/includes
bjam ....
List default values with sed -E 's/^([A-Z_]+)_DEFAULT [^=]+= (.*) ;/\1 = \2/;t;d' jam/defines.jam
$ bjam [variant=]{release|debug|san} [-s cxx_option=value] [target...]
-
release
: default -
debug
: debug mode -
san
: debug + enable sanitizers: asan, lsan, usan -
-s cxx_color
: default auto never always -
-s cxx_lto
: off on fat linker-plugin -
-s cxx_relro
: default off on full -
-s cxx_stack_protector
: off on strong all -
...
(cxx_*
options list with sed -E 's/^constant jln_[^[]+\[ jln-get-env ([^ ]+) : ([^]]+) \].*/\1 = \2/;t;d' jam/cxxflags.jam
)
To test it, executes:
$ python tools/passthrough/passthrough.py
# /usr/local/bin/rdpproxy -nf
Now, at that point you'll just have two servers waiting for connections not much fun. You still have to run some RDP client to connect to proxy. Choose whichever you like xfreerdp, rdesktop, remmina, tsclient on Linux or of course mstsc.exe if you are on windows. All are supposed to work. If some problem occurs just report it to us so that we can correct it.
Example with freerdp when the proxy runs on the same host as the client:
$ xfreerdp /v:127.0.0.1
$ xfreerdp /v:127.0.0.1 /u:username@target_ip /p:password
A dialog box should open in which you can type a username and a password. With default passthrough.py at least internal services should work. Try login: internal, password: internal and bouncer2 or card as device. If you want to provide such extensions to current passthrough.py, please contribute it, it will be much appreciated.
$ xfreerdp /u:internal@internal /p:internal 127.0.0.1
.mwrm
and .wrm
are native capture formats in capture_flags=2
in rdpproxy.ini
.
redrec -f --video-codec mp4 -i file.mwrm -o output_prefix
Note: rdpproxy --print-default-ini
show a default ini file.
When create a new test or when a target fail with link error:
bjam targets.jam
for updated targets.jam
and projects/ClientQtGraphicAPI/redemption_deps.jam
files.
Or run ./tools/bjam/gen_targets.py > targets.jam
Specific deps (libs, header, cpp, etc) in ./tools/bjam/gen_targets.py
.
Proxy recorder is a tools used to record dialog between a client and an RDP server without any modification of the data by redemption. This allows to record reference traffic for replaying it later. It is useful for having available new parts or the RDP protocol in a reproducible way and replaying traffic when implementing the new orders. This tools is not (yet) packaged with redemption and delivered as stand-alone.
It can be compiled using static c++ libraries (usefull to use the runtime on systems where reference compiler is older) using the command line below. Links with openssl and kerberos are still dynamic and using shared libraries.
bjam -a -d2 toolset=gcc-7 proxy_recorder linkflags=-static-libstdc++
Exemple call line for proxy_recorder:
proxy_recorder --target-host 10.10.47.252 -p 3389 -P 8000 --nla-username myusername --nla-password mypassword -t dump-%d.out
./tools/packager.py --build-package
--force-target target
: target is a file in packaging/targets--force-build
./tools/packager.py --update-version 1.2.7 --git-tag --git-push-tag --git-push
Based on Boost.Test with a RED_
prefix rather than BOOST_
.
Redemption extra macro (tests/includes/test_only/test_framework/
):
RED_TEST_EQ(a, b)
,RED_CHECK_EQ
,RED_REQUIRE_EQ
RED_FILE_CONTENTS(filename, contents)
require#include "test_only/get_file_contents.hpp"
RED_TEST_DELEGATE_PRINT(type, expr)
: exRED_TEST_DELEGATE_PRINT(myvalue, x.get())
RED_TEST_DELEGATE_PRINT_ENUM(type)
RED_CHECK_EQ_RANGES(rng1, rng2)
RED_TEST_MEM(bytes1, bytes2)
,RED_CHECK_MEM
,RED_REQUIRE_MEM
RED_TEST_SMEM(bytes1, bytes2)
,RED_TEST_MEM_C
,RED_TEST_MEM_AC
,RED_TEST_MEM_AA
RED_TEST_[S]MEM_C(bytes1, cstr)
=RED_TEST_[S]MEM(bytes1, cstr ""_av)
RED_TEST_[S]MEM_AC(bytes1, cstr)
=RED_TEST_[S]MEM(make_array_view(bytes1), cstr ""_av)
RED_TEST_[S]MEM_AA(bytes1, cstr)
=RED_TEST_[S]MEM(make_array_view(bytes1), make_array_view(bytes2))
RED_TEST_FUNC(function)((args...) @ xxx)
:RED_TEST_FUNC(strlen)(("test") == 4)
RED_TEST_FUNC_CTX(function)
:auto fstrlen = RED_TEST_FUNC_CTX(function); RED_TEST(fstrlen("test") == 4)
RED_TEST_INVOKER(function)
:auto foo = RED_TEST_INVOKER(my_local_lambda_or_func) RED_TEST(foo("test") == 4)
RED_CHECK_EXCEPTION_ERROR_ID(stmt, id)
:CHECK_EXCEPTION_ERROR_ID(trans.send("message"_av), ERR_TRANSPORT_WRITE_FAILED)
RED_ERROR_COUNT
RED_BIND_DATA_TEST_CASE(name, dataset, varnames...)
RED_BIND_DATA_TEST_CASE(TestRdpLogonInfo, (std::array{
std::tuple{3, "3"},
std::tuple{5, "5"}
}), number, string)
{
RED_TEST(std::to_string(number) == string);
}
Special values:
RED_TEST(x == y +- 1_v); // x between y-1 to y+1
RED_TEST(x == y +- 3_percent); // x between y-y*3/100 to y+y*3/100
RED_TEST(x < y +- 1_v);
Special class:
- WorkingDiretory:
tests/includes/test_only/working_directory.hpp
It is simple, more that could be thought at first sight, and bjam has the major feature over make to keep source directories clean, all build related informations for all architecture are kept together in bin directory.
The main drawback of bjam is the smaller user base.
But keeping in mind the complexity of make (or worse autotools + make), bjam is a great help. We also used to have an alternative cmake build system, but it was more complex than bjam and not maintained, so was removed.
Just edit config_spec.hpp (projects/redemption_configs/configs_specs/configs/specs/config_spec.hpp
).
The necessary changes should be simple using the surrounding code as exemple.
Then enter directory projects/redemption_configs
and type bjam
the needed files will be generated.