摘要: PACKAGING Convert python program into an executable that: Packages all program files into a single executable. Works without a python interpreter. Get 阅读全文
posted @ 2019-10-07 21:14 晨风_Eric 阅读(160) 评论(0) 推荐(0) 编辑
摘要: Cross-platform hacking All programs we wrote are pure python programs They do not rely on OS-specific resources. Result: They work on any OS with a py 阅读全文
posted @ 2019-10-07 12:04 晨风_Eric 阅读(137) 评论(0) 推荐(0) 编辑
摘要: Handling Errors: If the client or server crashes, the connection will be lost. Backdoor crashes if: An incorrect command is sent. The correct command 阅读全文
posted @ 2019-10-07 11:48 晨风_Eric 阅读(127) 评论(0) 推荐(0) 编辑
摘要: File Upload: A file is a series of characters. Uploading a file is the opposite of downloading a file. Therefore to transfer a file we need to: 1. Rea 阅读全文
posted @ 2019-10-07 10:49 晨风_Eric 阅读(218) 评论(0) 推荐(0) 编辑
摘要: File Download: A file is a series of characters. Therefore to transfer a file we need to: 1. Read the file as a sequence of characters. 2. Send this s 阅读全文
posted @ 2019-10-07 09:45 晨风_Eric 阅读(181) 评论(0) 推荐(0) 编辑