├── .gitignore ├── .pylintrc ├── README.md ├── UNLICENSE └── fake_rdp.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheeseandcereal/fake-rdp/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- 1 | [MESSAGES CONTROL] 2 | disable=W0703 3 | 4 | [TYPECHECK] 5 | ignored-classes=_socketobject 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheeseandcereal/fake-rdp/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheeseandcereal/fake-rdp/HEAD/UNLICENSE -------------------------------------------------------------------------------- /fake_rdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheeseandcereal/fake-rdp/HEAD/fake_rdp.py --------------------------------------------------------------------------------