pyrdp-mitm


Namepyrdp-mitm JSON
Version 2.1.0 PyPI version JSON
download
home_page
SummaryRemote Desktop Protocol (RDP) Monster-in-the-Middle tool and Python library
upload_time2024-01-23 21:17:19
maintainer
docs_urlNone
authorÉmilio Gonzalez, Francis Labelle, Alexandre Beaulieu
requires_python>=3.7
license
keywords rdp mitm interception attack pentest honeypots
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # PyRDP

[![Tests](https://github.com/GoSecure/pyrdp/actions/workflows/ci.yml/badge.svg)](https://github.com/GoSecure/pyrdp/actions/workflows/ci.yml)
[![Black Hat Arsenal 2019](https://raw.githubusercontent.com/toolswatch/badges/master/arsenal/usa/2019.svg?sanitize=true)](https://www.blackhat.com/us-19/arsenal/schedule/index.html)
[![Black Hat Arsenal 2021](https://raw.githubusercontent.com/toolswatch/badges/master/arsenal/usa/2021.svg?sanitize=true)](https://www.blackhat.com/us-21/arsenal/schedule/index.html)
[![Black Hat Arsenal 2022](https://raw.githubusercontent.com/toolswatch/badges/master/arsenal/usa/2022.svg?sanitize=true)](https://www.blackhat.com/us-22/arsenal/schedule/index.html#pyrdp-remote-desktop-protocol-mitm-for-purple-teamers-28021)

PyRDP is a Python Remote Desktop Protocol (RDP) Monster-in-the-Middle (MITM) tool and library.

![PyRDP Logo](https://raw.githubusercontent.com/GoSecure/pyrdp/main/docs/pyrdp-logo.svg?sanitize=true)

It features a few tools:
- RDP Monster-in-the-Middle
    - Logs plaintext credentials or NetNTLM hashes used when connecting
    - Steals data copied to the clipboard
    - Saves a copy of the files transferred over the network
    - Crawls shared drives in the background and saves them locally
    - Saves replays of connections so you can look at them later
    - Runs console commands or PowerShell payloads automatically on new connections
- RDP Player:
    - See live RDP connections coming from the MITM
    - View replays of RDP connections
    - Take control of active RDP sessions while hiding your actions
    - List the client's mapped drives and download files from them during active sessions
- Converter tool:
    - Convert RDP replays to videos for easier sharing
    - Convert RDP replays to a sequence of low-level events serialized in JSON format
    - Convert PCAPs to replays, videos or JSON events
    - Convert decrypted PCAPs (L7 PDUs) to replays, videos or JSON events
- RDP Certificate Cloner:
    - Create a self-signed X509 certificate with the same fields as an RDP server's certificate

PyRDP was [introduced in 2018](https://www.gosecure.net/blog/2018/12/19/rdp-man-in-the-middle-smile-youre-on-camera) in
which we [demonstrated that we can catch a real threat actor in
action](https://www.youtube.com/watch?v=eB7RC9FmL6Q). This tool is being developed with both pentest and malware
research use cases in mind.


![PyRDP Player Replaying an RDP session](docs/screens/replay.png)


## Table of Contents
* [Supported Systems](#supported-systems)
* [Installing](#installing)
  * [Using pipx](#using-pipx)
  * [Using the Docker Image](#using-the-docker-image)
* [Using PyRDP](#using-pyrdp)
  * [Using the PyRDP Monster\-in\-the\-Middle](#using-the-pyrdp-monster-in-the-middle)
  * [Using the PyRDP Player](#using-the-pyrdp-player)
  * [Using the PyRDP Certificate Cloner](#using-the-pyrdp-certificate-cloner)
  * [Using PyRDP Convert](#using-pyrdp-convert)
  * [Configuring PyRDP](#configuring-pyrdp)
  * [Advanced Usage](#advanced-usage)
  * [Docker Specific Usage Instructions](#docker-specific-usage-instructions)
* [PyRDP Lore](#pyrdp-lore)
* [Contributing to PyRDP](#contributing-to-pyrdp)
* [Acknowledgements](#acknowledgements)


## Supported Systems
PyRDP should work on Python 3.7 and up on the x86-64, ARM and ARM64 platforms.

This tool has been tested to work on Python 3.7 on Linux (Ubuntu 20.04, 22.04), Raspberry Pi and Windows. It has not been tested on macOS.


## Installing

Two installation techniques are recommended via `pipx` or using docker containers.
Installing from source or building docker containers yourself is covered in the [development documentation](docs/devel.adoc).

### Using pipx

#### Dependencies

##### Linux

First, make sure to install the prerequisite packages (these are listed for Ubuntu 22.04, you might need to adjust for other distros). We provide two types of installs a full one and a
slim one. Install the dependencies according to your use case.

```
# Full install (GUI, convert captures to video)
sudo apt install python3 python3-pip python3-venv \
        build-essential python3-dev openssl \
        libegl1 libxcb-cursor0 libxkbcommon-x11-0 libxcb-icccm4 libxcb-keysyms1 \
        libnotify-bin \
        libavcodec58 libavdevice58

# Slim install (no GUI, no conversion to video possible)
sudo apt install python3 python3-pip python3-venv \
        build-essential python3-dev git openssl
```

This should install the dependencies required to run PyRDP. If you choose to
install without the GUI or video conversion dependencies, it will not be possible to use
`pyrdp-player` without headless mode (`--headless`) or `pyrdp-convert` to produce video output.

Make sure you have `pipx` installed. On Ubuntu 22.04:

```
python3 -m pip install --user pipx
python3 -m pipx ensurepath
```

##### Windows

Make sure you have Python installed.
Windows Store Python didn't work for me on Windows 11.
We recommend installing Python via [Scoop](https://scoop.sh/).

```
scoop install python # if not installed already
scoop install pipx
pipx ensurepath
```

Log out and log back in (to update your PATH).

##### Other OS

To install `pipx` on other operating systems see here: https://github.com/pypa/pipx#install-pipx


#### Install

For the full PyRDP experience with the QT GUI and the ability to convert captures to video:

```
pipx install pyrdp-mitm[full]
```

For the compact version meant to be run in headless environments (servers, RaspberryPi):

```
pipx install pyrdp-mitm
```

You are ready to go! See the [usage instructions](#using-pyrdp).


### Using the Docker Image

This is the easiest installation method if you have docker installed and working.

```
docker pull gosecure/pyrdp:latest
```

As an alternative we have a slimmer image without the GUI and ffmpeg dependencies.
This is the only provided image on ARM platforms.

```
docker pull gosecure/pyrdp:latest-slim
```

You can find the list of all our Docker images [on the gosecure/pyrdp DockerHub page](https://hub.docker.com/r/gosecure/pyrdp/tags).
The `latest` tag refers to the latest released version while the `devel` tag is the docker image built out of our `main` branch.


## Using PyRDP

### Using the PyRDP Monster-in-the-Middle
Use `pyrdp-mitm <ServerIP>` or `pyrdp-mitm <ServerIP>:<ServerPort>` to run the MITM.

Assuming you have an RDP server running on `192.168.1.10` and listening on port 3389, you would run:

```
pyrdp-mitm 192.168.1.10
```

When running the MITM for the first time a directory called `pyrdp_output/`
will be created relative to the current working directory.
Here is an example layout of that directory:

```
pyrdp_output/
├── certs
│   ├── WinDev2108Eval.crt
│   └── WinDev2108Eval.pem
├── files
│   ├── e91c6a5eb3ca15df5a5cb4cf4ebb6f33b2d379a3a12d7d6de8c412d4323feb4c
│   ├── b14b26b7d02c85e74ab4f0d847553b2fdfaf8bc616f7c3efcc4771aeddd55700
├── filesystems
│   ├── romantic_kalam_8214773
│   │   └── device1
│   │   └── clipboard
|           └── priv-esc.exe -> ../../../files/b14b26b7d02c85e74ab4f0d847553b2fdfaf8bc616f7c3efcc4771aeddd55700
│   └── happy_stonebraker_1992243
│       ├── device1
│       └── device2
|           └── Users/User/3D Objects/desktop.ini -> ../../../../../../e91c6a5eb3ca15df5a5cb4cf4ebb6f33b2d379a3a12d7d6de8c412d4323feb4c
├── logs
│   ├── crawl.json
│   ├── crawl.log
│   ├── mitm.json
│   ├── mitm.log
│   ├── mitm.log.2021-08-26
│   ├── ntlmssp.log
│   ├── player.log
│   └── ssl.log
└── replays
    ├── rdp_replay_20231214_01-20-28_965_happy_stonebraker_1992243.pyrdp
    └── rdp_replay_20231214_00-42-24_295_romantic_kalam_8214773.pyrdp
```

* `certs/` contains the certificates generated stored using the `CN` of the certificate as the file name
* `files/` contains all files captured and are deduplicated by saving them using the SHA-256 hash of the content as the filename
* `filesystems/` contains a recreation of the filesystem of the targets classified by session IDs.
   To save space on similar sessions, files are symbolic links to the actual files under `files/`.
* `logs/` contains all the various logs with most in both JSON and plaintext formats:
  * `crawl`: the file crawler log
  * `mitm`: the main MITM log
  * `ntlmssp.log`: the captured NetNTLM hashes
  * `player.log`: the player log
  * `ssl.log`: the TLS master secrets stored in a format compatible with Wireshark
* `replays/` contains all the previously recorded PyRDP sessions with timestamps and session IDs in the filename

#### Specifying the private key and certificate
If key generation didn't work or you want to use a custom key and certificate, you can specify them using the
`-c` and `-k` arguments:

```
pyrdp-mitm 192.168.1.10 -k private_key.pem -c certificate.pem
```

##### Monster-in-the-Middle Network Level Authentication (NLA) connections
Network Level Authentication (NLA) is a security feature available since Windows Vista that adds security to RDP connections.
NLA relies on the new security support provider CredSSP and is sometimes referred by that name.
A server that enforces NLA is harder to attack.
There are three different strategies that can be used:

* Obtain the server's certificate and private key
* Using a host redirection feature
* Capture the client's NetNTLMv2 hash and crack it

###### Monster-in-the-Middle NLA
If we have access to the server's certificate and private key, we can successfully MITM RDP even if NLA is enforced.
We [documented this attack in our 1.0 release blog post](https://www.gosecure.net/blog/2020/10/20/announcing-pyrdp-1-0/).
Instructions to [extract the RDP certificate and private key](https://github.com/GoSecure/pyrdp/blob/main/docs/cert-extraction.md) are available on our GitHub.

With the certificate and private key accessible, you just need to set the authentication to `ssp` by adding this on the `pyrdp-mitm.py` command-line:
```
--auth ssp -c <certificate.pem> -k <private-key.pem>
```
This will enable the possibility to intercept NLA-enforced connections.

###### Alternative host redirection when NLA enforced by server
![Diagram that explains NLA redirection](docs/nla-redirection.png)

When PyRDP connects to the destination RDP server (1) if that server enforces NLA then PyRDP (2) will replace the connection to go to another host of your chosing (3) instead.

For example, this can be used to redirect to a server that is known not to enforce NLA or it could even redirect to a VM in the control of an attacker.

To enable this feature specify the alternative host's address and port like this:
```
--nla-redirection-host 192.168.1.12 --nla-redirection-port 3389
```

This feature was introduced in PyRDP 1.1.0.

###### Capturing NetNTLMv2 hashes
NetNTLMv2 hashes are useful for an attacker as they can be cracked relatively easily allowing attackers to leverage legitimate RDP access or attempt credentials stuffing.
Starting with version 1.1.0, PyRDP has the ability to capture the client's NetNTLMv2 hashes via an NLA (CredSSP) connection by carrying the negotiation and capturing the NTLMSSP authentication messages.
In version 1.2.0 that support was extended to work even if we don't have the server's certificate and private key meaning that the connection will not be successfully MITM'ed.
This is similar to what [Responder](https://github.com/lgandx/Responder) does with RDP.
The captured NetNTLMv2 hash can be found in the `ntlmssp.log` log file and it's
formatted so cracking tools like [John The Ripper](https://www.openwall.com/john/) or [hashcat](https://hashcat.net/hashcat/) can ingest it.

This technique has been described in details in a blog post: [Capturing RDP NetNTLMv2 Hashes: Attack details and a Technical How-To Guide](https://www.gosecure.net/blog/2022/01/17/capturing-rdp-netntlmv2-hashes-attack-details-and-a-technical-how-to-guide/)

This feature is compatible with `--auth ssp` but incompatible with `--nla-redirection-host`.

#### Connecting to the PyRDP player
If you want to see live RDP connections through the PyRDP player, you will need to specify the IP address and port on which the
player is listening using the `-i` and `-d` arguments. Note: the port argument is optional, the default port is 3000.

```
pyrdp-mitm 192.168.1.10 -i 127.0.0.1 -d 3000
```

##### Connecting to a PyRDP player when the MITM is running on a server
If you are running the MITM on a server and still want to see live RDP connections, you should use
[SSH remote port forwarding](https://www.booleanworld.com/guide-ssh-port-forwarding-tunnelling/)
to forward a port on your server to the player's port on your machine. Once this is done, you pass `127.0.0.1` and the forwarded
port as arguments to the MITM. For example, if port 4000 on the server is forwarded to the player's port on your machine,
this would be the command to use:

```
pyrdp-mitm 192.168.1.10 -i 127.0.0.1 -d 4000
```

#### Running payloads on new connections
PyRDP has support for running console commands or PowerShell payloads automatically when new connections are made.
Due to the nature of RDP, the process is a bit hackish and is not always 100% reliable. Here is how it works:

1. Wait for the user to be authenticated.
2. Block the client's input / output to hide the payload and prevent interference.
3. Send a fake Windows+R sequence and run `cmd.exe`.
4. Run the payload as a console command and exit the console. If a PowerShell payload is configured, it is run with `powershell -enc <PAYLOAD>`.
5. Wait a bit to allow the payload to complete.
6. Restore the client's input / output.

For this to work, you need to set 3 arguments:

- the payload
- the delay before the payload starts
- the payload's duration

##### Setting the payload
You can use one of the following arguments to set the payload to run:

- `--payload`, a string containing console commands
- `--payload-powershell`, a string containing PowerShell commands
- `--payload-powershell-file`, a path to a PowerShell script

##### Choosing when to start the payload
For the moment, PyRDP does not detect when the user is logged on.
You must give it an amount of time to wait for before running the payload.
After this amount of time has passed, it will send the fake key sequences and expect the payload to run properly.
To do this, you use the `--payload-delay` argument. The delay is in milliseconds.
For example, if you expect the user to be logged in within the first 5 seconds, you would use the following arguments:

```
--payload-delay 5000
```

This could be made more accurate by leveraging some messages exchanged during RDPDR initialization.
See [this issue](https://github.com/GoSecure/pyrdp/issues/98) if you're interested in making this work better.

##### Choosing when to resume normal activity
Because there is no direct way to know when the console has stopped running, you must tell PyRDP how long you want
the client's input / output to be blocked. We recommend you set this to the maximum amount of time you would expect the
console that is running your payload to be visible. In other words, the amount of time you would expect your payload to
complete.
To set the payload duration, you use the `--payload-duration` argument with an amount of time in milliseconds.
For example, if you expect your payload to take up to 5 seconds to complete, you would use the following argument:

```
--payload-duration 5000
```

This will block the client's input / output for 5 seconds to hide the console and prevent interference.
After 5 seconds, input / output is restored back to normal.

#### Other MITM arguments
Run `pyrdp-mitm --help` for a full list of arguments.

##### `--no-downgrade`

This argument is useful when running PyRDP in Honeypot scenarios to avoid scanner fingerprinting.
When the switch is enabled, PyRDP will not downgrade unsupported extensions and let the traffic through
transparently. The player will likely not be able to successfully replay video traffic, but the following
supported channels should still be accessible:

- Keystroke recording
- Mouse position updates
- Clipboard access (passively)
- Drive access (passively)

This feature is still a work in progress and some downgrading is currently unavoidable to allow the connection
to be established. The following are currently not affected by this switch and will still be disabled:

- FIPS Encryption
- Non-TLS encryption protocols
- ClientInfo compression
- Virtual Channel compression

**NOTE**: If being able to eventually replay the full session is important, a good solution is to record the raw
RDP traffic using Wireshark and keep the TLS master secrets. Whenever PyRDP adds support for additional extensions,
it would then become possible to extract a valid RDP replay file from the raw network capture.

##### `--transparent`

Tells PyRDP to attempt to spoof the source IP address of the client so that the server sees the real IP
address instead of the MITM one. This option is only useful in certain scenarios where the MITM is physically
a gateway between clients and the server and sees all traffic.
[Specific examples can be found here.](docs/transparent-proxy.md)

**NOTE**: This requires root privileges, only works on Linux and requires manual firewall configuration to ensure
that traffic is routed properly.

##### `--no-gdi`: Disable Accelerated Graphics Pipeline

PyRDP downgrades video to the the most recent graphics pipeline that it supports. This switch explicitly tells the
MITM to not use the [Graphics Device Interface Acceleration][gdi] extensions to stream video. The advantage of this mode
is a significant reduction in required bandwidth for high resolution connections.

Note that some GDI drawing orders are currently unimplemented because they appear to be unused. If you have a replay
which contains any unsupported or untested order, do not hesitate to share it with the project maintainers so that
support can be added as required. (Make sure that the trace does not contain sensitive information)

[gdi]: https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-rdpegdi/745f2eee-d110-464c-8aca-06fc1814f6ad

### Using the PyRDP Player
Use `pyrdp-player` to run the player.

#### Playing a replay file
You can use the menu to open a new replay file: File > Open.

You can also open replay files when launching the player:

```
pyrdp-player <FILE1> <FILE2> ...
```

#### Listening for live connections
The player always listens for live connections. By default, the listening port is 3000, but it can be changed:

```
pyrdp-player -p <PORT>
```

#### Changing the listening address
By default, the player only listens to connections coming from the local machine. We do not recommend opening up the player
to other machines. If you still want to change the listening address, you can do it with `-b`:

```
pyrdp-player -b <ADDRESS>
```

#### Other player arguments
Run `pyrdp-player --help` for a full list of arguments.

### Using the PyRDP Certificate Cloner

NOTE: Using this tool is optional.
Since version 1.0 PyRDP generate certificates on-the-fly exactly like this tool would do.

The PyRDP certificate cloner creates a brand new X509 certificate by using the values from an existing RDP server's
certificate. It connects to an RDP server, downloads its certificate, generates a new private key and replaces the
public key and signature of the certificate using the new private key. This can be used in a pentest if, for example,
you're trying to trick a legitimate user into going through your MITM. Using a certificate that looks like a legitimate
certificate could increase your success rate.

#### Cloning a certificate
You can clone a certificate by using `pyrdp-clonecert`:

```
pyrdp-clonecert 192.168.1.10 cert.pem -o key.pem
```

The `-o` parameter defines the path name to use for the generated private key.

#### Using a custom private key
If you want to use your own private key instead of generating a new one:

```
pyrdp-clonecert 192.168.1.10 cert.pem -i input_key.pem
```

#### Other cloner arguments
Run `pyrdp-clonecert --help` for a full list of arguments.

### Using PyRDP Convert

`pyrdp-convert` is a helper script that performs several useful conversions from various input formats to various output formats.
The script has the best chance of working on traffic captured by PyRDP due to unsupported RDP protocol features that might be used in a non-intercepted connection.

The following inputs are supported:

- Network Capture (PCAP) with TLS master secrets (less reliable)
- Network Capture (PCAP) in Exported PDUs Layer 7 format (more reliable)
- Replay file generated by PyRDP

The following outputs are supported:

- MP4 video file
- JSON: a sequence of low-level events serialized in JSON format
- Replay file compatible with `pyrdp-player`

Encrypted (TLS) network captures require the TLS master secrets to be provided using `--secrets ssl.log`.

```
# Export the session coming client 10.2.0.198 to a .pyrdp file.
pyrdp-convert --src 10.2.0.198 --secrets ssl.log -o path/to/output capture.pcap

# Or as an MP4 video
pyrdp-convert --src 10.2.0.198 --secrets ssl.log -o path/to/output -f mp4 capture.pcap

# List the sessions in a network trace, along with the decryptable ones.
pyrdp-convert --list-only capture.pcap
```

Note that MP4 conversion requires libavcodec and ffmpeg, so this may require extra steps on Windows.

Manually decrypted network traces can be exported from Wireshark by selecting `File > Export PDUs` and selecting `OSI Layer 7`.

First, make sure you configured wireshark to load TLS secrets:

![Configure TLS secrets log](docs/screens/wireshark-tls.png)

Next, export OSI Layer 7 PDUs:

![Export OSI Layer 7](docs/screens/wireshark-export.png)

And optionally, filter down the trace to contain only the conversation(s) of interest by applying a
display filter and clicking `File > Export Specified Packets...`

![Optionally filtering the exported trace](docs/screens/wireshark-export-specified.png)

Now this trace can be used directly in `pyrdp-convert`.


### Configuring PyRDP

Most of the PyRDP configuration is done through command line switches, but it is also possible to use a
configuration file for certain settings such as log configuration.

The default configuration files used by PyRDP are located in [mitm.default.ini](pyrdp/mitm/mitm.default.ini)
and [player.default.ini](pyrdp/player/player.default.ini). Both files are thoroughly documented and can serve
as a basis for further configuration.

In the future there are plans to support other aspects of PyRDP configuration through those configuration files.

### Advanced Usage

#### Using PyRDP as a Library
If you're interested in experimenting with RDP and making your own tools, head over to our
[documentation section](docs/README.md) for more information.

#### Using PyRDP with twistd
The PyRDP MITM component was also implemented as a twistd plugin.
This enables you to run it in debug mode and allows you to get an interactive debugging repl (pdb) if you send a `SIGUSR2` to the twistd process.
See the [twistd documentation](docs/twistd.md) for more information.

#### Using PyRDP with Bettercap
We developped our own Bettercap module, `rdp.proxy`, to monster-in-the-middle all RDP connections
on a given LAN. Check out [this document](docs/bettercap-rdp-mitm.md) for more information.

### Docker Specific Usage Instructions

Since docker restricts the interactions with the host system (filesystem and network), the PyRDP docker image must be run with some parameters depending on your use case. This section documents those parameters.

We refer to the publicly provided docker image but if you [built your own](#building-the-docker-image) replace `gosecure/pyrdp` with the name of your locally built image.

#### Mapping a Listening Port

In most of the monster-in-the-middle cases you will need to map a port of your host into the docker image. This is achieved by the `--publish` (`-p`) parameters applied to `docker run`.

For example, to listen on 3389 (RDP's default port) on all interfaces, use:

```
docker run -p 3389:3389 gosecure/pyrdp pyrdp-mitm 192.168.1.10
```

#### Logs and Artifacts Storage

To store the PyRDP output permanently (logs, files, etc.), add the `--volume` (`-v`) option to the previous command. In this example we store the files relatively to the current directory in `pyrdp_output`:

```
docker run -v $PWD/pyrdp_output:/home/pyrdp/pyrdp_output -p 3389:3389 gosecure/pyrdp pyrdp-mitm 192.168.1.10
```

Make sure that your destination directory is owned by a user with a UID of 1000, otherwise you will get permission denied errors.
If you are the only non-root user on the system, usually your user will be assigned UID 1000.

#### Logging the host IP address

If you want PyRDP to log the host IP address in its logs, you can set the `HOST_IP` environment variable when using `docker run`:

```
docker run -p 3389:3389 -e HOST_IP=192.168.1.9 gosecure/pyrdp pyrdp-mitm 192.168.1.10
```

#### Using the GUI Player in Docker

Using the player will require you to export the `DISPLAY` environment variable from the host to the docker.
This redirects the GUI of the player to the host screen.
You also need to expose the host's network and prevent Qt from using the MIT-SHM X11 Shared Memory Extension.
To do so, add the `-e` and `--net` options to the run command:

```
docker run -e DISPLAY=$DISPLAY -e QT_X11_NO_MITSHM=1 --net=host gosecure/pyrdp pyrdp-player
```

Keep in mind that exposing the host's network to docker can compromise the isolation between your container and the host.
If you plan on using the player, X11 forwarding using an SSH connection would be a more secure way.

#### Converting videos in Docker

The video conversion process relies on PyAV, ffmpeg and QT so you need the regular docker image not the slim one.

You need a volume mount (`-v`) to share files with the container.
Here we map our local directory with `/shared/` in the container.

```
docker run -e QT_QPA_PLATFORM=offscreen -v $PWD/:/shared gosecure/pyrdp pyrdp-convert -f mp4 <filename-relative-to-volume-in-/shared/> -o /shared/
```

The `QT_QPA_PLATFORM=offscreen` environment variable is required [due to a bug documented here](https://github.com/GoSecure/pyrdp/issues/428).
It tells to QT that it is correct that no display environment is available.


## PyRDP Lore

* [Introduction blog post](https://www.gosecure.net/blog/2018/12/19/rdp-man-in-the-middle-smile-youre-on-camera) in which we [demonstrated that we can catch a real threat actor in action](https://www.youtube.com/watch?v=eB7RC9FmL6Q)
* [Talk at NorthSec 2019](https://docs.google.com/presentation/d/1avcn8Sh2b3IE7AA0G9l7Cj5F1pxqizUm98IbXUo2cvY/edit#slide=id.g404b70030f_0_581) where two demos were performed:
  * [First demo](https://youtu.be/5JztJzi-m48): credential logging, clipboard stealing, client-side file browsing and a session take-over
  * [Second demo](https://youtu.be/bU67tj1RkMA): the execution of cmd or powershell payloads when a client successfully authenticates
* [PyRDP Logo](/docs/pyrdp-logo.png) licensed under CC-BY-SA 4.0.
* [BlackHat USA Arsenal 2019 Slides](https://docs.google.com/presentation/d/17P_l2n-hgCehQ5eTWilru4IXXHnGIRTj4ftoW4BiX5A/edit?usp=sharing)
* [DerbyCon 2019 Slides](https://docs.google.com/presentation/d/1UAiN2EZwDcmBjLe_t5HXB0LzbNclU3nnigC-XM4neIU/edit?usp=sharing) ([Video](https://www.youtube.com/watch?v=zgt3N6Nrnss))
* [Blog: PyRDP on Autopilot](https://www.gosecure.net/blog/2020/02/26/pyrdp-on-autopilot-unattended-credential-harvesting-and-client-side-file-stealing/)
* [Blog: PyRDP 1.0](https://www.gosecure.net/blog/2020/10/20/announcing-pyrdp-1-0/)
* [DefCon 2020 Demo Labs](https://www.youtube.com/watch?v=1q2Eo3x3u0g)
* [Blog: Capturing RDP NetNTLMv2 Hashes: Attack details and a Technical How-To Guide](https://www.gosecure.net/blog/2022/01/17/capturing-rdp-netntlmv2-hashes-attack-details-and-a-technical-how-to-guide/)
* [BlackHat USA Arsenal 2021 Slides](https://gosecure.github.io/presentations/2021-08-05_blackhat-usa/BlackHat-USA-21-Arsenal-PyRDP-OlivierBilodeau.pdf)
* [Presentation: I Watched You Roll the Die: Unparalleled RDP Monitoring Reveal Attackers' Tradecraft](http://i.blackhat.com/BH-US-23/Presentations/US-23-Bilodeau-I-Watched-You-Roll-the-Die-Unparalleled-RDP-Monitoring.pdf) at BlackHat USA 2023



## Contributing to PyRDP
See our [contribution guidelines](CONTRIBUTING.md).

## Acknowledgements
PyRDP uses code from the following open-source software:

- [RC4-Python](https://github.com/bozhu/RC4-Python) for the RC4 implementation.
- [rdesktop](https://github.com/rdesktop/rdesktop) for bitmap decompression.
- [rdpy](https://github.com/citronneur/rdpy) for RC4 keys, the bitmap decompression bindings and the base GUI code for
the PyRDP player.
- [FreeRDP](https://github.com/FreeRDP/FreeRDP) for the scan code enumeration.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "pyrdp-mitm",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "RDP,MITM,interception,attack,pentest,honeypots",
    "author": "\u00c9milio Gonzalez, Francis Labelle, Alexandre Beaulieu",
    "author_email": "Olivier Bilodeau <obilodeau@gosecure.net>",
    "download_url": "https://files.pythonhosted.org/packages/16/2a/eaf5cb0d3130ae3c23e06f43a1770bf6989f0b88238c7bf89d93498a1b6d/pyrdp-mitm-2.1.0.tar.gz",
    "platform": null,
    "description": "# PyRDP\n\n[![Tests](https://github.com/GoSecure/pyrdp/actions/workflows/ci.yml/badge.svg)](https://github.com/GoSecure/pyrdp/actions/workflows/ci.yml)\n[![Black Hat Arsenal 2019](https://raw.githubusercontent.com/toolswatch/badges/master/arsenal/usa/2019.svg?sanitize=true)](https://www.blackhat.com/us-19/arsenal/schedule/index.html)\n[![Black Hat Arsenal 2021](https://raw.githubusercontent.com/toolswatch/badges/master/arsenal/usa/2021.svg?sanitize=true)](https://www.blackhat.com/us-21/arsenal/schedule/index.html)\n[![Black Hat Arsenal 2022](https://raw.githubusercontent.com/toolswatch/badges/master/arsenal/usa/2022.svg?sanitize=true)](https://www.blackhat.com/us-22/arsenal/schedule/index.html#pyrdp-remote-desktop-protocol-mitm-for-purple-teamers-28021)\n\nPyRDP is a Python Remote Desktop Protocol (RDP) Monster-in-the-Middle (MITM) tool and library.\n\n![PyRDP Logo](https://raw.githubusercontent.com/GoSecure/pyrdp/main/docs/pyrdp-logo.svg?sanitize=true)\n\nIt features a few tools:\n- RDP Monster-in-the-Middle\n    - Logs plaintext credentials or NetNTLM hashes used when connecting\n    - Steals data copied to the clipboard\n    - Saves a copy of the files transferred over the network\n    - Crawls shared drives in the background and saves them locally\n    - Saves replays of connections so you can look at them later\n    - Runs console commands or PowerShell payloads automatically on new connections\n- RDP Player:\n    - See live RDP connections coming from the MITM\n    - View replays of RDP connections\n    - Take control of active RDP sessions while hiding your actions\n    - List the client's mapped drives and download files from them during active sessions\n- Converter tool:\n    - Convert RDP replays to videos for easier sharing\n    - Convert RDP replays to a sequence of low-level events serialized in JSON format\n    - Convert PCAPs to replays, videos or JSON events\n    - Convert decrypted PCAPs (L7 PDUs) to replays, videos or JSON events\n- RDP Certificate Cloner:\n    - Create a self-signed X509 certificate with the same fields as an RDP server's certificate\n\nPyRDP was [introduced in 2018](https://www.gosecure.net/blog/2018/12/19/rdp-man-in-the-middle-smile-youre-on-camera) in\nwhich we [demonstrated that we can catch a real threat actor in\naction](https://www.youtube.com/watch?v=eB7RC9FmL6Q). This tool is being developed with both pentest and malware\nresearch use cases in mind.\n\n\n![PyRDP Player Replaying an RDP session](docs/screens/replay.png)\n\n\n## Table of Contents\n* [Supported Systems](#supported-systems)\n* [Installing](#installing)\n  * [Using pipx](#using-pipx)\n  * [Using the Docker Image](#using-the-docker-image)\n* [Using PyRDP](#using-pyrdp)\n  * [Using the PyRDP Monster\\-in\\-the\\-Middle](#using-the-pyrdp-monster-in-the-middle)\n  * [Using the PyRDP Player](#using-the-pyrdp-player)\n  * [Using the PyRDP Certificate Cloner](#using-the-pyrdp-certificate-cloner)\n  * [Using PyRDP Convert](#using-pyrdp-convert)\n  * [Configuring PyRDP](#configuring-pyrdp)\n  * [Advanced Usage](#advanced-usage)\n  * [Docker Specific Usage Instructions](#docker-specific-usage-instructions)\n* [PyRDP Lore](#pyrdp-lore)\n* [Contributing to PyRDP](#contributing-to-pyrdp)\n* [Acknowledgements](#acknowledgements)\n\n\n## Supported Systems\nPyRDP should work on Python 3.7 and up on the x86-64, ARM and ARM64 platforms.\n\nThis tool has been tested to work on Python 3.7 on Linux (Ubuntu 20.04, 22.04), Raspberry Pi and Windows. It has not been tested on macOS.\n\n\n## Installing\n\nTwo installation techniques are recommended via `pipx` or using docker containers.\nInstalling from source or building docker containers yourself is covered in the [development documentation](docs/devel.adoc).\n\n### Using pipx\n\n#### Dependencies\n\n##### Linux\n\nFirst, make sure to install the prerequisite packages (these are listed for Ubuntu 22.04, you might need to adjust for other distros). We provide two types of installs a full one and a\nslim one. Install the dependencies according to your use case.\n\n```\n# Full install (GUI, convert captures to video)\nsudo apt install python3 python3-pip python3-venv \\\n        build-essential python3-dev openssl \\\n        libegl1 libxcb-cursor0 libxkbcommon-x11-0 libxcb-icccm4 libxcb-keysyms1 \\\n        libnotify-bin \\\n        libavcodec58 libavdevice58\n\n# Slim install (no GUI, no conversion to video possible)\nsudo apt install python3 python3-pip python3-venv \\\n        build-essential python3-dev git openssl\n```\n\nThis should install the dependencies required to run PyRDP. If you choose to\ninstall without the GUI or video conversion dependencies, it will not be possible to use\n`pyrdp-player` without headless mode (`--headless`) or `pyrdp-convert` to produce video output.\n\nMake sure you have `pipx` installed. On Ubuntu 22.04:\n\n```\npython3 -m pip install --user pipx\npython3 -m pipx ensurepath\n```\n\n##### Windows\n\nMake sure you have Python installed.\nWindows Store Python didn't work for me on Windows 11.\nWe recommend installing Python via [Scoop](https://scoop.sh/).\n\n```\nscoop install python # if not installed already\nscoop install pipx\npipx ensurepath\n```\n\nLog out and log back in (to update your PATH).\n\n##### Other OS\n\nTo install `pipx` on other operating systems see here: https://github.com/pypa/pipx#install-pipx\n\n\n#### Install\n\nFor the full PyRDP experience with the QT GUI and the ability to convert captures to video:\n\n```\npipx install pyrdp-mitm[full]\n```\n\nFor the compact version meant to be run in headless environments (servers, RaspberryPi):\n\n```\npipx install pyrdp-mitm\n```\n\nYou are ready to go! See the [usage instructions](#using-pyrdp).\n\n\n### Using the Docker Image\n\nThis is the easiest installation method if you have docker installed and working.\n\n```\ndocker pull gosecure/pyrdp:latest\n```\n\nAs an alternative we have a slimmer image without the GUI and ffmpeg dependencies.\nThis is the only provided image on ARM platforms.\n\n```\ndocker pull gosecure/pyrdp:latest-slim\n```\n\nYou can find the list of all our Docker images [on the gosecure/pyrdp DockerHub page](https://hub.docker.com/r/gosecure/pyrdp/tags).\nThe `latest` tag refers to the latest released version while the `devel` tag is the docker image built out of our `main` branch.\n\n\n## Using PyRDP\n\n### Using the PyRDP Monster-in-the-Middle\nUse `pyrdp-mitm <ServerIP>` or `pyrdp-mitm <ServerIP>:<ServerPort>` to run the MITM.\n\nAssuming you have an RDP server running on `192.168.1.10` and listening on port 3389, you would run:\n\n```\npyrdp-mitm 192.168.1.10\n```\n\nWhen running the MITM for the first time a directory called `pyrdp_output/`\nwill be created relative to the current working directory.\nHere is an example layout of that directory:\n\n```\npyrdp_output/\n\u251c\u2500\u2500 certs\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 WinDev2108Eval.crt\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 WinDev2108Eval.pem\n\u251c\u2500\u2500 files\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 e91c6a5eb3ca15df5a5cb4cf4ebb6f33b2d379a3a12d7d6de8c412d4323feb4c\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 b14b26b7d02c85e74ab4f0d847553b2fdfaf8bc616f7c3efcc4771aeddd55700\n\u251c\u2500\u2500 filesystems\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 romantic_kalam_8214773\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 device1\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 clipboard\n|           \u2514\u2500\u2500 priv-esc.exe -> ../../../files/b14b26b7d02c85e74ab4f0d847553b2fdfaf8bc616f7c3efcc4771aeddd55700\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 happy_stonebraker_1992243\n\u2502\u00a0\u00a0     \u251c\u2500\u2500 device1\n\u2502\u00a0\u00a0     \u2514\u2500\u2500 device2\n|           \u2514\u2500\u2500 Users/User/3D Objects/desktop.ini -> ../../../../../../e91c6a5eb3ca15df5a5cb4cf4ebb6f33b2d379a3a12d7d6de8c412d4323feb4c\n\u251c\u2500\u2500 logs\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 crawl.json\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 crawl.log\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mitm.json\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mitm.log\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 mitm.log.2021-08-26\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 ntlmssp.log\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 player.log\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 ssl.log\n\u2514\u2500\u2500 replays\n    \u251c\u2500\u2500 rdp_replay_20231214_01-20-28_965_happy_stonebraker_1992243.pyrdp\n    \u2514\u2500\u2500 rdp_replay_20231214_00-42-24_295_romantic_kalam_8214773.pyrdp\n```\n\n* `certs/` contains the certificates generated stored using the `CN` of the certificate as the file name\n* `files/` contains all files captured and are deduplicated by saving them using the SHA-256 hash of the content as the filename\n* `filesystems/` contains a recreation of the filesystem of the targets classified by session IDs.\n   To save space on similar sessions, files are symbolic links to the actual files under `files/`.\n* `logs/` contains all the various logs with most in both JSON and plaintext formats:\n  * `crawl`: the file crawler log\n  * `mitm`: the main MITM log\n  * `ntlmssp.log`: the captured NetNTLM hashes\n  * `player.log`: the player log\n  * `ssl.log`: the TLS master secrets stored in a format compatible with Wireshark\n* `replays/` contains all the previously recorded PyRDP sessions with timestamps and session IDs in the filename\n\n#### Specifying the private key and certificate\nIf key generation didn't work or you want to use a custom key and certificate, you can specify them using the\n`-c` and `-k` arguments:\n\n```\npyrdp-mitm 192.168.1.10 -k private_key.pem -c certificate.pem\n```\n\n##### Monster-in-the-Middle Network Level Authentication (NLA) connections\nNetwork Level Authentication (NLA) is a security feature available since Windows Vista that adds security to RDP connections.\nNLA relies on the new security support provider CredSSP and is sometimes referred by that name.\nA server that enforces NLA is harder to attack.\nThere are three different strategies that can be used:\n\n* Obtain the server's certificate and private key\n* Using a host redirection feature\n* Capture the client's NetNTLMv2 hash and crack it\n\n###### Monster-in-the-Middle NLA\nIf we have access to the server's certificate and private key, we can successfully MITM RDP even if NLA is enforced.\nWe [documented this attack in our 1.0 release blog post](https://www.gosecure.net/blog/2020/10/20/announcing-pyrdp-1-0/).\nInstructions to [extract the RDP certificate and private key](https://github.com/GoSecure/pyrdp/blob/main/docs/cert-extraction.md) are available on our GitHub.\n\nWith the certificate and private key accessible, you just need to set the authentication to `ssp` by adding this on the `pyrdp-mitm.py` command-line:\n```\n--auth ssp -c <certificate.pem> -k <private-key.pem>\n```\nThis will enable the possibility to intercept NLA-enforced connections.\n\n###### Alternative host redirection when NLA enforced by server\n![Diagram that explains NLA redirection](docs/nla-redirection.png)\n\nWhen PyRDP connects to the destination RDP server (1) if that server enforces NLA then PyRDP (2) will replace the connection to go to another host of your chosing (3) instead.\n\nFor example, this can be used to redirect to a server that is known not to enforce NLA or it could even redirect to a VM in the control of an attacker.\n\nTo enable this feature specify the alternative host's address and port like this:\n```\n--nla-redirection-host 192.168.1.12 --nla-redirection-port 3389\n```\n\nThis feature was introduced in PyRDP 1.1.0.\n\n###### Capturing NetNTLMv2 hashes\nNetNTLMv2 hashes are useful for an attacker as they can be cracked relatively easily allowing attackers to leverage legitimate RDP access or attempt credentials stuffing.\nStarting with version 1.1.0, PyRDP has the ability to capture the client's NetNTLMv2 hashes via an NLA (CredSSP) connection by carrying the negotiation and capturing the NTLMSSP authentication messages.\nIn version 1.2.0 that support was extended to work even if we don't have the server's certificate and private key meaning that the connection will not be successfully MITM'ed.\nThis is similar to what [Responder](https://github.com/lgandx/Responder) does with RDP.\nThe captured NetNTLMv2 hash can be found in the `ntlmssp.log` log file and it's\nformatted so cracking tools like [John The Ripper](https://www.openwall.com/john/) or [hashcat](https://hashcat.net/hashcat/) can ingest it.\n\nThis technique has been described in details in a blog post: [Capturing RDP NetNTLMv2 Hashes: Attack details and a Technical How-To Guide](https://www.gosecure.net/blog/2022/01/17/capturing-rdp-netntlmv2-hashes-attack-details-and-a-technical-how-to-guide/)\n\nThis feature is compatible with `--auth ssp` but incompatible with `--nla-redirection-host`.\n\n#### Connecting to the PyRDP player\nIf you want to see live RDP connections through the PyRDP player, you will need to specify the IP address and port on which the\nplayer is listening using the `-i` and `-d` arguments. Note: the port argument is optional, the default port is 3000.\n\n```\npyrdp-mitm 192.168.1.10 -i 127.0.0.1 -d 3000\n```\n\n##### Connecting to a PyRDP player when the MITM is running on a server\nIf you are running the MITM on a server and still want to see live RDP connections, you should use\n[SSH remote port forwarding](https://www.booleanworld.com/guide-ssh-port-forwarding-tunnelling/)\nto forward a port on your server to the player's port on your machine. Once this is done, you pass `127.0.0.1` and the forwarded\nport as arguments to the MITM. For example, if port 4000 on the server is forwarded to the player's port on your machine,\nthis would be the command to use:\n\n```\npyrdp-mitm 192.168.1.10 -i 127.0.0.1 -d 4000\n```\n\n#### Running payloads on new connections\nPyRDP has support for running console commands or PowerShell payloads automatically when new connections are made.\nDue to the nature of RDP, the process is a bit hackish and is not always 100% reliable. Here is how it works:\n\n1. Wait for the user to be authenticated.\n2. Block the client's input / output to hide the payload and prevent interference.\n3. Send a fake Windows+R sequence and run `cmd.exe`.\n4. Run the payload as a console command and exit the console. If a PowerShell payload is configured, it is run with `powershell -enc <PAYLOAD>`.\n5. Wait a bit to allow the payload to complete.\n6. Restore the client's input / output.\n\nFor this to work, you need to set 3 arguments:\n\n- the payload\n- the delay before the payload starts\n- the payload's duration\n\n##### Setting the payload\nYou can use one of the following arguments to set the payload to run:\n\n- `--payload`, a string containing console commands\n- `--payload-powershell`, a string containing PowerShell commands\n- `--payload-powershell-file`, a path to a PowerShell script\n\n##### Choosing when to start the payload\nFor the moment, PyRDP does not detect when the user is logged on.\nYou must give it an amount of time to wait for before running the payload.\nAfter this amount of time has passed, it will send the fake key sequences and expect the payload to run properly.\nTo do this, you use the `--payload-delay` argument. The delay is in milliseconds.\nFor example, if you expect the user to be logged in within the first 5 seconds, you would use the following arguments:\n\n```\n--payload-delay 5000\n```\n\nThis could be made more accurate by leveraging some messages exchanged during RDPDR initialization.\nSee [this issue](https://github.com/GoSecure/pyrdp/issues/98) if you're interested in making this work better.\n\n##### Choosing when to resume normal activity\nBecause there is no direct way to know when the console has stopped running, you must tell PyRDP how long you want\nthe client's input / output to be blocked. We recommend you set this to the maximum amount of time you would expect the\nconsole that is running your payload to be visible. In other words, the amount of time you would expect your payload to\ncomplete.\nTo set the payload duration, you use the `--payload-duration` argument with an amount of time in milliseconds.\nFor example, if you expect your payload to take up to 5 seconds to complete, you would use the following argument:\n\n```\n--payload-duration 5000\n```\n\nThis will block the client's input / output for 5 seconds to hide the console and prevent interference.\nAfter 5 seconds, input / output is restored back to normal.\n\n#### Other MITM arguments\nRun `pyrdp-mitm --help` for a full list of arguments.\n\n##### `--no-downgrade`\n\nThis argument is useful when running PyRDP in Honeypot scenarios to avoid scanner fingerprinting.\nWhen the switch is enabled, PyRDP will not downgrade unsupported extensions and let the traffic through\ntransparently. The player will likely not be able to successfully replay video traffic, but the following\nsupported channels should still be accessible:\n\n- Keystroke recording\n- Mouse position updates\n- Clipboard access (passively)\n- Drive access (passively)\n\nThis feature is still a work in progress and some downgrading is currently unavoidable to allow the connection\nto be established. The following are currently not affected by this switch and will still be disabled:\n\n- FIPS Encryption\n- Non-TLS encryption protocols\n- ClientInfo compression\n- Virtual Channel compression\n\n**NOTE**: If being able to eventually replay the full session is important, a good solution is to record the raw\nRDP traffic using Wireshark and keep the TLS master secrets. Whenever PyRDP adds support for additional extensions,\nit would then become possible to extract a valid RDP replay file from the raw network capture.\n\n##### `--transparent`\n\nTells PyRDP to attempt to spoof the source IP address of the client so that the server sees the real IP\naddress instead of the MITM one. This option is only useful in certain scenarios where the MITM is physically\na gateway between clients and the server and sees all traffic.\n[Specific examples can be found here.](docs/transparent-proxy.md)\n\n**NOTE**: This requires root privileges, only works on Linux and requires manual firewall configuration to ensure\nthat traffic is routed properly.\n\n##### `--no-gdi`: Disable Accelerated Graphics Pipeline\n\nPyRDP downgrades video to the the most recent graphics pipeline that it supports. This switch explicitly tells the\nMITM to not use the [Graphics Device Interface Acceleration][gdi] extensions to stream video. The advantage of this mode\nis a significant reduction in required bandwidth for high resolution connections.\n\nNote that some GDI drawing orders are currently unimplemented because they appear to be unused. If you have a replay\nwhich contains any unsupported or untested order, do not hesitate to share it with the project maintainers so that\nsupport can be added as required. (Make sure that the trace does not contain sensitive information)\n\n[gdi]: https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-rdpegdi/745f2eee-d110-464c-8aca-06fc1814f6ad\n\n### Using the PyRDP Player\nUse `pyrdp-player` to run the player.\n\n#### Playing a replay file\nYou can use the menu to open a new replay file: File > Open.\n\nYou can also open replay files when launching the player:\n\n```\npyrdp-player <FILE1> <FILE2> ...\n```\n\n#### Listening for live connections\nThe player always listens for live connections. By default, the listening port is 3000, but it can be changed:\n\n```\npyrdp-player -p <PORT>\n```\n\n#### Changing the listening address\nBy default, the player only listens to connections coming from the local machine. We do not recommend opening up the player\nto other machines. If you still want to change the listening address, you can do it with `-b`:\n\n```\npyrdp-player -b <ADDRESS>\n```\n\n#### Other player arguments\nRun `pyrdp-player --help` for a full list of arguments.\n\n### Using the PyRDP Certificate Cloner\n\nNOTE: Using this tool is optional.\nSince version 1.0 PyRDP generate certificates on-the-fly exactly like this tool would do.\n\nThe PyRDP certificate cloner creates a brand new X509 certificate by using the values from an existing RDP server's\ncertificate. It connects to an RDP server, downloads its certificate, generates a new private key and replaces the\npublic key and signature of the certificate using the new private key. This can be used in a pentest if, for example,\nyou're trying to trick a legitimate user into going through your MITM. Using a certificate that looks like a legitimate\ncertificate could increase your success rate.\n\n#### Cloning a certificate\nYou can clone a certificate by using `pyrdp-clonecert`:\n\n```\npyrdp-clonecert 192.168.1.10 cert.pem -o key.pem\n```\n\nThe `-o` parameter defines the path name to use for the generated private key.\n\n#### Using a custom private key\nIf you want to use your own private key instead of generating a new one:\n\n```\npyrdp-clonecert 192.168.1.10 cert.pem -i input_key.pem\n```\n\n#### Other cloner arguments\nRun `pyrdp-clonecert --help` for a full list of arguments.\n\n### Using PyRDP Convert\n\n`pyrdp-convert` is a helper script that performs several useful conversions from various input formats to various output formats.\nThe script has the best chance of working on traffic captured by PyRDP due to unsupported RDP protocol features that might be used in a non-intercepted connection.\n\nThe following inputs are supported:\n\n- Network Capture (PCAP) with TLS master secrets (less reliable)\n- Network Capture (PCAP) in Exported PDUs Layer 7 format (more reliable)\n- Replay file generated by PyRDP\n\nThe following outputs are supported:\n\n- MP4 video file\n- JSON: a sequence of low-level events serialized in JSON format\n- Replay file compatible with `pyrdp-player`\n\nEncrypted (TLS) network captures require the TLS master secrets to be provided using `--secrets ssl.log`.\n\n```\n# Export the session coming client 10.2.0.198 to a .pyrdp file.\npyrdp-convert --src 10.2.0.198 --secrets ssl.log -o path/to/output capture.pcap\n\n# Or as an MP4 video\npyrdp-convert --src 10.2.0.198 --secrets ssl.log -o path/to/output -f mp4 capture.pcap\n\n# List the sessions in a network trace, along with the decryptable ones.\npyrdp-convert --list-only capture.pcap\n```\n\nNote that MP4 conversion requires libavcodec and ffmpeg, so this may require extra steps on Windows.\n\nManually decrypted network traces can be exported from Wireshark by selecting `File > Export PDUs` and selecting `OSI Layer 7`.\n\nFirst, make sure you configured wireshark to load TLS secrets:\n\n![Configure TLS secrets log](docs/screens/wireshark-tls.png)\n\nNext, export OSI Layer 7 PDUs:\n\n![Export OSI Layer 7](docs/screens/wireshark-export.png)\n\nAnd optionally, filter down the trace to contain only the conversation(s) of interest by applying a\ndisplay filter and clicking `File > Export Specified Packets...`\n\n![Optionally filtering the exported trace](docs/screens/wireshark-export-specified.png)\n\nNow this trace can be used directly in `pyrdp-convert`.\n\n\n### Configuring PyRDP\n\nMost of the PyRDP configuration is done through command line switches, but it is also possible to use a\nconfiguration file for certain settings such as log configuration.\n\nThe default configuration files used by PyRDP are located in [mitm.default.ini](pyrdp/mitm/mitm.default.ini)\nand [player.default.ini](pyrdp/player/player.default.ini). Both files are thoroughly documented and can serve\nas a basis for further configuration.\n\nIn the future there are plans to support other aspects of PyRDP configuration through those configuration files.\n\n### Advanced Usage\n\n#### Using PyRDP as a Library\nIf you're interested in experimenting with RDP and making your own tools, head over to our\n[documentation section](docs/README.md) for more information.\n\n#### Using PyRDP with twistd\nThe PyRDP MITM component was also implemented as a twistd plugin.\nThis enables you to run it in debug mode and allows you to get an interactive debugging repl (pdb) if you send a `SIGUSR2` to the twistd process.\nSee the [twistd documentation](docs/twistd.md) for more information.\n\n#### Using PyRDP with Bettercap\nWe developped our own Bettercap module, `rdp.proxy`, to monster-in-the-middle all RDP connections\non a given LAN. Check out [this document](docs/bettercap-rdp-mitm.md) for more information.\n\n### Docker Specific Usage Instructions\n\nSince docker restricts the interactions with the host system (filesystem and network), the PyRDP docker image must be run with some parameters depending on your use case. This section documents those parameters.\n\nWe refer to the publicly provided docker image but if you [built your own](#building-the-docker-image) replace `gosecure/pyrdp` with the name of your locally built image.\n\n#### Mapping a Listening Port\n\nIn most of the monster-in-the-middle cases you will need to map a port of your host into the docker image. This is achieved by the `--publish` (`-p`) parameters applied to `docker run`.\n\nFor example, to listen on 3389 (RDP's default port) on all interfaces, use:\n\n```\ndocker run -p 3389:3389 gosecure/pyrdp pyrdp-mitm 192.168.1.10\n```\n\n#### Logs and Artifacts Storage\n\nTo store the PyRDP output permanently (logs, files, etc.), add the `--volume` (`-v`) option to the previous command. In this example we store the files relatively to the current directory in `pyrdp_output`:\n\n```\ndocker run -v $PWD/pyrdp_output:/home/pyrdp/pyrdp_output -p 3389:3389 gosecure/pyrdp pyrdp-mitm 192.168.1.10\n```\n\nMake sure that your destination directory is owned by a user with a UID of 1000, otherwise you will get permission denied errors.\nIf you are the only non-root user on the system, usually your user will be assigned UID 1000.\n\n#### Logging the host IP address\n\nIf you want PyRDP to log the host IP address in its logs, you can set the `HOST_IP` environment variable when using `docker run`:\n\n```\ndocker run -p 3389:3389 -e HOST_IP=192.168.1.9 gosecure/pyrdp pyrdp-mitm 192.168.1.10\n```\n\n#### Using the GUI Player in Docker\n\nUsing the player will require you to export the `DISPLAY` environment variable from the host to the docker.\nThis redirects the GUI of the player to the host screen.\nYou also need to expose the host's network and prevent Qt from using the MIT-SHM X11 Shared Memory Extension.\nTo do so, add the `-e` and `--net` options to the run command:\n\n```\ndocker run -e DISPLAY=$DISPLAY -e QT_X11_NO_MITSHM=1 --net=host gosecure/pyrdp pyrdp-player\n```\n\nKeep in mind that exposing the host's network to docker can compromise the isolation between your container and the host.\nIf you plan on using the player, X11 forwarding using an SSH connection would be a more secure way.\n\n#### Converting videos in Docker\n\nThe video conversion process relies on PyAV, ffmpeg and QT so you need the regular docker image not the slim one.\n\nYou need a volume mount (`-v`) to share files with the container.\nHere we map our local directory with `/shared/` in the container.\n\n```\ndocker run -e QT_QPA_PLATFORM=offscreen -v $PWD/:/shared gosecure/pyrdp pyrdp-convert -f mp4 <filename-relative-to-volume-in-/shared/> -o /shared/\n```\n\nThe `QT_QPA_PLATFORM=offscreen` environment variable is required [due to a bug documented here](https://github.com/GoSecure/pyrdp/issues/428).\nIt tells to QT that it is correct that no display environment is available.\n\n\n## PyRDP Lore\n\n* [Introduction blog post](https://www.gosecure.net/blog/2018/12/19/rdp-man-in-the-middle-smile-youre-on-camera) in which we [demonstrated that we can catch a real threat actor in action](https://www.youtube.com/watch?v=eB7RC9FmL6Q)\n* [Talk at NorthSec 2019](https://docs.google.com/presentation/d/1avcn8Sh2b3IE7AA0G9l7Cj5F1pxqizUm98IbXUo2cvY/edit#slide=id.g404b70030f_0_581) where two demos were performed:\n  * [First demo](https://youtu.be/5JztJzi-m48): credential logging, clipboard stealing, client-side file browsing and a session take-over\n  * [Second demo](https://youtu.be/bU67tj1RkMA): the execution of cmd or powershell payloads when a client successfully authenticates\n* [PyRDP Logo](/docs/pyrdp-logo.png) licensed under CC-BY-SA 4.0.\n* [BlackHat USA Arsenal 2019 Slides](https://docs.google.com/presentation/d/17P_l2n-hgCehQ5eTWilru4IXXHnGIRTj4ftoW4BiX5A/edit?usp=sharing)\n* [DerbyCon 2019 Slides](https://docs.google.com/presentation/d/1UAiN2EZwDcmBjLe_t5HXB0LzbNclU3nnigC-XM4neIU/edit?usp=sharing) ([Video](https://www.youtube.com/watch?v=zgt3N6Nrnss))\n* [Blog: PyRDP on Autopilot](https://www.gosecure.net/blog/2020/02/26/pyrdp-on-autopilot-unattended-credential-harvesting-and-client-side-file-stealing/)\n* [Blog: PyRDP 1.0](https://www.gosecure.net/blog/2020/10/20/announcing-pyrdp-1-0/)\n* [DefCon 2020 Demo Labs](https://www.youtube.com/watch?v=1q2Eo3x3u0g)\n* [Blog: Capturing RDP NetNTLMv2 Hashes: Attack details and a Technical How-To Guide](https://www.gosecure.net/blog/2022/01/17/capturing-rdp-netntlmv2-hashes-attack-details-and-a-technical-how-to-guide/)\n* [BlackHat USA Arsenal 2021 Slides](https://gosecure.github.io/presentations/2021-08-05_blackhat-usa/BlackHat-USA-21-Arsenal-PyRDP-OlivierBilodeau.pdf)\n* [Presentation: I Watched You Roll the Die: Unparalleled RDP Monitoring Reveal Attackers' Tradecraft](http://i.blackhat.com/BH-US-23/Presentations/US-23-Bilodeau-I-Watched-You-Roll-the-Die-Unparalleled-RDP-Monitoring.pdf) at BlackHat USA 2023\n\n\n\n## Contributing to PyRDP\nSee our [contribution guidelines](CONTRIBUTING.md).\n\n## Acknowledgements\nPyRDP uses code from the following open-source software:\n\n- [RC4-Python](https://github.com/bozhu/RC4-Python) for the RC4 implementation.\n- [rdesktop](https://github.com/rdesktop/rdesktop) for bitmap decompression.\n- [rdpy](https://github.com/citronneur/rdpy) for RC4 keys, the bitmap decompression bindings and the base GUI code for\nthe PyRDP player.\n- [FreeRDP](https://github.com/FreeRDP/FreeRDP) for the scan code enumeration.\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Remote Desktop Protocol (RDP) Monster-in-the-Middle tool and Python library",
    "version": "2.1.0",
    "project_urls": {
        "Homepage": "https://github.com/GoSecure/pyrdp"
    },
    "split_keywords": [
        "rdp",
        "mitm",
        "interception",
        "attack",
        "pentest",
        "honeypots"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "379787af9016bf9e933606b61731ccaf6de8347ebfcdb60cb00df1252fb21caa",
                "md5": "b43f5788feaceb0cb4865ca305c0658f",
                "sha256": "55652291077fbb6c957ea42379d965892e29695a85ce00844c7b1c83971ac1e6"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b43f5788feaceb0cb4865ca305c0658f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 324558,
            "upload_time": "2024-01-23T21:15:44",
            "upload_time_iso_8601": "2024-01-23T21:15:44.770180Z",
            "url": "https://files.pythonhosted.org/packages/37/97/87af9016bf9e933606b61731ccaf6de8347ebfcdb60cb00df1252fb21caa/pyrdp_mitm-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5476fd85b1776d80115c5709757d88576e1e758de27577a909ea67dc5a0f7580",
                "md5": "21aa18b25cf6cafd8d1e7644cd2236fd",
                "sha256": "8cb1ea0098cf975a1ad6d61b2a387f8acf09ef8576ea836f838aa6ac9c0fb0fb"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "21aa18b25cf6cafd8d1e7644cd2236fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 352670,
            "upload_time": "2024-01-23T21:15:46",
            "upload_time_iso_8601": "2024-01-23T21:15:46.430298Z",
            "url": "https://files.pythonhosted.org/packages/54/76/fd85b1776d80115c5709757d88576e1e758de27577a909ea67dc5a0f7580/pyrdp_mitm-2.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c7cb186cc8d5451d5d5d656a372bc68ed84261d5940c2754de26350c46eea4b",
                "md5": "4d995e4d3fd8a686c439bdaf2fab4c39",
                "sha256": "a1dcb84528551c983c11159b99c9d9ba1d3aa75659d9a16a4ca8204a6ada397d"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4d995e4d3fd8a686c439bdaf2fab4c39",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 351779,
            "upload_time": "2024-01-23T21:15:48",
            "upload_time_iso_8601": "2024-01-23T21:15:48.354742Z",
            "url": "https://files.pythonhosted.org/packages/8c/7c/b186cc8d5451d5d5d656a372bc68ed84261d5940c2754de26350c46eea4b/pyrdp_mitm-2.1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b3972f6ac5f09cb01cd2eb606d56a0bbb629f943c78606278fd411b6db8bb719",
                "md5": "3b2c63775dee88a2d8ffb31146e4393f",
                "sha256": "be28f0c338095b629bfd563abd38c472c6b88618c3647a97c79f6c78cf620e15"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "3b2c63775dee88a2d8ffb31146e4393f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 357419,
            "upload_time": "2024-01-23T21:15:50",
            "upload_time_iso_8601": "2024-01-23T21:15:50.420654Z",
            "url": "https://files.pythonhosted.org/packages/b3/97/2f6ac5f09cb01cd2eb606d56a0bbb629f943c78606278fd411b6db8bb719/pyrdp_mitm-2.1.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a8763500d326bf0ed2f0cfbba3b87f113c71e9f76e68b8565192939d393f010",
                "md5": "c57a1a5893931023e67325256647bf97",
                "sha256": "29a507e37ad10b3ed522b8a524fa2d8f99978f42f16bffb9872d855c53345ca9"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c57a1a5893931023e67325256647bf97",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 355789,
            "upload_time": "2024-01-23T21:15:52",
            "upload_time_iso_8601": "2024-01-23T21:15:52.033612Z",
            "url": "https://files.pythonhosted.org/packages/4a/87/63500d326bf0ed2f0cfbba3b87f113c71e9f76e68b8565192939d393f010/pyrdp_mitm-2.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a92403fb3d17c49c7a24c4bcd0f6f736f5d8c6bf475ad8ae317a7626801f9233",
                "md5": "90397a3c4592e7814f73ab93fd767115",
                "sha256": "f844a6b49da27594cf1733faeebac268c7c790c48f8c5bb89dfc1bc7c20d1e76"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "90397a3c4592e7814f73ab93fd767115",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 326841,
            "upload_time": "2024-01-23T21:15:53",
            "upload_time_iso_8601": "2024-01-23T21:15:53.962488Z",
            "url": "https://files.pythonhosted.org/packages/a9/24/03fb3d17c49c7a24c4bcd0f6f736f5d8c6bf475ad8ae317a7626801f9233/pyrdp_mitm-2.1.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5fdc196f73fd01c8a8679009fc8f049454004b93f50fd3bed540bc83ad3a20b1",
                "md5": "90776b5a3c62bea3e03387a11c100f2a",
                "sha256": "0434b626258ae9832074c8693921e3252a1804e506e555b5053f0793fc9e6f09"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "90776b5a3c62bea3e03387a11c100f2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 326886,
            "upload_time": "2024-01-23T21:15:55",
            "upload_time_iso_8601": "2024-01-23T21:15:55.858400Z",
            "url": "https://files.pythonhosted.org/packages/5f/dc/196f73fd01c8a8679009fc8f049454004b93f50fd3bed540bc83ad3a20b1/pyrdp_mitm-2.1.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74a02372f5c44142ff91161637a81481dd103c56975673e36e10c6b4cc53a68c",
                "md5": "7f37b0be73fe6b281a6cfc85bb303de1",
                "sha256": "310d3ef0d6aedac04e40ec62115f8d44d06a57a058030cc1a99e2d6665187eb7"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7f37b0be73fe6b281a6cfc85bb303de1",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 324558,
            "upload_time": "2024-01-23T21:15:57",
            "upload_time_iso_8601": "2024-01-23T21:15:57.148204Z",
            "url": "https://files.pythonhosted.org/packages/74/a0/2372f5c44142ff91161637a81481dd103c56975673e36e10c6b4cc53a68c/pyrdp_mitm-2.1.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01c45990e9632bf6708787314bf0cf1c5d45c2824e8684a47fc3e06f675c4b04",
                "md5": "bafc06a328e3fb12ceac1bd6065ba00c",
                "sha256": "c87bec6a236d81bed01df7c7e576308bf421d4cd3afa826a3f439a422a888fb9"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "bafc06a328e3fb12ceac1bd6065ba00c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 352677,
            "upload_time": "2024-01-23T21:15:58",
            "upload_time_iso_8601": "2024-01-23T21:15:58.421114Z",
            "url": "https://files.pythonhosted.org/packages/01/c4/5990e9632bf6708787314bf0cf1c5d45c2824e8684a47fc3e06f675c4b04/pyrdp_mitm-2.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4bf43b708092bed34ade6fc7bd8123349648d708162b74e6dbda656af4bdf494",
                "md5": "deaea5ec6ba264656ee91e8d05f65b2f",
                "sha256": "71146194df27fa843b2d1e8e5bbc924b19bf61f6d89d3ac76aaf8270c443fe78"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "deaea5ec6ba264656ee91e8d05f65b2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 351796,
            "upload_time": "2024-01-23T21:16:00",
            "upload_time_iso_8601": "2024-01-23T21:16:00.142632Z",
            "url": "https://files.pythonhosted.org/packages/4b/f4/3b708092bed34ade6fc7bd8123349648d708162b74e6dbda656af4bdf494/pyrdp_mitm-2.1.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8c5b0195c16fd79df8e9d3ba7eb964ff82986163e9c885d52701fd0befbc0a85",
                "md5": "c800391976dccd8fa539d4a9580e5283",
                "sha256": "ae2342b247b29e9e790ef5ca3bff74f49167b54a0c846321fb5e7e24bf892d74"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "c800391976dccd8fa539d4a9580e5283",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 358257,
            "upload_time": "2024-01-23T21:16:01",
            "upload_time_iso_8601": "2024-01-23T21:16:01.949409Z",
            "url": "https://files.pythonhosted.org/packages/8c/5b/0195c16fd79df8e9d3ba7eb964ff82986163e9c885d52701fd0befbc0a85/pyrdp_mitm-2.1.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcf1ac5fdc4a154a3830aa876ba006137c8db501e8599400f9961301eb9a40cf",
                "md5": "9ddbe2b84e8208331ac50a519671bf8a",
                "sha256": "148a719060fcc5ed37c33027cd39e320ca7fdd113500d5ea63128b8c506d86bc"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9ddbe2b84e8208331ac50a519671bf8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 356673,
            "upload_time": "2024-01-23T21:16:03",
            "upload_time_iso_8601": "2024-01-23T21:16:03.382694Z",
            "url": "https://files.pythonhosted.org/packages/bc/f1/ac5fdc4a154a3830aa876ba006137c8db501e8599400f9961301eb9a40cf/pyrdp_mitm-2.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e1da52e53b3bea24adb9e65281b9ba106aa2d7766d858c0d8e9c36e25cb5d3c",
                "md5": "650ffb92b4139740c385009814a7d533",
                "sha256": "772a8b19e2abd21dc6f10dc1ac4ff07e52e8f242716c1308e14a1e9fb81e7cd7"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "650ffb92b4139740c385009814a7d533",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 326846,
            "upload_time": "2024-01-23T21:16:05",
            "upload_time_iso_8601": "2024-01-23T21:16:05.301461Z",
            "url": "https://files.pythonhosted.org/packages/9e/1d/a52e53b3bea24adb9e65281b9ba106aa2d7766d858c0d8e9c36e25cb5d3c/pyrdp_mitm-2.1.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb7fa5a87ff21c0463090b0ec053765aa8b8f439dc280cb86176cea16de1be9c",
                "md5": "c638196d66cd6ac7463cf54811fba91d",
                "sha256": "d2b0e14706fc0c11bdc7d1b35463150bf11c12dbf63045d79c361f23abde33dc"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c638196d66cd6ac7463cf54811fba91d",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 326890,
            "upload_time": "2024-01-23T21:16:07",
            "upload_time_iso_8601": "2024-01-23T21:16:07.156347Z",
            "url": "https://files.pythonhosted.org/packages/fb/7f/a5a87ff21c0463090b0ec053765aa8b8f439dc280cb86176cea16de1be9c/pyrdp_mitm-2.1.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5416f61f4fa041dcca11b88644cb7a13f1ba181584a0ef555f5082fde596795",
                "md5": "b7f2acf9988477c712a4d5f7f06abf28",
                "sha256": "2aa583cf99e14b810027715517aa588c0261a8df80fcb8018c29d2ff5d8777f3"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b7f2acf9988477c712a4d5f7f06abf28",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 324492,
            "upload_time": "2024-01-23T21:16:09",
            "upload_time_iso_8601": "2024-01-23T21:16:09.006159Z",
            "url": "https://files.pythonhosted.org/packages/f5/41/6f61f4fa041dcca11b88644cb7a13f1ba181584a0ef555f5082fde596795/pyrdp_mitm-2.1.0-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b1dfc04e90f6601ee1c2301927941f2182a51fbcf725bb5753b93fcbb92905f5",
                "md5": "9e9f8b235f99b3f958add9e6dcd1a00c",
                "sha256": "3930e87199b44252705c1114f728e3ca38e6439a7279ef8d7fd33fa9869b9b43"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9e9f8b235f99b3f958add9e6dcd1a00c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 352501,
            "upload_time": "2024-01-23T21:16:10",
            "upload_time_iso_8601": "2024-01-23T21:16:10.279585Z",
            "url": "https://files.pythonhosted.org/packages/b1/df/c04e90f6601ee1c2301927941f2182a51fbcf725bb5753b93fcbb92905f5/pyrdp_mitm-2.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a520de065f059e346fe93ece572e4b0d85087b9e3fe1a3f7bfd2dd558886a84d",
                "md5": "9141b99e8b83f28c2ef7d5c14a567fbb",
                "sha256": "bfe6da625226d373022fe4c5f88ccfdbae6c102207b5a44d6aff3c5aed20a56d"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9141b99e8b83f28c2ef7d5c14a567fbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 351607,
            "upload_time": "2024-01-23T21:16:12",
            "upload_time_iso_8601": "2024-01-23T21:16:12.213382Z",
            "url": "https://files.pythonhosted.org/packages/a5/20/de065f059e346fe93ece572e4b0d85087b9e3fe1a3f7bfd2dd558886a84d/pyrdp_mitm-2.1.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "37a67b75d06ee9611c53541432d583d3b9022d0a148ddee5aee392c1f4510445",
                "md5": "fbe8aae0a2f31c15c29af0aace7dabcb",
                "sha256": "57dbbf5283ae35badf6a08c683f767a44c9efdde9623c0fa6429d8672c97a18e"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "fbe8aae0a2f31c15c29af0aace7dabcb",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 357651,
            "upload_time": "2024-01-23T21:16:13",
            "upload_time_iso_8601": "2024-01-23T21:16:13.612024Z",
            "url": "https://files.pythonhosted.org/packages/37/a6/7b75d06ee9611c53541432d583d3b9022d0a148ddee5aee392c1f4510445/pyrdp_mitm-2.1.0-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f96648db5e713393b0d725f1c44da12480e20715d01f09b694c4bfadd12fa5c8",
                "md5": "7bbcf34437d28106e6b147a956e6265c",
                "sha256": "9183fb7b9d4dc2bae17ce77d1069811f767fe88d17944c9cb81120af0c239faf"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7bbcf34437d28106e6b147a956e6265c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 356036,
            "upload_time": "2024-01-23T21:16:15",
            "upload_time_iso_8601": "2024-01-23T21:16:15.780477Z",
            "url": "https://files.pythonhosted.org/packages/f9/66/48db5e713393b0d725f1c44da12480e20715d01f09b694c4bfadd12fa5c8/pyrdp_mitm-2.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "10668934f554c6cce9de21c4ed3e460491f29557292cda89e9ddeaca6d2ab0be",
                "md5": "5b14a1a4fe5196cf3523bbe9619d9a1f",
                "sha256": "2cd529d03729e9f59323391f57762c0952c6bd800ef46fd58855775bad7e7acc"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "5b14a1a4fe5196cf3523bbe9619d9a1f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 326844,
            "upload_time": "2024-01-23T21:16:17",
            "upload_time_iso_8601": "2024-01-23T21:16:17.199543Z",
            "url": "https://files.pythonhosted.org/packages/10/66/8934f554c6cce9de21c4ed3e460491f29557292cda89e9ddeaca6d2ab0be/pyrdp_mitm-2.1.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b4612db579e6364bc8d39ba76d117de2b11677c2b30e9dd973932e7a6d850355",
                "md5": "f7b33476f8b7a6d6fdb65e109d381d2b",
                "sha256": "ff21d3231fe5e5c81f8640a0448236555e0730c58e4aec21c8004c6aa71e4eb4"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f7b33476f8b7a6d6fdb65e109d381d2b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 326884,
            "upload_time": "2024-01-23T21:16:18",
            "upload_time_iso_8601": "2024-01-23T21:16:18.537733Z",
            "url": "https://files.pythonhosted.org/packages/b4/61/2db579e6364bc8d39ba76d117de2b11677c2b30e9dd973932e7a6d850355/pyrdp_mitm-2.1.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac5cc907c8f41c466cd3868f72cb693450087d9fad0534a4e97a8b66fc6d521f",
                "md5": "b21b0c4000fd7b2462f1b5e5a8bb8971",
                "sha256": "3da905463c66fecfe69d608e98c6cd1defda607d176a73f2b38192a79db3fc65"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b21b0c4000fd7b2462f1b5e5a8bb8971",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 324490,
            "upload_time": "2024-01-23T21:16:19",
            "upload_time_iso_8601": "2024-01-23T21:16:19.805283Z",
            "url": "https://files.pythonhosted.org/packages/ac/5c/c907c8f41c466cd3868f72cb693450087d9fad0534a4e97a8b66fc6d521f/pyrdp_mitm-2.1.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1253195390e46139deb67001cdd8ea5b1e6783368fa1265b498e51db56ba300e",
                "md5": "2c9b10c01d5eb6b52cac3c689ab26f48",
                "sha256": "c13e7029b5bcb568a5d6fd9a1042e6a2599ac8c5795db5348124a39663368094"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2c9b10c01d5eb6b52cac3c689ab26f48",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 352969,
            "upload_time": "2024-01-23T21:16:21",
            "upload_time_iso_8601": "2024-01-23T21:16:21.308849Z",
            "url": "https://files.pythonhosted.org/packages/12/53/195390e46139deb67001cdd8ea5b1e6783368fa1265b498e51db56ba300e/pyrdp_mitm-2.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c29ab2568dd24c6b1b2f887fd48dcbe5aa20947d3848a1d5f59e497d5929fa87",
                "md5": "3520f0ac07d0937f2c18976701c3013d",
                "sha256": "857d1a53ab8df17acd27c5a26a77cdf070b2cd6e78bcbf011eef3c81dd5cd9ae"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3520f0ac07d0937f2c18976701c3013d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 352072,
            "upload_time": "2024-01-23T21:16:22",
            "upload_time_iso_8601": "2024-01-23T21:16:22.639969Z",
            "url": "https://files.pythonhosted.org/packages/c2/9a/b2568dd24c6b1b2f887fd48dcbe5aa20947d3848a1d5f59e497d5929fa87/pyrdp_mitm-2.1.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9722194d66a85bb97a4ff226e87f1d2d444f457de172d7e277e322c46462d0b1",
                "md5": "110e71f3301f742c5c9ef3167c5494d9",
                "sha256": "c6ffad5c09f5fb6fe7241d3fe9c9cd968ceea15e483a180ac45bd0b4e15d7bcd"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "110e71f3301f742c5c9ef3167c5494d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 358340,
            "upload_time": "2024-01-23T21:16:24",
            "upload_time_iso_8601": "2024-01-23T21:16:24.063712Z",
            "url": "https://files.pythonhosted.org/packages/97/22/194d66a85bb97a4ff226e87f1d2d444f457de172d7e277e322c46462d0b1/pyrdp_mitm-2.1.0-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad876ca1ffc476298402d4c04ddb84a024b17ffde3171b4c37a15c6fe846b6d1",
                "md5": "0a452c9e4e9ecca6f45f7147e1bac52b",
                "sha256": "874dbda99983730fafd8054b29996e692cfe12c4230cb97d3b53e5db4df4238c"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0a452c9e4e9ecca6f45f7147e1bac52b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 356773,
            "upload_time": "2024-01-23T21:16:25",
            "upload_time_iso_8601": "2024-01-23T21:16:25.738944Z",
            "url": "https://files.pythonhosted.org/packages/ad/87/6ca1ffc476298402d4c04ddb84a024b17ffde3171b4c37a15c6fe846b6d1/pyrdp_mitm-2.1.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79e0c1ecd3cd79a1e23a78f805a2434e46f7829f0e5908560038fc3504a9b196",
                "md5": "d9869c4f91e72667044a1b2eadf0ef09",
                "sha256": "cf1d4595c7a03ce084a85f1545ba3593dd396eb88049c6d5c87efaa594e41c7f"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "d9869c4f91e72667044a1b2eadf0ef09",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 326845,
            "upload_time": "2024-01-23T21:16:27",
            "upload_time_iso_8601": "2024-01-23T21:16:27.163651Z",
            "url": "https://files.pythonhosted.org/packages/79/e0/c1ecd3cd79a1e23a78f805a2434e46f7829f0e5908560038fc3504a9b196/pyrdp_mitm-2.1.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72e0817b1730fb393f46e443d713a959d8d8378887472376deb1138cf2f00961",
                "md5": "24ab437fdf62cb4ced5c21938ff53941",
                "sha256": "39537a85f0b719915f068289d3e6da72899861afcdb3ca5d7a78de505629ac8d"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "24ab437fdf62cb4ced5c21938ff53941",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 326891,
            "upload_time": "2024-01-23T21:16:28",
            "upload_time_iso_8601": "2024-01-23T21:16:28.540828Z",
            "url": "https://files.pythonhosted.org/packages/72/e0/817b1730fb393f46e443d713a959d8d8378887472376deb1138cf2f00961/pyrdp_mitm-2.1.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4abacd99ef8bb5e0237ea6c79f34a696ebf3eb14d001d386d696dc1d3eeeb4c1",
                "md5": "30666e550bc2418ddfad716242706bd3",
                "sha256": "bba2c964972ac62ae9f9a2e0ee0046fa046dff0cd53183ca2169e1659c234e98"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "30666e550bc2418ddfad716242706bd3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 324553,
            "upload_time": "2024-01-23T21:16:29",
            "upload_time_iso_8601": "2024-01-23T21:16:29.983387Z",
            "url": "https://files.pythonhosted.org/packages/4a/ba/cd99ef8bb5e0237ea6c79f34a696ebf3eb14d001d386d696dc1d3eeeb4c1/pyrdp_mitm-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab9100da0cd7132d6361a4e555029d240aec092ab4c5fe547ad1782ed081bfa5",
                "md5": "c2219e26874a1aabd9776109d4325b8e",
                "sha256": "a014358676f18ddbcc1e281a2d21d3fa817bed4c08ad221db34638460d2a24f4"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c2219e26874a1aabd9776109d4325b8e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 353040,
            "upload_time": "2024-01-23T21:16:31",
            "upload_time_iso_8601": "2024-01-23T21:16:31.755077Z",
            "url": "https://files.pythonhosted.org/packages/ab/91/00da0cd7132d6361a4e555029d240aec092ab4c5fe547ad1782ed081bfa5/pyrdp_mitm-2.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34eba89bcef85d5086499e3ae69718016af6375c559e35ad714e2a3babc52a03",
                "md5": "d3f53122c788b2041dc422c94a01b3e1",
                "sha256": "6357479243a64e0edc18f138b2f1ccce22e4396db9ecf4740b71f6185ea055f1"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d3f53122c788b2041dc422c94a01b3e1",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 352133,
            "upload_time": "2024-01-23T21:16:33",
            "upload_time_iso_8601": "2024-01-23T21:16:33.087850Z",
            "url": "https://files.pythonhosted.org/packages/34/eb/a89bcef85d5086499e3ae69718016af6375c559e35ad714e2a3babc52a03/pyrdp_mitm-2.1.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cfd8f82478cd9473bbf36ff63217faec93fb68855b55134af569d91b25b27944",
                "md5": "b621b45f1c5d1cf141da8c52955c9b2c",
                "sha256": "d39ee3711191ba35873ecaf10a0fec4d1bc80bc31a6718e2954f6f4400075d82"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "b621b45f1c5d1cf141da8c52955c9b2c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 357395,
            "upload_time": "2024-01-23T21:16:34",
            "upload_time_iso_8601": "2024-01-23T21:16:34.618671Z",
            "url": "https://files.pythonhosted.org/packages/cf/d8/f82478cd9473bbf36ff63217faec93fb68855b55134af569d91b25b27944/pyrdp_mitm-2.1.0-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86e8c7db3625ba68673339e60a21f1146aa6c08fce632e6ee15912c71f662db0",
                "md5": "6d416ef87d5538c02ecf2105a23fe574",
                "sha256": "6b3d229a02f91fbac23a4385a1b8ca8fe851c9c99c94341dfc5fda41cecc1283"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6d416ef87d5538c02ecf2105a23fe574",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 355757,
            "upload_time": "2024-01-23T21:16:36",
            "upload_time_iso_8601": "2024-01-23T21:16:36.546578Z",
            "url": "https://files.pythonhosted.org/packages/86/e8/c7db3625ba68673339e60a21f1146aa6c08fce632e6ee15912c71f662db0/pyrdp_mitm-2.1.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4bf559cd1385e04acaace1994dddaeb6dd0d16afda4ee134c6a61e884fc7c10",
                "md5": "7a2a8a2337ae54fa38b1dd0865befcdd",
                "sha256": "72b675d40bc3c796892caef0581456f9a489e7195527f67ea5b819dac372e89a"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "7a2a8a2337ae54fa38b1dd0865befcdd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 326845,
            "upload_time": "2024-01-23T21:16:38",
            "upload_time_iso_8601": "2024-01-23T21:16:38.272181Z",
            "url": "https://files.pythonhosted.org/packages/f4/bf/559cd1385e04acaace1994dddaeb6dd0d16afda4ee134c6a61e884fc7c10/pyrdp_mitm-2.1.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "27dfad769bf09ed221e7ffe7ece4dd38b0681876238037b0cf8262bc7325f631",
                "md5": "92e2e1296df1fc4afdfa717380a5217f",
                "sha256": "46f917a6a3de5d2b29fd77a842015ac27e6e3ba2faa92395c27666b2721dcaa0"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "92e2e1296df1fc4afdfa717380a5217f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 326885,
            "upload_time": "2024-01-23T21:16:39",
            "upload_time_iso_8601": "2024-01-23T21:16:39.603568Z",
            "url": "https://files.pythonhosted.org/packages/27/df/ad769bf09ed221e7ffe7ece4dd38b0681876238037b0cf8262bc7325f631/pyrdp_mitm-2.1.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28feeee499bc88c6334d09e24962115c5bbb055b96027a8f2880f62beb9c840b",
                "md5": "41833f97f6d67b639ca468a5aa3036bb",
                "sha256": "875c428604faaa6f393b263aef783d9cd535b57135d668d949014052132e3c8b"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "41833f97f6d67b639ca468a5aa3036bb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 324552,
            "upload_time": "2024-01-23T21:16:41",
            "upload_time_iso_8601": "2024-01-23T21:16:41.136762Z",
            "url": "https://files.pythonhosted.org/packages/28/fe/eee499bc88c6334d09e24962115c5bbb055b96027a8f2880f62beb9c840b/pyrdp_mitm-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "862fe61c293efb3c1d181324ba8040ef1457dc591966442a2246bdaf5c6e19da",
                "md5": "0aa9ca5fcba8637abcfa87b673f7488c",
                "sha256": "c9448628b8a4a715f780bf821eab6e39962a774ecdcf808628ea6ef952372722"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0aa9ca5fcba8637abcfa87b673f7488c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 352450,
            "upload_time": "2024-01-23T21:16:43",
            "upload_time_iso_8601": "2024-01-23T21:16:43.093416Z",
            "url": "https://files.pythonhosted.org/packages/86/2f/e61c293efb3c1d181324ba8040ef1457dc591966442a2246bdaf5c6e19da/pyrdp_mitm-2.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aafb18dc8446f157ac2bcd0abf941ac6537a2f53f90fd602ab3d6e1498aad6aa",
                "md5": "55323aaae62e0eb6c8ca935f9fd66b0b",
                "sha256": "292a7cd013a3291a7d1b0004c6da3ce863dcca353f77935b385e97649eac39d4"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "55323aaae62e0eb6c8ca935f9fd66b0b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 351553,
            "upload_time": "2024-01-23T21:16:44",
            "upload_time_iso_8601": "2024-01-23T21:16:44.431270Z",
            "url": "https://files.pythonhosted.org/packages/aa/fb/18dc8446f157ac2bcd0abf941ac6537a2f53f90fd602ab3d6e1498aad6aa/pyrdp_mitm-2.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2092fd5c69757cd7d7fa9e386eefd08660ca57238e0955c286ec45eedb71cb19",
                "md5": "0dadb4c2bcc9f51abd759257f0079f39",
                "sha256": "7a2fb0b27e7c44f2a37ad254df79b3677b010d34bf6421281a2a37c1088d613f"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "0dadb4c2bcc9f51abd759257f0079f39",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 357174,
            "upload_time": "2024-01-23T21:16:46",
            "upload_time_iso_8601": "2024-01-23T21:16:46.266131Z",
            "url": "https://files.pythonhosted.org/packages/20/92/fd5c69757cd7d7fa9e386eefd08660ca57238e0955c286ec45eedb71cb19/pyrdp_mitm-2.1.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b1fd4a99c3e07c52805bc061c2631ad6cb08e5bd100b2e5d3bbef31c435cc73",
                "md5": "5f280a34ded9538e422669279568608a",
                "sha256": "ab7aa0e4c923f767e50914842239578d36723656befca7bec7d40926bf79c3c3"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5f280a34ded9538e422669279568608a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 355519,
            "upload_time": "2024-01-23T21:16:48",
            "upload_time_iso_8601": "2024-01-23T21:16:48.240430Z",
            "url": "https://files.pythonhosted.org/packages/8b/1f/d4a99c3e07c52805bc061c2631ad6cb08e5bd100b2e5d3bbef31c435cc73/pyrdp_mitm-2.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "07d7190112fef6df6b0378d6c9999790a81eb5e8b0658a58ebcccb0693bf1025",
                "md5": "7ba77ecf30364fd66d07c0cadaccd5a7",
                "sha256": "9ea9995496c329267d7bfba8f2061b6df43d5db255bc103b14730042e782e5cf"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "7ba77ecf30364fd66d07c0cadaccd5a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 326844,
            "upload_time": "2024-01-23T21:16:49",
            "upload_time_iso_8601": "2024-01-23T21:16:49.501449Z",
            "url": "https://files.pythonhosted.org/packages/07/d7/190112fef6df6b0378d6c9999790a81eb5e8b0658a58ebcccb0693bf1025/pyrdp_mitm-2.1.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2cb88679899bc2e00022feb647c8ad2e5fa40e3b4c30f897d8c34d4129bd5b29",
                "md5": "448e82458f7b0a6bc68ef5063e54452f",
                "sha256": "6b4a7999ab5fa112e69ea99a01bcf41a23c8a01780f96eb1647fa98b80694113"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "448e82458f7b0a6bc68ef5063e54452f",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 326885,
            "upload_time": "2024-01-23T21:16:51",
            "upload_time_iso_8601": "2024-01-23T21:16:51.179818Z",
            "url": "https://files.pythonhosted.org/packages/2c/b8/8679899bc2e00022feb647c8ad2e5fa40e3b4c30f897d8c34d4129bd5b29/pyrdp_mitm-2.1.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c25fc6c55ff8f974ca3251894e4aca15cca1eeb12907f09a01bdc0e3f39b5184",
                "md5": "c4319ef057eac9d9c02cb3948b5960a1",
                "sha256": "2e8d79c2cc6104f5c4a27104b0de6d09f5d204d56c81f389bdd9ca8e35cce298"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c4319ef057eac9d9c02cb3948b5960a1",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 325809,
            "upload_time": "2024-01-23T21:16:52",
            "upload_time_iso_8601": "2024-01-23T21:16:52.739953Z",
            "url": "https://files.pythonhosted.org/packages/c2/5f/c6c55ff8f974ca3251894e4aca15cca1eeb12907f09a01bdc0e3f39b5184/pyrdp_mitm-2.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bee20f98515afca5b29ab800bc105909f8722ddf276b191121a36758afc4b1c0",
                "md5": "c62d33634e07134ff92dbaf7010b42c5",
                "sha256": "5d61397acd2c3b39da7f48673ce25690db669c68d538487cdf79ecc8b56f039d"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c62d33634e07134ff92dbaf7010b42c5",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 329162,
            "upload_time": "2024-01-23T21:16:54",
            "upload_time_iso_8601": "2024-01-23T21:16:54.838672Z",
            "url": "https://files.pythonhosted.org/packages/be/e2/0f98515afca5b29ab800bc105909f8722ddf276b191121a36758afc4b1c0/pyrdp_mitm-2.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e422b051ccbb9e37d493ba0c0ce2994617f33d9c7456dbf0f6429d971534e684",
                "md5": "559e4c8798fcd5f98e47aa1d159997ce",
                "sha256": "c97e3b0e4180217fe46b36d70163c750a40ed76d402ca6c1784e3d8e6c3b22b0"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "559e4c8798fcd5f98e47aa1d159997ce",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 327964,
            "upload_time": "2024-01-23T21:16:56",
            "upload_time_iso_8601": "2024-01-23T21:16:56.303560Z",
            "url": "https://files.pythonhosted.org/packages/e4/22/b051ccbb9e37d493ba0c0ce2994617f33d9c7456dbf0f6429d971534e684/pyrdp_mitm-2.1.0-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "01df9ebbff1d847513941f105984da223dbe750c03c22af8985c014bf0227227",
                "md5": "700786fc17cf44951261cf60601d4a10",
                "sha256": "989080753be26eaa2b93d3a01bd4296874162f06d126f78be96749fb95c66aef"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "700786fc17cf44951261cf60601d4a10",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 327075,
            "upload_time": "2024-01-23T21:16:57",
            "upload_time_iso_8601": "2024-01-23T21:16:57.737504Z",
            "url": "https://files.pythonhosted.org/packages/01/df/9ebbff1d847513941f105984da223dbe750c03c22af8985c014bf0227227/pyrdp_mitm-2.1.0-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4215dd277f997eb983889ce3a629d3278e4fb0e3051eba381a75afb811fe3861",
                "md5": "025dfddc8409588b9b8d9a966a47ac49",
                "sha256": "0ed8c3f90c77356f7d02574491f66586b96552efd0b6ef53d7de263893061bc5"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "025dfddc8409588b9b8d9a966a47ac49",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 325805,
            "upload_time": "2024-01-23T21:16:59",
            "upload_time_iso_8601": "2024-01-23T21:16:59.521383Z",
            "url": "https://files.pythonhosted.org/packages/42/15/dd277f997eb983889ce3a629d3278e4fb0e3051eba381a75afb811fe3861/pyrdp_mitm-2.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c0d8b4df3ccd3f9d15a3679ffbe2a379be0285d043f69cf115af15254e8af60b",
                "md5": "a02ac7fb377deda975543054c63ce782",
                "sha256": "ee29b50f82ac78854af1e014fe9986a9699f98683ca798092f6b51282c08d640"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a02ac7fb377deda975543054c63ce782",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 329161,
            "upload_time": "2024-01-23T21:17:01",
            "upload_time_iso_8601": "2024-01-23T21:17:01.200956Z",
            "url": "https://files.pythonhosted.org/packages/c0/d8/b4df3ccd3f9d15a3679ffbe2a379be0285d043f69cf115af15254e8af60b/pyrdp_mitm-2.1.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "578e538cd9e212c801a43db6fb63eba751fcdc1c9ea59acd30509f81c8600cd6",
                "md5": "9dba4f4534a202a89b59cdbca42cb69d",
                "sha256": "f888e9662215d81edb90112d66c462e3ba47b9007efe21492e9c8d76909836c5"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9dba4f4534a202a89b59cdbca42cb69d",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 327955,
            "upload_time": "2024-01-23T21:17:02",
            "upload_time_iso_8601": "2024-01-23T21:17:02.739559Z",
            "url": "https://files.pythonhosted.org/packages/57/8e/538cd9e212c801a43db6fb63eba751fcdc1c9ea59acd30509f81c8600cd6/pyrdp_mitm-2.1.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "33f8ea49e0ae0e9cafa19c9fe5a562de6b716206f707b4708817f88382fd351d",
                "md5": "672327c83d86e2fb73181198c4717c62",
                "sha256": "083c3acddf8e359225bdb42167294f87b16095eafe686dcfab41cd0e2d5e7ebf"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "672327c83d86e2fb73181198c4717c62",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 327082,
            "upload_time": "2024-01-23T21:17:04",
            "upload_time_iso_8601": "2024-01-23T21:17:04.186049Z",
            "url": "https://files.pythonhosted.org/packages/33/f8/ea49e0ae0e9cafa19c9fe5a562de6b716206f707b4708817f88382fd351d/pyrdp_mitm-2.1.0-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf2c820155228aa035fccd3c7bb4504f5eda3105e0752f32a822cdd8756efd89",
                "md5": "0368e7a998ec2ea0adbad9810ee1f271",
                "sha256": "8cd0ff4a46caae1508aaa14d69ac3393f05d2e58a1fd94d8c8b45a3ed6a6a474"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0368e7a998ec2ea0adbad9810ee1f271",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 325805,
            "upload_time": "2024-01-23T21:17:05",
            "upload_time_iso_8601": "2024-01-23T21:17:05.757261Z",
            "url": "https://files.pythonhosted.org/packages/cf/2c/820155228aa035fccd3c7bb4504f5eda3105e0752f32a822cdd8756efd89/pyrdp_mitm-2.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0c1889d2ce80b5cbb8f13f2aa0568cd04e4ef1990683339b562a6caf69a8a6c",
                "md5": "c86420fc2678df98f531791ba0073381",
                "sha256": "c33226c3905c340a634103a8868f968efc84ec2c8bf441df2713305979c3b0c6"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c86420fc2678df98f531791ba0073381",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 329160,
            "upload_time": "2024-01-23T21:17:07",
            "upload_time_iso_8601": "2024-01-23T21:17:07.868239Z",
            "url": "https://files.pythonhosted.org/packages/a0/c1/889d2ce80b5cbb8f13f2aa0568cd04e4ef1990683339b562a6caf69a8a6c/pyrdp_mitm-2.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a74fc4e1cef3fd7adac380dcfe4defc343021ddd1b386eed59bca7b7b85029c7",
                "md5": "ea546c452bf8b18d26cad9f36ef27620",
                "sha256": "54b2757e66ac5e8173d2af618fed10afc4c3b28d02c6324847c24d8bb17c8a45"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ea546c452bf8b18d26cad9f36ef27620",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 327957,
            "upload_time": "2024-01-23T21:17:09",
            "upload_time_iso_8601": "2024-01-23T21:17:09.487998Z",
            "url": "https://files.pythonhosted.org/packages/a7/4f/c4e1cef3fd7adac380dcfe4defc343021ddd1b386eed59bca7b7b85029c7/pyrdp_mitm-2.1.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e59284bc11966eefb743f98b7bb365868e906b002cf2e715a13f5d8846e34c9",
                "md5": "c0deecd511e2c3ddd4d991cbce261d6d",
                "sha256": "176711b9ba9b2e01fbd5ad4ad2770d82985caffc02f70d4aa7585fe44508fbd3"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c0deecd511e2c3ddd4d991cbce261d6d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 327087,
            "upload_time": "2024-01-23T21:17:11",
            "upload_time_iso_8601": "2024-01-23T21:17:11.040768Z",
            "url": "https://files.pythonhosted.org/packages/0e/59/284bc11966eefb743f98b7bb365868e906b002cf2e715a13f5d8846e34c9/pyrdp_mitm-2.1.0-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed9e9b47b6af7a118eb55b91e072e0ede572a3edf2d2489894022ec1eb1a9946",
                "md5": "ad2799685473bf58ebcf4af248fccca2",
                "sha256": "b32776836ec9757de71ab8306f38ba4b2d3e556c5bf7036221c2153619c4dafc"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad2799685473bf58ebcf4af248fccca2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 325804,
            "upload_time": "2024-01-23T21:17:12",
            "upload_time_iso_8601": "2024-01-23T21:17:12.394492Z",
            "url": "https://files.pythonhosted.org/packages/ed/9e/9b47b6af7a118eb55b91e072e0ede572a3edf2d2489894022ec1eb1a9946/pyrdp_mitm-2.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "012648e010167ec97d7a433b399d7a1daa9c174196cdba6bc4832d4f719a5215",
                "md5": "4aa682e97c8085c88edc05fc1de63537",
                "sha256": "1d3d87c94b03ba803b6af7fd142dd874aa26a2754aa6874b7c498d26ff6152e2"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "4aa682e97c8085c88edc05fc1de63537",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 329160,
            "upload_time": "2024-01-23T21:17:13",
            "upload_time_iso_8601": "2024-01-23T21:17:13.800954Z",
            "url": "https://files.pythonhosted.org/packages/01/26/48e010167ec97d7a433b399d7a1daa9c174196cdba6bc4832d4f719a5215/pyrdp_mitm-2.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8030165dd65067d00c221186438db9fa50d472ef622c9ad42cf3c4c8ac9ef13f",
                "md5": "1a08ccf7386ccad027169a0fa0e32f2f",
                "sha256": "07e797c5274603d550b84df6cd3300d7ce9dc9903237b7f11b66821655712956"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1a08ccf7386ccad027169a0fa0e32f2f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 327957,
            "upload_time": "2024-01-23T21:17:15",
            "upload_time_iso_8601": "2024-01-23T21:17:15.649675Z",
            "url": "https://files.pythonhosted.org/packages/80/30/165dd65067d00c221186438db9fa50d472ef622c9ad42cf3c4c8ac9ef13f/pyrdp_mitm-2.1.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f146f419553ed0d58a0f3feb68bc7541a62652a35f210f3092de1cd6a5a5a7c3",
                "md5": "2b3ed21dbeaf0873921e5d10ba7bce15",
                "sha256": "ceffb6a2cd944a1309ee3b88992ea04e456f17bc2234b861bf1ed43e51a3e973"
            },
            "downloads": -1,
            "filename": "pyrdp_mitm-2.1.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2b3ed21dbeaf0873921e5d10ba7bce15",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 327088,
            "upload_time": "2024-01-23T21:17:17",
            "upload_time_iso_8601": "2024-01-23T21:17:17.178034Z",
            "url": "https://files.pythonhosted.org/packages/f1/46/f419553ed0d58a0f3feb68bc7541a62652a35f210f3092de1cd6a5a5a7c3/pyrdp_mitm-2.1.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "162aeaf5cb0d3130ae3c23e06f43a1770bf6989f0b88238c7bf89d93498a1b6d",
                "md5": "8166129c63773d5d0a438971408bbbda",
                "sha256": "3ed6aa523846443c89fc204956bf871d327a14862e0a65dad6e6f4854937e099"
            },
            "downloads": -1,
            "filename": "pyrdp-mitm-2.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "8166129c63773d5d0a438971408bbbda",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 13093917,
            "upload_time": "2024-01-23T21:17:19",
            "upload_time_iso_8601": "2024-01-23T21:17:19.454284Z",
            "url": "https://files.pythonhosted.org/packages/16/2a/eaf5cb0d3130ae3c23e06f43a1770bf6989f0b88238c7bf89d93498a1b6d/pyrdp-mitm-2.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-23 21:17:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "GoSecure",
    "github_project": "pyrdp",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "requirements": [],
    "lcname": "pyrdp-mitm"
}
        
Elapsed time: 0.17336s