Files
Archive/netch/Redirector/Based.cpp
2024-03-05 02:32:38 -08:00

25 lines
502 B
C++

#include "Based.h"
bool filterLoopback = false;
bool filterIntranet = false;
bool filterParent = false;
bool filterICMP = true;
bool filterTCP = true;
bool filterUDP = true;
bool filterDNS = true;
DWORD icmping = 0;
bool dnsOnly = false;
bool dnsProx = true;
string dnsHost = "1.1.1.1";
USHORT dnsPort = 53;
wstring tgtHost = L"127.0.0.1";
wstring tgtPort = L"1080";
string tgtUsername = "";
string tgtPassword = "";
vector<wstring> bypassList;
vector<wstring> handleList;