mirror of
https://github.com/28Zaaky/khaos-c2
synced 2026-07-22 12:18:04 +00:00
12 lines
181 B
C
12 lines
181 B
C
#ifndef UTIL_H
|
|
#define UTIL_H
|
|
|
|
const char *random_ua(void);
|
|
|
|
#ifndef HTTP_ONLY
|
|
#include <curl/curl.h>
|
|
void curl_apply_opsec(CURL *curl);
|
|
#endif /* HTTP_ONLY */
|
|
|
|
#endif /* UTIL_H */
|