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"