From c5b8588e5f01da933636a4ce9089b7f2e9a6b974 Mon Sep 17 00:00:00 2001 From: speyrefitte Date: Thu, 15 Jan 2015 10:50:21 +0100 Subject: [PATCH] update README --- README.md | 12 +++++++++--- setup.py | 7 ++++--- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f1283f2..c9743b5 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/setup.py b/setup.py index d41759b..5256fbc 100644 --- a/setup.py +++ b/setup.py @@ -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', ], )