|
|
@ -832,11 +832,13 @@ static void exithelp(void) |
|
|
|
" --dpi-desync-split-pos=<1..%u>\t\t; data payload split position\n" |
|
|
|
" --dpi-desync-split-http-req=method|host\t; split at specified logical part of plain http request\n" |
|
|
|
" --dpi-desync-split-tls=sni|sniext\t\t; split at specified logical part of TLS ClientHello\n" |
|
|
|
" --dpi-desync-split-seqovl=<int>\t\t; use sequence overlap before first sent original split segment\n" |
|
|
|
" --dpi-desync-split-seqovl-pattern=<filename>|0xHEX ; pattern for the fake part of overlap\n" |
|
|
|
" --dpi-desync-ipfrag-pos-tcp=<8..%u>\t\t; ip frag position starting from the transport header. multiple of 8, default %u.\n" |
|
|
|
" --dpi-desync-ipfrag-pos-udp=<8..%u>\t\t; ip frag position starting from the transport header. multiple of 8, default %u.\n" |
|
|
|
" --dpi-desync-badseq-increment=<int|0xHEX>\t; badseq fooling seq signed increment. default %d\n" |
|
|
|
" --dpi-desync-badack-increment=<int|0xHEX>\t; badseq fooling ackseq signed increment. default %d\n" |
|
|
|
" --dpi-desync-any-protocol=0|1\t\t\t; 0(default)=desync only known protocols 1=desync any nonempty data packet\n" |
|
|
|
" --dpi-desync-any-protocol=0|1\t\t\t; 0(default)=desync only http and tls 1=desync any nonempty data packet\n" |
|
|
|
" --dpi-desync-fake-http=<filename>|0xHEX\t; file containing fake http request\n" |
|
|
|
" --dpi-desync-fake-tls=<filename>|0xHEX\t\t; file containing fake TLS ClientHello (for https)\n" |
|
|
|
" --dpi-desync-fake-unknown=<filename>|0xHEX\t; file containing unknown protocol fake payload\n" |
|
|
@ -1009,42 +1011,44 @@ int main(int argc, char **argv) |
|
|
|
{"dpi-desync-split-pos",required_argument,0,0},// optidx=23
|
|
|
|
{"dpi-desync-split-http-req",required_argument,0,0 },// optidx=24
|
|
|
|
{"dpi-desync-split-tls",required_argument,0,0 },// optidx=25
|
|
|
|
{"dpi-desync-ipfrag-pos-tcp",required_argument,0,0},// optidx=26
|
|
|
|
{"dpi-desync-ipfrag-pos-udp",required_argument,0,0},// optidx=27
|
|
|
|
{"dpi-desync-badseq-increment",required_argument,0,0},// optidx=28
|
|
|
|
{"dpi-desync-badack-increment",required_argument,0,0},// optidx=29
|
|
|
|
{"dpi-desync-any-protocol",optional_argument,0,0},// optidx=30
|
|
|
|
{"dpi-desync-fake-http",required_argument,0,0},// optidx=31
|
|
|
|
{"dpi-desync-fake-tls",required_argument,0,0},// optidx=32
|
|
|
|
{"dpi-desync-fake-unknown",required_argument,0,0},// optidx=33
|
|
|
|
{"dpi-desync-fake-syndata",required_argument,0,0},// optidx=34
|
|
|
|
{"dpi-desync-fake-quic",required_argument,0,0},// optidx=35
|
|
|
|
{"dpi-desync-fake-wireguard",required_argument,0,0},// optidx=36
|
|
|
|
{"dpi-desync-fake-dht",required_argument,0,0},// optidx=37
|
|
|
|
{"dpi-desync-fake-unknown-udp",required_argument,0,0},// optidx=38
|
|
|
|
{"dpi-desync-udplen-increment",required_argument,0,0},// optidx=39
|
|
|
|
{"dpi-desync-udplen-pattern",required_argument,0,0},// optidx=40
|
|
|
|
{"dpi-desync-cutoff",required_argument,0,0},// optidx=41
|
|
|
|
{"dpi-desync-start",required_argument,0,0},// optidx=42
|
|
|
|
{"hostlist",required_argument,0,0}, // optidx=43
|
|
|
|
{"hostlist-exclude",required_argument,0,0}, // optidx=44
|
|
|
|
{"hostlist-auto",required_argument,0,0}, // optidx=45
|
|
|
|
{"hostlist-auto-fail-threshold",required_argument,0,0}, // optidx=46
|
|
|
|
{"hostlist-auto-fail-time",required_argument,0,0}, // optidx=47
|
|
|
|
{"hostlist-auto-retrans-threshold",required_argument,0,0}, // optidx=48
|
|
|
|
{"hostlist-auto-debug",required_argument,0,0}, // optidx=49
|
|
|
|
{"dpi-desync-split-seqovl",required_argument,0,0 },// optidx=26
|
|
|
|
{"dpi-desync-split-seqovl-pattern",required_argument,0,0 },// optidx=27
|
|
|
|
{"dpi-desync-ipfrag-pos-tcp",required_argument,0,0},// optidx=28
|
|
|
|
{"dpi-desync-ipfrag-pos-udp",required_argument,0,0},// optidx=29
|
|
|
|
{"dpi-desync-badseq-increment",required_argument,0,0},// optidx=30
|
|
|
|
{"dpi-desync-badack-increment",required_argument,0,0},// optidx=31
|
|
|
|
{"dpi-desync-any-protocol",optional_argument,0,0},// optidx=32
|
|
|
|
{"dpi-desync-fake-http",required_argument,0,0},// optidx=33
|
|
|
|
{"dpi-desync-fake-tls",required_argument,0,0},// optidx=34
|
|
|
|
{"dpi-desync-fake-unknown",required_argument,0,0},// optidx=35
|
|
|
|
{"dpi-desync-fake-syndata",required_argument,0,0},// optidx=36
|
|
|
|
{"dpi-desync-fake-quic",required_argument,0,0},// optidx=37
|
|
|
|
{"dpi-desync-fake-wireguard",required_argument,0,0},// optidx=38
|
|
|
|
{"dpi-desync-fake-dht",required_argument,0,0},// optidx=39
|
|
|
|
{"dpi-desync-fake-unknown-udp",required_argument,0,0},// optidx=40
|
|
|
|
{"dpi-desync-udplen-increment",required_argument,0,0},// optidx=41
|
|
|
|
{"dpi-desync-udplen-pattern",required_argument,0,0},// optidx=42
|
|
|
|
{"dpi-desync-cutoff",required_argument,0,0},// optidx=43
|
|
|
|
{"dpi-desync-start",required_argument,0,0},// optidx=43
|
|
|
|
{"hostlist",required_argument,0,0}, // optidx=44
|
|
|
|
{"hostlist-exclude",required_argument,0,0}, // optidx=45
|
|
|
|
{"hostlist-auto",required_argument,0,0}, // optidx=46
|
|
|
|
{"hostlist-auto-fail-threshold",required_argument,0,0}, // optidx=48
|
|
|
|
{"hostlist-auto-fail-time",required_argument,0,0}, // optidx=49
|
|
|
|
{"hostlist-auto-retrans-threshold",required_argument,0,0}, // optidx=50
|
|
|
|
{"hostlist-auto-debug",required_argument,0,0}, // optidx=51
|
|
|
|
|
|
|
|
#ifdef __linux__ |
|
|
|
{"bind-fix4",no_argument,0,0}, // optidx=50
|
|
|
|
{"bind-fix6",no_argument,0,0}, // optidx=51
|
|
|
|
{"bind-fix4",no_argument,0,0}, // optidx=52
|
|
|
|
{"bind-fix6",no_argument,0,0}, // optidx=53
|
|
|
|
#elif defined(__CYGWIN__) |
|
|
|
{"wf-iface",required_argument,0,0}, // optidx=50
|
|
|
|
{"wf-l3",required_argument,0,0}, // optidx=51
|
|
|
|
{"wf-tcp",required_argument,0,0}, // optidx=52
|
|
|
|
{"wf-udp",required_argument,0,0}, // optidx=53
|
|
|
|
{"wf-raw",required_argument,0,0}, // optidx=54
|
|
|
|
{"wf-save",required_argument,0,0}, // optidx=55
|
|
|
|
{"ssid-filter",required_argument,0,0}, // optidx=56
|
|
|
|
{"wf-iface",required_argument,0,0}, // optidx=52
|
|
|
|
{"wf-l3",required_argument,0,0}, // optidx=53
|
|
|
|
{"wf-tcp",required_argument,0,0}, // optidx=54
|
|
|
|
{"wf-udp",required_argument,0,0}, // optidx=55
|
|
|
|
{"wf-raw",required_argument,0,0}, // optidx=56
|
|
|
|
{"wf-save",required_argument,0,0}, // optidx=57
|
|
|
|
{"ssid-filter",required_argument,0,0}, // optidx=58
|
|
|
|
#endif |
|
|
|
{NULL,0,NULL,0} |
|
|
|
}; |
|
|
@ -1297,7 +1301,22 @@ int main(int argc, char **argv) |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 26: /* dpi-desync-ipfrag-pos-tcp */ |
|
|
|
case 26: /* dpi-desync-split-seqovl */ |
|
|
|
if (sscanf(optarg,"%u",¶ms.desync_seqovl)<1) |
|
|
|
{ |
|
|
|
fprintf(stderr, "dpi-desync-split-seqovl is not valid\n"); |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 27: /* dpi-desync-split-seqovl-pattern */ |
|
|
|
{ |
|
|
|
char buf[sizeof(params.seqovl_pattern)]; |
|
|
|
size_t sz=sizeof(buf); |
|
|
|
load_file_or_exit(optarg,buf,&sz); |
|
|
|
fill_pattern(params.seqovl_pattern,sizeof(params.seqovl_pattern),buf,sz); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 28: /* dpi-desync-ipfrag-pos-tcp */ |
|
|
|
if (sscanf(optarg,"%u",¶ms.desync_ipfrag_pos_tcp)<1 || params.desync_ipfrag_pos_tcp<1 || params.desync_ipfrag_pos_tcp>DPI_DESYNC_MAX_FAKE_LEN) |
|
|
|
{ |
|
|
|
fprintf(stderr, "dpi-desync-ipfrag-pos-tcp must be within 1..%u range\n",DPI_DESYNC_MAX_FAKE_LEN); |
|
|
@ -1309,7 +1328,7 @@ int main(int argc, char **argv) |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 27: /* dpi-desync-ipfrag-pos-udp */ |
|
|
|
case 29: /* dpi-desync-ipfrag-pos-udp */ |
|
|
|
if (sscanf(optarg,"%u",¶ms.desync_ipfrag_pos_udp)<1 || params.desync_ipfrag_pos_udp<1 || params.desync_ipfrag_pos_udp>DPI_DESYNC_MAX_FAKE_LEN) |
|
|
|
{ |
|
|
|
fprintf(stderr, "dpi-desync-ipfrag-pos-udp must be within 1..%u range\n",DPI_DESYNC_MAX_FAKE_LEN); |
|
|
@ -1321,63 +1340,63 @@ int main(int argc, char **argv) |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 28: /* dpi-desync-badseq-increments */ |
|
|
|
case 30: /* dpi-desync-badseq-increments */ |
|
|
|
if (!parse_badseq_increment(optarg,¶ms.desync_badseq_increment)) |
|
|
|
{ |
|
|
|
fprintf(stderr, "dpi-desync-badseq-increment should be signed decimal or signed 0xHEX\n"); |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 29: /* dpi-desync-badack-increment */ |
|
|
|
case 31: /* dpi-desync-badack-increment */ |
|
|
|
if (!parse_badseq_increment(optarg,¶ms.desync_badseq_ack_increment)) |
|
|
|
{ |
|
|
|
fprintf(stderr, "dpi-desync-badack-increment should be signed decimal or signed 0xHEX\n"); |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 30: /* dpi-desync-any-protocol */ |
|
|
|
case 32: /* dpi-desync-any-protocol */ |
|
|
|
params.desync_any_proto = !optarg || atoi(optarg); |
|
|
|
break; |
|
|
|
case 31: /* dpi-desync-fake-http */ |
|
|
|
case 33: /* dpi-desync-fake-http */ |
|
|
|
params.fake_http_size = sizeof(params.fake_http); |
|
|
|
load_file_or_exit(optarg,params.fake_http,¶ms.fake_http_size); |
|
|
|
break; |
|
|
|
case 32: /* dpi-desync-fake-tls */ |
|
|
|
case 34: /* dpi-desync-fake-tls */ |
|
|
|
params.fake_tls_size = sizeof(params.fake_tls); |
|
|
|
load_file_or_exit(optarg,params.fake_tls,¶ms.fake_tls_size); |
|
|
|
break; |
|
|
|
case 33: /* dpi-desync-fake-unknown */ |
|
|
|
case 35: /* dpi-desync-fake-unknown */ |
|
|
|
params.fake_unknown_size = sizeof(params.fake_unknown); |
|
|
|
load_file_or_exit(optarg,params.fake_unknown,¶ms.fake_unknown_size); |
|
|
|
break; |
|
|
|
case 34: /* dpi-desync-fake-syndata */ |
|
|
|
case 36: /* dpi-desync-fake-syndata */ |
|
|
|
params.fake_syndata_size = sizeof(params.fake_syndata); |
|
|
|
load_file_or_exit(optarg,params.fake_syndata,¶ms.fake_syndata_size); |
|
|
|
break; |
|
|
|
case 35: /* dpi-desync-fake-quic */ |
|
|
|
case 37: /* dpi-desync-fake-quic */ |
|
|
|
params.fake_quic_size = sizeof(params.fake_quic); |
|
|
|
load_file_or_exit(optarg,params.fake_quic,¶ms.fake_quic_size); |
|
|
|
break; |
|
|
|
case 36: /* dpi-desync-fake-wireguard */ |
|
|
|
case 38: /* dpi-desync-fake-wireguard */ |
|
|
|
params.fake_wg_size = sizeof(params.fake_wg); |
|
|
|
load_file_or_exit(optarg,params.fake_wg,¶ms.fake_wg_size); |
|
|
|
break; |
|
|
|
case 37: /* dpi-desync-fake-dht */ |
|
|
|
case 39: /* dpi-desync-fake-dht */ |
|
|
|
params.fake_dht_size = sizeof(params.fake_dht); |
|
|
|
load_file_or_exit(optarg,params.fake_dht,¶ms.fake_dht_size); |
|
|
|
break; |
|
|
|
case 38: /* dpi-desync-fake-unknown-udp */ |
|
|
|
case 40: /* dpi-desync-fake-unknown-udp */ |
|
|
|
params.fake_unknown_udp_size = sizeof(params.fake_unknown_udp); |
|
|
|
load_file_or_exit(optarg,params.fake_unknown_udp,¶ms.fake_unknown_udp_size); |
|
|
|
break; |
|
|
|
case 39: /* dpi-desync-udplen-increment */ |
|
|
|
case 41: /* dpi-desync-udplen-increment */ |
|
|
|
if (sscanf(optarg,"%d",¶ms.udplen_increment)<1 || params.udplen_increment>0x7FFF || params.udplen_increment<-0x8000) |
|
|
|
{ |
|
|
|
fprintf(stderr, "dpi-desync-udplen-increment must be integer within -32768..32767 range\n"); |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 40: /* dpi-desync-udplen-pattern */ |
|
|
|
case 42: /* dpi-desync-udplen-pattern */ |
|
|
|
{ |
|
|
|
char buf[sizeof(params.udplen_pattern)]; |
|
|
|
size_t sz=sizeof(buf); |
|
|
@ -1385,35 +1404,35 @@ int main(int argc, char **argv) |
|
|
|
fill_pattern(params.udplen_pattern,sizeof(params.udplen_pattern),buf,sz); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 41: /* desync-cutoff */ |
|
|
|
case 43: /* desync-cutoff */ |
|
|
|
if (!parse_cutoff(optarg, ¶ms.desync_cutoff, ¶ms.desync_cutoff_mode)) |
|
|
|
{ |
|
|
|
fprintf(stderr, "invalid desync-cutoff value\n"); |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 42: /* desync-start */ |
|
|
|
case 44: /* desync-start */ |
|
|
|
if (!parse_cutoff(optarg, ¶ms.desync_start, ¶ms.desync_start_mode)) |
|
|
|
{ |
|
|
|
fprintf(stderr, "invalid desync-start value\n"); |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 43: /* hostlist */ |
|
|
|
case 45: /* hostlist */ |
|
|
|
if (!strlist_add(¶ms.hostlist_files, optarg)) |
|
|
|
{ |
|
|
|
fprintf(stderr, "strlist_add failed\n"); |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 44: /* hostlist-exclude */ |
|
|
|
case 46: /* hostlist-exclude */ |
|
|
|
if (!strlist_add(¶ms.hostlist_exclude_files, optarg)) |
|
|
|
{ |
|
|
|
fprintf(stderr, "strlist_add failed\n"); |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 45: /* hostlist-auto */ |
|
|
|
case 47: /* hostlist-auto */ |
|
|
|
if (*params.hostlist_auto_filename) |
|
|
|
{ |
|
|
|
fprintf(stderr, "only one auto hostlist is supported\n"); |
|
|
@ -1446,7 +1465,7 @@ int main(int argc, char **argv) |
|
|
|
strncpy(params.hostlist_auto_filename, optarg, sizeof(params.hostlist_auto_filename)); |
|
|
|
params.hostlist_auto_filename[sizeof(params.hostlist_auto_filename) - 1] = '\0'; |
|
|
|
break; |
|
|
|
case 46: /* hostlist-auto-fail-threshold */ |
|
|
|
case 48: /* hostlist-auto-fail-threshold */ |
|
|
|
params.hostlist_auto_fail_threshold = (uint8_t)atoi(optarg); |
|
|
|
if (params.hostlist_auto_fail_threshold<1 || params.hostlist_auto_fail_threshold>20) |
|
|
|
{ |
|
|
@ -1454,7 +1473,7 @@ int main(int argc, char **argv) |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 47: /* hostlist-auto-fail-time */ |
|
|
|
case 49: /* hostlist-auto-fail-time */ |
|
|
|
params.hostlist_auto_fail_time = (uint8_t)atoi(optarg); |
|
|
|
if (params.hostlist_auto_fail_time<1) |
|
|
|
{ |
|
|
@ -1462,7 +1481,7 @@ int main(int argc, char **argv) |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 48: /* hostlist-auto-retrans-threshold */ |
|
|
|
case 50: /* hostlist-auto-retrans-threshold */ |
|
|
|
params.hostlist_auto_retrans_threshold = (uint8_t)atoi(optarg); |
|
|
|
if (params.hostlist_auto_retrans_threshold<2 || params.hostlist_auto_retrans_threshold>10) |
|
|
|
{ |
|
|
@ -1470,7 +1489,7 @@ int main(int argc, char **argv) |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 49: /* hostlist-auto-debug */ |
|
|
|
case 51: /* hostlist-auto-debug */ |
|
|
|
{ |
|
|
|
FILE *F = fopen(optarg,"a+t"); |
|
|
|
if (!F) |
|
|
@ -1488,28 +1507,28 @@ int main(int argc, char **argv) |
|
|
|
} |
|
|
|
break; |
|
|
|
#ifdef __linux__ |
|
|
|
case 50: /* bind-fix4 */ |
|
|
|
case 52: /* bind-fix4 */ |
|
|
|
params.bind_fix4 = true; |
|
|
|
break; |
|
|
|
case 51: /* bind-fix6 */ |
|
|
|
case 53: /* bind-fix6 */ |
|
|
|
params.bind_fix6 = true; |
|
|
|
break; |
|
|
|
#elif defined(__CYGWIN__) |
|
|
|
case 50: /* wf-iface */ |
|
|
|
case 52: /* wf-iface */ |
|
|
|
if (!sscanf(optarg,"%u.%u",&IfIdx,&SubIfIdx)) |
|
|
|
{ |
|
|
|
fprintf(stderr, "bad value for --wf-iface\n"); |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 51: /* wf-l3 */ |
|
|
|
case 53: /* wf-l3 */ |
|
|
|
if (!wf_make_l3(optarg,&wf_ipv4,&wf_ipv6)) |
|
|
|
{ |
|
|
|
fprintf(stderr, "bad value for --wf-l3\n"); |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 52: /* wf-tcp */ |
|
|
|
case 54: /* wf-tcp */ |
|
|
|
hash_wf_tcp=hash_jen(optarg,strlen(optarg)); |
|
|
|
if (!wf_make_pf(optarg,"tcp","SrcPort",wf_pf_tcp_src,sizeof(wf_pf_tcp_src)) || |
|
|
|
!wf_make_pf(optarg,"tcp","DstPort",wf_pf_tcp_dst,sizeof(wf_pf_tcp_dst))) |
|
|
@ -1518,7 +1537,7 @@ int main(int argc, char **argv) |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 53: /* wf-udp */ |
|
|
|
case 55: /* wf-udp */ |
|
|
|
hash_wf_udp=hash_jen(optarg,strlen(optarg)); |
|
|
|
if (!wf_make_pf(optarg,"udp","SrcPort",wf_pf_udp_src,sizeof(wf_pf_udp_src)) || |
|
|
|
!wf_make_pf(optarg,"udp","DstPort",wf_pf_udp_dst,sizeof(wf_pf_udp_dst))) |
|
|
@ -1527,7 +1546,7 @@ int main(int argc, char **argv) |
|
|
|
exit_clean(1); |
|
|
|
} |
|
|
|
break; |
|
|
|
case 54: /* wf-raw */ |
|
|
|
case 56: /* wf-raw */ |
|
|
|
hash_wf_raw=hash_jen(optarg,strlen(optarg)); |
|
|
|
if (optarg[0]=='@') |
|
|
|
{ |
|
|
@ -1541,11 +1560,11 @@ int main(int argc, char **argv) |
|
|
|
windivert_filter[sizeof(windivert_filter) - 1] = '\0'; |
|
|
|
} |
|
|
|
break; |
|
|
|
case 55: /* wf-save */ |
|
|
|
case 57: /* wf-save */ |
|
|
|
strncpy(wf_save_file, optarg, sizeof(wf_save_file)); |
|
|
|
wf_save_file[sizeof(wf_save_file) - 1] = '\0'; |
|
|
|
break; |
|
|
|
case 56: /* ssid-filter */ |
|
|
|
case 58: /* ssid-filter */ |
|
|
|
hash_ssid_filter=hash_jen(optarg,strlen(optarg)); |
|
|
|
{ |
|
|
|
char *e,*p = optarg; |
|
|
@ -1617,7 +1636,7 @@ int main(int argc, char **argv) |
|
|
|
if (hMutexArg && GetLastError()==ERROR_ALREADY_EXISTS) |
|
|
|
{ |
|
|
|
CloseHandle(hMutexArg); hMutexArg = NULL; |
|
|
|
printf("A copy of winws is already running with the same filter\n"); |
|
|
|
fprintf(stderr, "A copy of winws is already running with the same filter\n"); |
|
|
|
goto exiterr; |
|
|
|
} |
|
|
|
|
|
|
|