add honey pot binary
This commit is contained in:
16
setup.py
16
setup.py
@@ -7,8 +7,17 @@ setup(name='rdpy',
|
||||
version='1.2.0',
|
||||
description='Remote Desktop Protocol in Python',
|
||||
long_description="""
|
||||
RDPY is a pure Python implementation of the Microsoft RDP (Remote Desktop Protocol) protocol.
|
||||
RDPY is a pure Python implementation of the Microsoft RDP (Remote Desktop Protocol) protocol (Client and Server side).
|
||||
RDPY is built over the event driven network engine Twisted.
|
||||
|
||||
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 client
|
||||
\t-VNC client
|
||||
\t-VNC screen shooter
|
||||
\t-RSS Player
|
||||
""",
|
||||
author='Sylvain Peyrefitte',
|
||||
author_email='citronneur@gmail.com',
|
||||
@@ -25,10 +34,11 @@ setup(name='rdpy',
|
||||
],
|
||||
ext_modules=[Extension('rle', ['ext/rle.c'])],
|
||||
scripts = [
|
||||
'bin/rdpy-rdpclient.py',
|
||||
'bin/rdpy-rdpy-rsrplayer.py',
|
||||
'bin/rdpy-rdpclient.py',
|
||||
'bin/rdpy-rdphoneypot.py',
|
||||
'bin/rdpy-rdpmitm.py',
|
||||
'bin/rdpy-rdpscreenshot.py',
|
||||
'bin/rdpy-rssplayer.py',
|
||||
'bin/rdpy-vncclient.py',
|
||||
'bin/rdpy-vncscreenshot.py'
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user