update README

This commit is contained in:
speyrefitte
2015-01-15 10:50:21 +01:00
parent 9dcac862ff
commit c5b8588e5f
2 changed files with 13 additions and 6 deletions

View File

@@ -19,6 +19,12 @@ RDPY is fully implemented in python, except the bitmap uncompression algorithm w
### Depends
Depends are only needed for pyqt4 binaries :
* rdpy-rdpclient
* rdpy-rdpscreenshot
* rdpy-vncclient
* rdpy-vncscreenshot
#### Linux
Exemple from Debian based system :
@@ -54,7 +60,7 @@ $ ln -s /usr/lib/python2.7/dist-packages/sip.so $VIRTUAL_ENV/lib/python2.7/site-
## RDPY Binaries
RDPY comes with some very useful binaries; These binaries are linux and windows compatible.
RDPY comes with some very useful binaries. These binaries are linux and windows compatible.
### rdpy-rdpclient
@@ -64,7 +70,7 @@ rdpy-rdpclient is a simple RDP Qt4 client .
$ rdpy-rdpclient.py [-u username] [-p password] [-d domain] [-r rss_ouput_file] [...] XXX.XXX.XXX.XXX[:3389]
```
You can use rdpy-rdpclient as Recorder Session Scenarion, use in rdpy-rdphoneypot.
You can use rdpy-rdpclient as Recorder Session Scenario, used in rdpy-rdphoneypot.
### rdpy-vncclient
@@ -96,7 +102,7 @@ rdpy-rdpmitm is a RDP proxy allows you to do a Man In The Middle attack on RDP p
Record Session Scenario into rss file which can be replay by rdpy-rssplayer.
```
$ rdpy-rdpmitm.py -o output_dir [-l listen_port] [-k private_key_file_path] [-c certificate_file_path] target_host[:target_port]
$ rdpy-rdpmitm.py -o output_dir [-l listen_port] [-k private_key_file_path] [-c certificate_file_path] [-r (for XP or server 2003 client)] target_host[:target_port]
```
Output directory is use to save rss file with following format (YYYYMMDDHHMMSS_ip_index.rss)

View File

@@ -4,7 +4,7 @@ import setuptools
from distutils.core import setup, Extension
setup(name='rdpy',
version='1.2.0',
version='1.2.1',
description='Remote Desktop Protocol in Python',
long_description="""
RDPY is a pure Python implementation of the Microsoft RDP (Remote Desktop Protocol) protocol (Client and Server side).
@@ -13,10 +13,10 @@ setup(name='rdpy',
RDPY provide RDP and VNC binaries :
\t-RDP Man In The Middle proxy which record session
\t-RDP Honeypot
\t-RDP screen shooter
\t-RDP screenshoter
\t-RDP client
\t-VNC client
\t-VNC screen shooter
\t-VNC screenshoter
\t-RSS Player
""",
author='Sylvain Peyrefitte',
@@ -48,5 +48,6 @@ setup(name='rdpy',
'service_identity',
'qt4reactor',
'rsa',
'pyasn1',
],
)