mirror of
https://github.com/ValdikSS/GoodbyeDPI.git
synced 2024-12-22 06:15:27 +00:00
Small fixes
This commit is contained in:
parent
c6c071e35f
commit
1e8835cfe5
32
goodbyedpi.c
32
goodbyedpi.c
@ -64,7 +64,8 @@ static struct option long_options[] = {
|
|||||||
{0, 0, 0, 0 }
|
{0, 0, 0, 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
static char *filter_string = "(ip and tcp and "
|
static char *filter_string = NULL;
|
||||||
|
static char *filter_string_template = "(ip and tcp and "
|
||||||
"(inbound and (("
|
"(inbound and (("
|
||||||
"((ip.Id == 0x0001 or ip.Id == 0x0000) and tcp.SrcPort == 80 and tcp.Ack) or "
|
"((ip.Id == 0x0001 or ip.Id == 0x0000) and tcp.SrcPort == 80 and tcp.Ack) or "
|
||||||
"((tcp.SrcPort == 80 or tcp.SrcPort == 443) and tcp.Ack and tcp.Syn)"
|
"((tcp.SrcPort == 80 or tcp.SrcPort == 443) and tcp.Ack and tcp.Syn)"
|
||||||
@ -251,6 +252,11 @@ int main(int argc, char *argv[]) {
|
|||||||
char *hdr_name_addr = NULL, *hdr_value_addr = NULL;
|
char *hdr_name_addr = NULL, *hdr_value_addr = NULL;
|
||||||
int hdr_value_len;
|
int hdr_value_len;
|
||||||
|
|
||||||
|
if (filter_string == NULL) {
|
||||||
|
filter_string = malloc(strlen(filter_string_template) + 1);
|
||||||
|
strcpy(filter_string, filter_string_template);
|
||||||
|
}
|
||||||
|
|
||||||
printf("GoodbyeDPI: Passive DPI blocker and Active DPI circumvention utility\n");
|
printf("GoodbyeDPI: Passive DPI blocker and Active DPI circumvention utility\n");
|
||||||
|
|
||||||
if (argc == 1) {
|
if (argc == 1) {
|
||||||
@ -323,21 +329,31 @@ int main(int argc, char *argv[]) {
|
|||||||
i = 0;
|
i = 0;
|
||||||
break;
|
break;
|
||||||
case 'd':
|
case 'd':
|
||||||
do_dns_redirect = 1;
|
if (!do_dns_redirect) {
|
||||||
dns_addr = inet_addr(optarg);
|
do_dns_redirect = 1;
|
||||||
if (!dns_addr) {
|
dns_addr = inet_addr(optarg);
|
||||||
printf("DNS address parameter error!\n");
|
if (!dns_addr) {
|
||||||
exit(EXIT_FAILURE);
|
printf("DNS address parameter error!\n");
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
add_filter_str(IPPROTO_UDP, 53);
|
||||||
}
|
}
|
||||||
add_filter_str(IPPROTO_UDP, 53);
|
|
||||||
break;
|
break;
|
||||||
case 'g':
|
case 'g':
|
||||||
|
if (!do_dns_redirect) {
|
||||||
|
printf("--dns-port should be used with --dns-addr!\n"
|
||||||
|
"Make sure you use --dns-addr and pass it before "
|
||||||
|
"--dns-port\n");
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
dns_port = atoi(optarg);
|
dns_port = atoi(optarg);
|
||||||
if (dns_port <= 0 || dns_port > 65535) {
|
if (dns_port <= 0 || dns_port > 65535) {
|
||||||
printf("DNS port parameter error!\n");
|
printf("DNS port parameter error!\n");
|
||||||
exit(EXIT_FAILURE);
|
exit(EXIT_FAILURE);
|
||||||
}
|
}
|
||||||
add_filter_str(IPPROTO_UDP, dns_port);
|
if (dns_port != 53) {
|
||||||
|
add_filter_str(IPPROTO_UDP, dns_port);
|
||||||
|
}
|
||||||
dns_port = ntohs(dns_port);
|
dns_port = ntohs(dns_port);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
Loading…
Reference in New Issue
Block a user