File tree 2 files changed +8
-6
lines changed
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -78,11 +78,11 @@ LEGACY modesets:
78
78
-4 -p -r -s (best speed)
79
79
80
80
Modern modesets (more stable, more compatible, faster):
81
- -5 -f 2 -e 2 --auto-ttl --reverse-frag --max-payload (this is the default)
81
+ -5 -f 2 -e 2 --auto-ttl --reverse-frag --max-payload
82
82
-6 -f 2 -e 2 --wrong-seq --reverse-frag --max-payload
83
83
-7 -f 2 -e 2 --wrong-chksum --reverse-frag --max-payload
84
84
-8 -f 2 -e 2 --wrong-seq --wrong-chksum --reverse-frag --max-payload
85
- -9 -f 2 -e 2 --wrong-seq --wrong-chksum --reverse-frag --max-payload -q
85
+ -9 -f 2 -e 2 --wrong-seq --wrong-chksum --reverse-frag --max-payload -q (this is the default)
86
86
87
87
Note: combination of --wrong-seq and --wrong-chksum generates two different fake packets.
88
88
```
Original file line number Diff line number Diff line change @@ -638,13 +638,15 @@ int main(int argc, char *argv[]) {
638
638
);
639
639
640
640
if (argc == 1 ) {
641
- /* enable mode -5 by default */
641
+ /* enable mode -9 by default */
642
642
do_fragment_http = do_fragment_https = 1 ;
643
643
do_reverse_frag = do_native_frag = 1 ;
644
644
http_fragment_size = https_fragment_size = 2 ;
645
645
do_fragment_http_persistent = do_fragment_http_persistent_nowait = 1 ;
646
646
do_fake_packet = 1 ;
647
- do_auto_ttl = 1 ;
647
+ do_wrong_chksum = 1 ;
648
+ do_wrong_seq = 1 ;
649
+ do_block_quic = 1 ;
648
650
max_payload_size = 1200 ;
649
651
}
650
652
@@ -964,11 +966,11 @@ int main(int argc, char *argv[]) {
964
966
" -4 -p -r -s (best speed)"
965
967
"\n"
966
968
"Modern modesets (more stable, more compatible, faster):\n"
967
- " -5 -f 2 -e 2 --auto-ttl --reverse-frag --max-payload (this is the default) \n"
969
+ " -5 -f 2 -e 2 --auto-ttl --reverse-frag --max-payload\n"
968
970
" -6 -f 2 -e 2 --wrong-seq --reverse-frag --max-payload\n"
969
971
" -7 -f 2 -e 2 --wrong-chksum --reverse-frag --max-payload\n"
970
972
" -8 -f 2 -e 2 --wrong-seq --wrong-chksum --reverse-frag --max-payload\n"
971
- " -9 -f 2 -e 2 --wrong-seq --wrong-chksum --reverse-frag --max-payload -q\n\n"
973
+ " -9 -f 2 -e 2 --wrong-seq --wrong-chksum --reverse-frag --max-payload -q (this is the default) \n\n"
972
974
"Note: combination of --wrong-seq and --wrong-chksum generates two different fake packets.\n"
973
975
);
974
976
exit (EXIT_FAILURE );
You can’t perform that action at this time.
0 commit comments