Skip to content

Commit cb46c89

Browse files
authored
README.md & args.c: minor correction of typos
1 parent d87d3c9 commit cb46c89

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ Available flags:
187187

188188
- `--sni-domains=<comma separated domain list>|all` List of domains you want to be handled by SNI. Use this string if you want to change default domain list. Defaults to `googlevideo.com,ggpht.com,ytimg.com,youtube.com,play.google.com,youtu.be,googleapis.com,googleusercontent.com,gstatic.com,l.google.com`. You can pass **all** if you want for every *ClientHello* to be handled. You can exclude some domains with `--exclude-domains` flag.
189189

190-
- `--exclude-domains=<comma separated domain list>` List of domains to be excluded from targetting.
190+
- `--exclude-domains=<comma separated domain list>` List of domains to be excluded from targeting.
191191

192192
- `--queue-num=<number of netfilter queue>` The number of netfilter queue **youtubeUnblock** will be linked to. Defaults to **537**.
193193

@@ -199,7 +199,7 @@ Available flags:
199199
- `--fake-custom-payload=<payload>` Useful with `--fake-sni-type=custom`. You should specify the payload for fake message manually. Use hex format: `--fake-custom-payload=0001020304` mean that 5 bytes sequence: `0x00`, `0x01`, `0x02`, `0x03`, `0x04` used as fake.
200200

201201
- `--faking-strategy={randseq|ttl|tcp_check|pastseq|md5sum}` This flag determines the strategy of fake packets invalidation. Defaults to `randseq`
202-
- `randseq` specifies that random sequence/acknowledgemend random will be set. This option may be handled by provider which uses *conntrack* with drop on invalid *conntrack* state firewall rule enabled.
202+
- `randseq` specifies that random sequence/acknowledgment random will be set. This option may be handled by provider which uses *conntrack* with drop on invalid *conntrack* state firewall rule enabled.
203203
- `ttl` specifies that packet will be invalidated after `--faking-ttl=n` hops. `ttl` is better but may cause issues if unconfigured.
204204
- `pastseq` is like `randseq` but sequence number is not random but references the packet sent in the past (before current).
205205
- `tcp_check` will invalidate faking packet with invalid checksum. May be handled and dropped by some providers/TSPUs.

args.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ void print_welcome() {
558558
}
559559

560560
if (section->all_domains) {
561-
printf("All Client Hello will be targetted by youtubeUnblock!\n");
561+
printf("All Client Hello will be targeted by youtubeUnblock!\n");
562562
} else {
563563
printf("Target sni domains: %s\n", section->domains_str);
564564
}

0 commit comments

Comments
 (0)