mirror of https://github.com/bol-van/zapret/
20 changed files with 291 additions and 8 deletions
Binary file not shown.
@ -0,0 +1,6 @@ |
|||
ej.ru |
|||
bbc.com |
|||
static.rutracker.cc |
|||
nnmclub.to |
|||
hdrezka.ag |
|||
rutracker.org |
@ -1,2 +1,2 @@ |
|||
start "zapret: http,https" "%~dp0winws.exe" --wf-tcp=80,443 --dpi-desync=fake,disorder2 --dpi-desync-autottl=2 --dpi-desync-fooling=md5sig |
|||
start "zapret: quic" "%~dp0winws.exe" --wf-udp=443 --dpi-desync=fake --dpi-desync-repeats=10 |
|||
start "zapret: quic" "%~dp0winws.exe" --wf-udp=443 --dpi-desync=fake --dpi-desync-repeats=11 |
@ -0,0 +1,12 @@ |
|||
set ARGS=--wf-l3=ipv4,ipv6 --wf-tcp=80,443 --dpi-desync=fake,split --dpi-desync-ttl=7 --dpi-desync-fooling=md5sig |
|||
call :srvinst winws1 |
|||
rem set ARGS=--wf-l3=ipv4,ipv6 --wf-udp=443 --dpi-desync=fake |
|||
rem call :srvinst winws2 |
|||
goto :eof |
|||
|
|||
:srvinst |
|||
net stop %1 |
|||
sc delete %1 |
|||
sc create %1 binPath= "\"%~dp0winws.exe\" %ARGS%" DisplayName= "zapret DPI bypass : %1" start= auto |
|||
sc description %1 "zapret DPI bypass software" |
|||
sc start %1 |
@ -0,0 +1,7 @@ |
|||
call :srvdel winws1 |
|||
rem call :srvdel winws2 |
|||
goto :eof |
|||
|
|||
:srvdel |
|||
net stop %1 |
|||
sc delete %1 |
@ -0,0 +1,2 @@ |
|||
sc start winws1 |
|||
rem sc start winws2 |
@ -0,0 +1,2 @@ |
|||
net stop winws1 |
|||
rem net stop winws2 |
Binary file not shown.
@ -0,0 +1 @@ |
|||
../binaries/my/nfqws |
@ -1 +1,8 @@ |
|||
#pragma once |
|||
|
|||
#include <stdbool.h> |
|||
|
|||
#ifdef __CYGWIN__ |
|||
extern bool bQuit; |
|||
#endif |
|||
int main(int argc, char *argv[]); |
|||
|
@ -0,0 +1,94 @@ |
|||
#ifdef __CYGWIN__ |
|||
|
|||
#include <unistd.h> |
|||
#include <signal.h> |
|||
#include <windows.h> |
|||
#include <stdio.h> |
|||
|
|||
#include "win.h" |
|||
#include "nfqws.h" |
|||
|
|||
#define SERVICE_NAME "winws" |
|||
|
|||
static SERVICE_STATUS ServiceStatus; |
|||
static SERVICE_STATUS_HANDLE hStatus = NULL; |
|||
static int service_argc = 0; |
|||
static char **service_argv = NULL; |
|||
|
|||
void service_main(int argc __attribute__((unused)), char *argv[] __attribute__((unused))); |
|||
|
|||
bool service_run(int argc, char *argv[]) |
|||
{ |
|||
int i; |
|||
|
|||
SERVICE_TABLE_ENTRY ServiceTable[] = { |
|||
{SERVICE_NAME, (LPSERVICE_MAIN_FUNCTION)service_main}, |
|||
{NULL, NULL} |
|||
}; |
|||
|
|||
service_argc = argc; |
|||
service_argv = argv; |
|||
|
|||
return StartServiceCtrlDispatcherA(ServiceTable); |
|||
} |
|||
|
|||
static void service_set_status(DWORD state) |
|||
{ |
|||
ServiceStatus.dwCurrentState = state; |
|||
SetServiceStatus(hStatus, &ServiceStatus); |
|||
} |
|||
void service_stopped() |
|||
{ |
|||
service_set_status(SERVICE_STOPPED); |
|||
} |
|||
|
|||
// Control handler function
|
|||
void service_controlhandler(DWORD request) |
|||
{ |
|||
switch (request) |
|||
{ |
|||
case SERVICE_CONTROL_STOP: |
|||
case SERVICE_CONTROL_SHUTDOWN: |
|||
bQuit = true; |
|||
service_set_status(SERVICE_STOP_PENDING); |
|||
break; |
|||
default: |
|||
// Report current status
|
|||
SetServiceStatus(hStatus, &ServiceStatus); |
|||
break; |
|||
} |
|||
return; |
|||
} |
|||
|
|||
void service_main(int argc __attribute__((unused)), |
|||
char *argv[] __attribute__((unused))) |
|||
{ |
|||
ServiceStatus.dwServiceType = SERVICE_WIN32_OWN_PROCESS; |
|||
ServiceStatus.dwCurrentState = SERVICE_RUNNING; |
|||
ServiceStatus.dwControlsAccepted = SERVICE_ACCEPT_STOP | SERVICE_ACCEPT_SHUTDOWN; |
|||
ServiceStatus.dwWin32ExitCode = 0; |
|||
ServiceStatus.dwServiceSpecificExitCode = 0; |
|||
ServiceStatus.dwCheckPoint = 1; |
|||
ServiceStatus.dwWaitHint = 0; |
|||
|
|||
hStatus = RegisterServiceCtrlHandlerA( |
|||
SERVICE_NAME, |
|||
(LPHANDLER_FUNCTION)service_controlhandler); |
|||
if (hStatus == (SERVICE_STATUS_HANDLE)0) |
|||
{ |
|||
// Registering Control Handler failed
|
|||
return; |
|||
} |
|||
|
|||
SetServiceStatus(hStatus, &ServiceStatus); |
|||
|
|||
// Calling main with saved argc & argv
|
|||
ServiceStatus.dwWin32ExitCode = (DWORD)main(service_argc, service_argv); |
|||
|
|||
ServiceStatus.dwCurrentState = SERVICE_STOPPED; |
|||
SetServiceStatus(hStatus, &ServiceStatus); |
|||
return; |
|||
} |
|||
|
|||
|
|||
#endif |
@ -0,0 +1,11 @@ |
|||
#pragma once |
|||
|
|||
#ifdef __CYGWIN__ |
|||
|
|||
#include <stdbool.h> |
|||
|
|||
bool service_run(); |
|||
void service_stopped(); |
|||
|
|||
#endif |
|||
|
Loading…
Reference in new issue