간단한 C2 서버를 LLM 을 활용해 제작해보았다.LLM 모델은 qwen3.6_35b_a3b_q8. 이 모델을 활용해 c2 서버를 제작해 보았습니다.HTTP-polling 기반의 명령-응답 구조이며, agent는 macOS, Windows 를 지원합니다.1. 통신 계층// common.c:161header_len = snprintf(header_buf, sizeof(header_buf), "%s %s HTTP/1.0\r\n" "Host: %s\r\n" "Content-Type: application/json\r\n" "Content-Length: %d\r\n" "\r\n", method, path, host_header, (int)strlen(body));HTTP/1.0 ..