├── .gitignore ├── Documents └── Major Project Report.pdf ├── LICENSE ├── README.md ├── broadcasting ├── broadcasting_client.py ├── broadcasting_server.py ├── commands.txt ├── files │ ├── decrypted-file.txt │ └── received-file.gpg ├── server_ip └── temp.txt ├── chat ├── chat_client.py └── chat_server.py ├── groups ├── files │ ├── decrypted-file.txt │ └── received-file.gpg ├── group_client.py ├── group_port.txt ├── group_server.py ├── server_ip └── temp.txt ├── new_features_to_add.md ├── screenshots ├── broadcasting client.png ├── broadcasting server.png ├── chat box.png ├── encrypted file.png ├── group client.png └── group server.png └── support-files ├── client.py ├── get_ip.py ├── run.py ├── server.py ├── udp_client.py └── udp_server.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /Documents/Major Project Report.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/Documents/Major Project Report.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/README.md -------------------------------------------------------------------------------- /broadcasting/broadcasting_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/broadcasting/broadcasting_client.py -------------------------------------------------------------------------------- /broadcasting/broadcasting_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/broadcasting/broadcasting_server.py -------------------------------------------------------------------------------- /broadcasting/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/broadcasting/commands.txt -------------------------------------------------------------------------------- /broadcasting/files/decrypted-file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/broadcasting/files/decrypted-file.txt -------------------------------------------------------------------------------- /broadcasting/files/received-file.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/broadcasting/files/received-file.gpg -------------------------------------------------------------------------------- /broadcasting/server_ip: -------------------------------------------------------------------------------- 1 | 10.42.0.1 2 | -------------------------------------------------------------------------------- /broadcasting/temp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/broadcasting/temp.txt -------------------------------------------------------------------------------- /chat/chat_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/chat/chat_client.py -------------------------------------------------------------------------------- /chat/chat_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/chat/chat_server.py -------------------------------------------------------------------------------- /groups/files/decrypted-file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /groups/files/received-file.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/groups/files/received-file.gpg -------------------------------------------------------------------------------- /groups/group_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/groups/group_client.py -------------------------------------------------------------------------------- /groups/group_port.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/groups/group_port.txt -------------------------------------------------------------------------------- /groups/group_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/groups/group_server.py -------------------------------------------------------------------------------- /groups/server_ip: -------------------------------------------------------------------------------- 1 | 10.42.0.1 2 | -------------------------------------------------------------------------------- /groups/temp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/groups/temp.txt -------------------------------------------------------------------------------- /new_features_to_add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/new_features_to_add.md -------------------------------------------------------------------------------- /screenshots/broadcasting client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/screenshots/broadcasting client.png -------------------------------------------------------------------------------- /screenshots/broadcasting server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/screenshots/broadcasting server.png -------------------------------------------------------------------------------- /screenshots/chat box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/screenshots/chat box.png -------------------------------------------------------------------------------- /screenshots/encrypted file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/screenshots/encrypted file.png -------------------------------------------------------------------------------- /screenshots/group client.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/screenshots/group client.png -------------------------------------------------------------------------------- /screenshots/group server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/screenshots/group server.png -------------------------------------------------------------------------------- /support-files/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/support-files/client.py -------------------------------------------------------------------------------- /support-files/get_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/support-files/get_ip.py -------------------------------------------------------------------------------- /support-files/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/support-files/run.py -------------------------------------------------------------------------------- /support-files/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/support-files/server.py -------------------------------------------------------------------------------- /support-files/udp_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/support-files/udp_client.py -------------------------------------------------------------------------------- /support-files/udp_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Colviz/Linux-based-secure-systems-manager/HEAD/support-files/udp_server.py --------------------------------------------------------------------------------