上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 51 下一页
摘要: 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) 编辑
摘要: REVERSE_BACKDOOR - cd command Access file system: cd command changes current working directory. It has 2 behaviours: cd -> shows current working direc 阅读全文
posted @ 2019-10-06 23:05 晨风_Eric 阅读(120) 评论(0) 推荐(0) 编辑
摘要: BACKDOORS Sockets Problem: TCP is stream-based. Difficult to identify the end of message/batch. Solution: Make sure the message is well defined. Imple 阅读全文
posted @ 2019-10-06 22:01 晨风_Eric 阅读(149) 评论(0) 推荐(0) 编辑
摘要: Refactoring - Creating a Listener Class Creating a Backdoor class: 阅读全文
posted @ 2019-10-05 17:18 晨风_Eric 阅读(111) 评论(0) 推荐(0) 编辑
摘要: REVERSE_BACKDOOR Access file system. Execute system commands. Download files. Upload files. Persistence. BACKDOORS An interactive program gives access 阅读全文
posted @ 2019-10-05 16:18 晨风_Eric 阅读(191) 评论(0) 推荐(0) 编辑
摘要: Object-Oriented Programming Keylogger Classes Way of modeling program(blueprint). Logically group functions and data. Makes code more readable. More r 阅读全文
posted @ 2019-10-05 12:18 晨风_Eric 阅读(286) 评论(0) 推荐(0) 编辑
上一页 1 ··· 37 38 39 40 41 42 43 44 45 ··· 51 下一页