From 15793fb84f8df7995907d9312ac19571b42f8dd0 Mon Sep 17 00:00:00 2001 From: ValdikSS Date: Sat, 14 Sep 2024 22:35:28 +0300 Subject: [PATCH] --fake-gen option: generate random-filled Fake Packets This option is similar to fake-from-hex, but generates number of packets with random payload. --- README.md | 2 ++ src/fakepackets.c | 24 ++++++++++++++++++++++++ src/goodbyedpi.c | 8 ++++++++ 3 files changed, 34 insertions(+) diff --git a/README.md b/README.md index 0c0dabb..4f44951 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,8 @@ Usage: goodbyedpi.exe [OPTION...] --fake-from-hex Load fake packets for Fake Request Mode from HEX values (like 1234abcDEF). This option can be supplied multiple times, in this case each fake packet would be sent on every request in the command line argument order. + --fake-gen Generate random-filled fake packets for Fake Request Mode, value of them + (up to 30). --max-payload [value] packets with TCP payload data more than [value] won't be processed. Use this option to reduce CPU usage by skipping huge amount of data (like file transfers) in already established sessions. diff --git a/src/fakepackets.c b/src/fakepackets.c index b7fb1e2..e13c271 100644 --- a/src/fakepackets.c +++ b/src/fakepackets.c @@ -1,4 +1,5 @@ #include +#define _CRT_RAND_S #include #include #include @@ -284,3 +285,26 @@ int fake_load_from_hex(const char *data) { return fake_add(finaldata, len / 2); } + +int fake_load_random(unsigned int count, unsigned int maxsize) { + if (count < 1 || count > sizeof(fakes) / sizeof(*fakes)) + return 1; + + unsigned int random = 0; + + for (unsigned int i=0; i Load fake packets for Fake Request Mode from HEX values (like 1234abcDEF).\n" " This option can be supplied multiple times, in this case each fake packet\n" " would be sent on every request in the command line argument order.\n" + " --fake-gen Generate random-filled fake packets for Fake Request Mode, value of them\n" + " (up to 30).\n" " --max-payload [value] packets with TCP payload data more than [value] won't be processed.\n" " Use this option to reduce CPU usage by skipping huge amount of data\n" " (like file transfers) in already established sessions.\n"