From bbb0517212be17ab6fff09116cf353d0101c40dd Mon Sep 17 00:00:00 2001 From: colum Date: Sun, 12 Apr 2020 18:56:43 +0100 Subject: [PATCH] remove some garbage/test files --- Cipher | 583 ----------------------------------------------- alaya.auth | 1 - alaya.log | 646 ----------------------------------------------------- proxy.conf | 4 - 4 files changed, 1234 deletions(-) delete mode 100644 Cipher delete mode 100644 alaya.auth delete mode 100644 alaya.log delete mode 100644 proxy.conf diff --git a/Cipher b/Cipher deleted file mode 100644 index 0268130..0000000 --- a/Cipher +++ /dev/null @@ -1,583 +0,0 @@ -Authenticate.c:if (! Session->S) return(FALSE); -Authenticate.c: ptr=STREAMGetValue(Session->S, "SSL-Certificate-Verify"); -Authenticate.c: ptr=STREAMGetValue(Session->S, "SSL-Certificate-CommonName"); -Authenticate.c:if (StrValid(Token) && (strcmp(Session->UserName, Token)==0)) -Authenticate.c: if (strcmp(Session->Password, ptr)==0) result=TRUE; -Authenticate.c: Session->RealUserUID=uid; -Authenticate.c: Session->RealUser=CopyStr(Session->RealUser, pwent->pw_name); -Authenticate.c:if (! StrValid(Session->RealUser)) -Authenticate.c: AuthNativeCheck(Session, FALSE, &Session->RealUser, &Session->HomeDir, &Session->UserSettings); -Authenticate.c:if (! StrValid(Session->RealUser)) -Authenticate.c: Session->RealUser=CopyStr(Session->RealUser,Session->UserName); -Authenticate.c: pwent=getpwnam(Session->RealUser); -Authenticate.c: if (! pwent) Session->RealUser=CopyStr(Session->RealUser,Settings.DefaultUser); -Authenticate.c:pwent=getpwnam(Session->RealUser); -Authenticate.c: Session->RealUserUID=pwent->pw_uid; -Authenticate.c: if (! StrValid(Session->HomeDir)) Session->HomeDir=CopyStr(Session->HomeDir,pwent->pw_dir); -Authenticate.c: //grent=getgrnam(Session->Group); -Authenticate.c:if (! CheckServerAllowDenyLists(Session->UserName)) -Authenticate.c: LogToFile(Settings.LogPath, "AUTH: Authentication failed for UserName '%s'. User not allowed to log in",Session->UserName); -Authenticate.c: LogToFile(Settings.LogPath, "AUTH: Client Authenticated as AdminUser for %s@%s", Session->UserName,Session->ClientIP); -Authenticate.c: Session->AuthFlags |= FLAG_AUTH_ADMIN; -Authenticate.c: if (Settings.Flags & FLAG_LOG_VERBOSE) LogToFile(Settings.LogPath, "AUTH: Try to authenticate '%s' via '%s'. Remaining authentication types: %s",Session->UserName, Token, ptr); -Authenticate.c: result=AuthNativeCheck(Session,FALSE, &Session->RealUser, &Session->HomeDir, &Session->UserSettings); -Authenticate.c: result=AuthNativeCheck(Session,TRUE, &Session->RealUser, &Session->HomeDir, &Session->UserSettings); -Authenticate.c: result=AuthPasswdFile(Session, &Session->RealUser, &Session->HomeDir); -Authenticate.c: result=CheckSSLAuthentication(Session, Session->UserName); -Authenticate.c: result=CheckSSLAuthentication(Session, Session->UserName); -Authenticate.c: result=AuthAccessToken(Session, Session->Password); -Authenticate.c: LogToFile(Settings.LogPath, "AUTH: Client Authenticated with %s for %s@%s", Token, Session->UserName,Session->ClientIP); -Authenticate.c:if (Session->RealUserUID==0) -Authenticate.c: LogToFile(Settings.LogPath, "AUTH: No 'RealUser' for '%s'. Login Denied",Session->UserName); -Authenticate.c:if (! StrValid(Session->HomeDir)) -Authenticate.c: LogToFile(Settings.LogPath, "AUTH: No 'HomeDir' set for '%s'. Login Denied",Session->UserName); -Authenticate.c: LogToFile(Settings.LogPath, "PAM Account invalid for '%s'. Login Denied",Session->UserName); -Authenticate.c: LogToFile(Settings.LogPath, "AUTH: Authentication failed for UserName '%s'. User Unknown. Tried methods: %s ",Session->UserName,AuthenticationsTried); -Authenticate.c: LogToFile(Settings.LogPath, "AUTH: Authentication failed for UserName '%s'. Bad Password/Credentials. Tried methods: %s ",Session->UserName,AuthenticationsTried); -Authenticate.c: Session->UserName=CopyStr(Session->UserName,Possibilities[i]); -Authenticate.c: Session->Password=CopyStr(Session->Password, ""); -Authenticate.c:Session->UserName=CopyStr(Session->UserName,UserName); -Authenticate.c:Session->Password=CopyStr(Session->Password, ""); -Authenticate.c:Destroy(Session->UserName); -Authenticate.c:Destroy(Session->Password); -ChrootHelper.c: SetEnvironmentVariable("REMOTE_USER",Session->UserName); -ChrootHelper.c: SetEnvironmentVariable("REMOTE_HOST",Session->ClientHost); -ChrootHelper.c: SetEnvironmentVariable("REMOTE_ADDR",Session->ClientIP); -ChrootHelper.c: SetEnvironmentVariable("REMOTE_MAC",Session->ClientMAC); -ChrootHelper.c: SetEnvironmentVariable("SERVER_NAME",Session->ServerName); -ChrootHelper.c: Tempstr=FormatStr(Tempstr,"%d",Session->ServerPort); -ChrootHelper.c: Tempstr=FormatStr(Tempstr,"%d",Session->ContentSize); -ChrootHelper.c: Tempstr=CopyStr(Tempstr, Session->ContentType); -ChrootHelper.c: if (StrValid(Session->ContentBoundary)) Tempstr=MCatStr(Tempstr, "; boundary=", Session->ContentBoundary, NULL); -ChrootHelper.c: ptr=strrchr(Session->Path,'/'); -ChrootHelper.c: else ptr=Session->Path; -ChrootHelper.c: SetEnvironmentVariable("QUERY_STRING",Session->Arguments); -ChrootHelper.c: SetEnvironmentVariable("HTTP_USER_AGENT",Session->UserAgent); -ChrootHelper.c: SetEnvironmentVariable("HTTP_REFERER",Session->ClientReferrer); -ChrootHelper.c: SetEnvironmentVariable("HTTP_COOKIE",Session->Cookies); -ChrootHelper.c: SetEnvironmentVariable("HTTP_COOKIES",Session->Cookies); -ChrootHelper.c: SetEnvironmentVariable("REQUEST_METHOD",Session->Method); -ChrootHelper.c: SetEnvironmentVariable("REQUEST_URI",Session->URL); -ChrootHelper.c: if (StrValid(Session->Cipher)) SetEnvironmentVariable("SSL",Session->Cipher); -ChrootHelper.c:ContentLengthStr=FormatStr(ContentLengthStr,"%d",Session->ContentSize); -ChrootHelper.c:Tempstr=MCopyStr(Tempstr,Type," Host='",Session->Host, "' ClientIP='",Session->ClientIP, "' ClientMAC='",Session->ClientMAC,"'",NULL); -ChrootHelper.c:Quoted=QuoteCharsInStr(Quoted,Session->URL,"'&"); -ChrootHelper.c:Tempstr=MCatStr(Tempstr," Method=",Session->Method," UserAgent='",Session->UserAgent,"' ContentLength='",ContentLengthStr,"'",NULL); -ChrootHelper.c:if (StrValid(Session->ContentBoundary)) Tempstr=MCatStr(Tempstr, " ContentType='",Session->ContentType, "; boundary=",Session->ContentBoundary, "'",NULL); -ChrootHelper.c:else Tempstr=MCatStr(Tempstr, " ContentType='",Session->ContentType,"'", NULL); -ChrootHelper.c:Quoted=FormatStr(Quoted,"%d",Session->ServerPort); -ChrootHelper.c:Tempstr=MCatStr(Tempstr," ServerName=",Session->ServerName," ServerPort=",Quoted,NULL); -ChrootHelper.c:if (StrValid(Session->Cipher)) Tempstr=MCatStr(Tempstr," Cipher='",Session->Cipher,"'",NULL); -ChrootHelper.c:if (StrValid(Session->Cookies)) Tempstr=MCatStr(Tempstr," Cookies='",Session->Cookies,"'",NULL); -ChrootHelper.c:Quoted=QuoteCharsInStr(Quoted,Session->HomeDir,"'&"); -ChrootHelper.c:Quoted=QuoteCharsInStr(Quoted,Session->ClientReferrer,"'&"); -ChrootHelper.c:if (Session->Flags & SESSION_KEEPALIVE) Tempstr=CatStr(Tempstr," KeepAlive=Y"); -ChrootHelper.c:if (Session->Flags & SESSION_UPLOAD) Tempstr=CatStr(Tempstr," Upload=Y"); -ChrootHelper.c:if (Session->AuthFlags & FLAG_AUTH_HASCOOKIE) Tempstr=CatStr(Tempstr," AuthCookie=Y"); -ChrootHelper.c:if (Session->CacheTime > 0) -ChrootHelper.c: Quoted=FormatStr(Quoted," Cache=%d",Session->CacheTime); -ChrootHelper.c:if (StrValid(Session->UserName)) Tempstr=MCatStr(Tempstr," User='",Session->UserName,"'",NULL); -ChrootHelper.c:if (StrValid(Session->RealUser)) Tempstr=MCatStr(Tempstr," RealUser='",Session->RealUser,"'",NULL); -ChrootHelper.c:if (StrValid(Session->Group)) Tempstr=MCatStr(Tempstr," Group='",Session->Group,"'",NULL); -ChrootHelper.c:if (StrValid(Session->RemoteAuthenticate)) Tempstr=MCatStr(Tempstr," RemoteAuthenticate='",Session->RemoteAuthenticate,"'",NULL); -ChrootHelper.c:Quoted=QuoteCharsInStr(Quoted,Session->Arguments,"'&"); -ChrootHelper.c:if (strcmp(Session->Method,"POST") ==0) -ChrootHelper.c:if (Session->ContentSize > 0) -ChrootHelper.c: LogToFile(Settings.LogPath,"PUSH POST: [%d]",Session->ContentSize); -ChrootHelper.c: STREAMSendFile(S, ParentProcessPipe, Session->ContentSize, SENDFILE_KERNEL|SENDFILE_LOOP); -ChrootHelper.c: LogToFile(Settings.LogPath,"PUSH POST:DONE [%d]",Session->ContentSize); -ChrootHelper.c: ResponseLine=MCopyStr(ResponseLine, Session->Protocol, " ", ptr, NULL); -ChrootHelper.c:if (KeepAlive) Session->Flags |= SESSION_KEEPALIVE | SESSION_REUSE; -ChrootHelper.c:else Session->Flags &= ~(SESSION_KEEPALIVE | SESSION_REUSE); -ChrootHelper.c: Tempstr=MCopyStr(Tempstr,"REG ",Session->ClientIP,":",FlagChar,"\n",NULL); -ChrootHelper.c: if (Flags & LOGIN_CHANGE) Tempstr=MCopyStr(Tempstr,"REG ",Session->Path,":C\n",NULL); -ChrootHelper.c: ptr=GetNameValuePair(Session->Arguments,"&","=",&Name,&Value); -Events.c:Curr=ListGetNext(Session->Headers); -Events.c: if (StrValid(Session->ResponseCode)) -Events.c: if (strncmp(Token,Session->ResponseCode,3) ==0) -Events.c: *MatchStr=MCatStr(*MatchStr, "Response: ",Session->ResponseCode,", ",NULL); -Events.c: if (strcmp(Token,Session->Method) ==0) -Events.c: *MatchStr=MCatStr(*MatchStr, "Method: ",Session->Method,", ",NULL); -Events.c: if (fnmatch(Token,Session->Path,0) ==0) -Events.c: *MatchStr=MCatStr(*MatchStr, "URL: ",Session->Path,", ",NULL); -Events.c: if (fnmatch(Token,Session->UserName,0) ==0) -Events.c: *MatchStr=MCatStr(*MatchStr, "User: ",Session->UserName,", ",NULL); -Events.c: if (fnmatch(Token,Session->ClientIP,0) ==0) -Events.c: *MatchStr=MCatStr(*MatchStr, "Peer: ",Session->ClientIP,", ",NULL); -Events.c: if (Session->Flags & SESSION_ERR_BADURL) -Events.c: *MatchStr=MCatStr(*MatchStr, "Bad URL: ",Session->Path,", ",NULL); -Events.c: LogToFile(Settings.LogPath, "EVENT TRIGGERED: Source='%s@%s (%s)' REQUEST='%s' TriggeredScript='%s' MatchInfo='%s'",Session->UserName, Session->ClientHost, Session->ClientIP, URL, TriggerScript, ExtraInfo); -Events.c:SetVar(Vars,"URL",Session->URL); -Events.c:SetVar(Vars,"Method",Session->Method); -Events.c:SetVar(Vars,"UserName",Session->UserName); -Events.c:SetVar(Vars,"ClientIP",Session->ClientIP); -Events.c:SetVar(Vars,"UserAgent",Session->UserAgent); -Events.c: Tempstr=MCopyStr(Tempstr,Session->Method," ",Session->URL,NULL); -FileDetailsPage.c: Tempstr=MakeAccessToken(Tempstr, Session->UserName, Salt, Session->ClientIP, URL); -FileDetailsPage.c://Path is the ACTUAL path to the item, not it's VPath or URL. Thus, use Session->URL -FileDetailsPage.c:HTML=MCopyStr(HTML,"\r\nEditing ",Session->URL,"\r\n\r\n
\r\n",NULL); -FileDetailsPage.c:URL=FormatURL(URL, Session, Session->URL); -FileDetailsPage.c:HTML=MCatStr(HTML,"Path",Session->URL,"",NULL); -FileDetailsPage.c:URL=FormatURL(URL,Session,Session->URL); -FileDetailsPage.c:ptr=GetNameValuePair(Session->Arguments,"&","=",&QuotedName,&QuotedValue); -UserAdminScreen.c:ptr=GetNameValuePair(Session->Arguments,"&","=",&QName,&QValue); -VPath.c:ptr=GetNameValuePair(Session->Arguments,"&","=",&Name,&Value); -VPath.c:DocName=VPathSubstituteArgs(DocName, Session->Path + StrLen(VPath->URL), Session); -VPath.c: if (strcmp(Session->Method,"POST")==0) -VPath.c: LogToFile(Settings.LogPath,"%s@%s (%s) uploading to %s in VPATH %s", Session->UserName,Session->ClientHost,Session->ClientIP,DocName,ExternalPath); -VPath.c: LogToFile(Settings.LogPath,"%s@%s (%s) uploading DENIED to %s in VPATH %s", Session->UserName,Session->ClientHost,Session->ClientIP,DocName,ExternalPath); -VPath.c: LogToFile(Settings.LogPath,"%s@%s (%s) asking for external document %s in Search path %s", Session->UserName,Session->ClientHost,Session->ClientIP,DocName,ExternalPath); -VPath.c: LogToFile(Settings.LogPath,"%s@%s (%s) asking for external document %s in Search path %s", Session->UserName,Session->ClientHost,Session->ClientIP,"",VPath->Path); -VPath.c: if (VPath->CacheTime) Session->CacheTime=VPath->CacheTime; -VPath.c: PI=VPathFind(PATHTYPE_NONE, Session->Path); -VPath.c: if (PI->CacheTime) VPathSession->CacheTime=PI->CacheTime; -VPath.c: if (StrValid(PI->User)) VPathSession->RealUser=CopyStr(VPathSession->RealUser, PI->User); -VPath.c: if (StrValid(PI->Group)) VPathSession->Group=CopyStr(VPathSession->Group, PI->Group); -VPath.c: VPathSession->Flags &= ~SESSION_UPLOAD; -VPath.c: if (! (PI->Flags & PATHITEM_READONLY)) VPathSession->Flags |= SESSION_UPLOAD; -VPath.c: LogToFile(Settings.LogPath,"APPLYING VPATH: %d [%s] -> [%s] %d",PI->Type,Session->Path,PI->Path,VPathSession->Flags & SESSION_UPLOAD); -VPath.c: LogToFile(Settings.LogPath,"CGI EXEC REQUEST: Script='%s' Path='%s'",GetBasename(Session->Path), PI->Path); -VPath.c: ChrootProcessRequest(S, VPathSession, "EXEC", GetBasename(VPathSession->Path), PI->Path); -VPath.c: Session->Flags &= ~SESSION_REUSE; -VPath.c: VPathSession->Path=FormatStr(VPathSession->Path,"%d-%d-%d",getpid(),time(NULL),rand()); -VPath.c: Path=MCatStr(Path,"?Logout=",VPathSession->Path,NULL); -VPath.c: VPathSession->Flags &= ~SESSION_KEEPALIVE; -VPath.c: if (StrValid(VPathSession->UserName)) -VPath.c: if (StrValid(PI->Password)) VPathSession->Password=CopyStr(VPathSession->Password, Session->Password); -VPath.c: else VPathSession->Password=CopyStr(VPathSession->Password, Session->Password); -VPath.c: Path=MCopyStr(Path,VPathSession->UserName,":",VPathSession->Password,NULL); -VPath.c: VPathSession->RemoteAuthenticate=MCopyStr(VPathSession->RemoteAuthenticate,"Basic ",Tempstr,NULL); -VPath.c: Path=MCopyStr(Path,PI->Path,VPathSession->Path+StrLen(PI->URL),NULL); -auth_access_token.c: ptr=GetNameValuePair(Session->Arguments,"&","=",&Name,&Value); -auth_access_token.c: Session->Password=CopyStr(Session->Password,Token); -auth_access_token.c:if (strcmp(Session->Method, "PUT")==0) return(FALSE); -auth_access_token.c:if (strcmp(Session->Method, "POST")==0) return(FALSE); -auth_access_token.c://if (! (Session->Flags & FLAG_AUTH_ACCESS_TOKEN)) return(FALSE); -auth_access_token.c:URL=FormatURL(URL,Session,Session->Path); -auth_access_token.c:if (! StrValid(Session->UserName)) Session->UserName=CopyStr(Session->UserName,User); -auth_access_token.c: if (strncmp(Session->ClientIP,"::ffff:",7)==0) ipptr=Session->ClientIP+7; -auth_access_token.c: else ipptr=Session->ClientIP; -auth_access_token.c:Tempstr=CopyStr(Tempstr, Session->Cookies); -auth_access_token.c:Session->Cookies=CopyStr(Session->Cookies, ""); -auth_access_token.c: if (result) Session->AuthFlags |= FLAG_AUTH_HASCOOKIE; -auth_access_token.c:else Session->Cookies=MCatStr(Session->Cookies, Name, "=", Value, "; ", NULL); -auth_access_token.c:AccessToken=MakeAccessToken(AccessToken, Session->UserName, Salt, Session->ClientIP, "*"); -auth_access_token.c:RetStr=MCopyStr(RetStr, "AlayaAccessToken=",AccessToken," domain=",Session->Host, NULL); -auth_alaya_native.c: p_AuthDetails=GetToken(Session->AuthDetails," ",&URI, 0); -auth_alaya_native.c: if (! StrValid(URI)) URI=CopyStr(URI,Session->Path); -auth_alaya_native.c: Tempstr=MCopyStr(Tempstr,Session->UserName,":",Settings.AuthRealm,":",Password,NULL); -auth_alaya_native.c: Tempstr=MCopyStr(Tempstr,Session->Method,":",URI,NULL); -auth_alaya_native.c: if (strcmp(Name,Session->UserName)==0) -auth_alaya_native.c: if (HTTPDigest) RetVal=NativeFileCheckHTTPDigestAuth(Session, PasswordType, Pass, Session->Password); -auth_alaya_native.c: else RetVal=NativeFileCheckPassword(Name, PasswordType,Pass,Session->Password); -auth_alaya_native.c: if ((RetVal==TRUE) && (Settings.Flags & FLAG_LOG_VERBOSE)) LogToFile(Settings.LogPath,"AUTH: UserName '%s' Authenticated via native file: %s.",Session->UserName, Path); -auth_client_certificate.c: LogToFile(Settings.LogPath,"AUTH SSL Certificate Provided by '%s@%s'. Subject=%s Issuer=%s", Session->UserName, Session->ClientIP,STREAMGetValue(S,"SSL-Certificate-Subject"), STREAMGetValue(S,"SSL-Certificate-Issuer")); -auth_client_certificate.c: LogToFile(Settings.LogPath,"AUTH: ERROR: SSL Certificate REQUIRED from client '%s@%s'. Invalid Certificate. Error was: %s", Session->UserName, Session->ClientIP, ptr); -auth_client_certificate.c: else LogToFile(Settings.LogPath,"AUTH: SSL Certificate Optional for client '%s@%s'. Invalid Certificate. Error was: %s", Session->UserName, Session->ClientIP, ptr); -auth_client_certificate.c: else if (Settings.AuthFlags & FLAG_AUTH_CERT_REQUIRED) LogToFile(Settings.LogPath,"AUTH: ERROR: SSL Certificate REQUIRED from client '%s@%s'. Missing Certificate.", Session->UserName, Session->ClientIP); -auth_pam.c: PAMConvStruct.appdata_ptr=(void *)Session->Password; -auth_pam.c: pam_set_item(pamh,PAM_RUSER,Session->UserName); -auth_pam.c: if (StrLen(Session->ClientHost) > 0) pam_set_item(pamh,PAM_RHOST,Session->ClientHost); -auth_pam.c: else if (StrLen(Session->ClientIP) > 0) pam_set_item(pamh,PAM_RHOST,Session->ClientIP); -auth_pam.c:result=PAMStart(Session, Session->UserName); -auth_pam.c: if (Settings.Flags & FLAG_LOG_VERBOSE) LogToFile(Settings.LogPath,"AUTH: UserName '%s' Authenticated via PAM.",Session->UserName); -auth_pam.c: if (! PAMStart(Session, Session->RealUser)) return(FALSE); -auth_unix.c:pass_struct=getpwnam(Session->UserName); -auth_unix.c: StrLen(Session->Password) -auth_unix.c: ptr=crypt(Session->Password,pass_struct->pw_passwd); -auth_unix.c: if (Settings.Flags & FLAG_LOG_VERBOSE) LogToFile(Settings.LogPath,"AUTH: UserName '%s' Authenticated via /etc/passwd.",Session->UserName); -auth_unix.c: if (RealUser) *RealUser=CopyStr(*RealUser,Session->UserName); -auth_unix.c:pass_struct=getspnam(Session->UserName); -auth_unix.c: Digest=CopyStr(Digest, crypt(Session->Password,Salt)); -auth_unix.c: sptr=crypt(Session->Password,pass_struct->sp_pwdp); -auth_unix.c: LogToFile(Settings.LogPath,"AUTH: UserName '%s' Authenticated via /etc/shadow.",Session->UserName); -cgi.c: if (StrValid(Session->Group) && (! SwitchGroup(Session->Group))) -cgi.c: LogToFile(Settings.LogPath,"WARN: Failed to switch to group '%s' to execute script: %s", Session->Group, ScriptPath); -cgi.c: if ((geteuid()==0) && (! SwitchUser(Session->RealUser))) -cgi.c: LogToFile(Settings.LogPath,"ERROR: Failed to switch to user '%s' to execute script: %s", Session->RealUser, ScriptPath); -cgi.c: LogToFile(Settings.LogPath, "Failed to switch user to '%s' for running a .cgi program. Will not run programs as 'root'. Set 'DefaultUser' in config file or command line.", Session->RealUser); -cgi.c: Session->ResponseCode=CopyStr(Session->ResponseCode,"200 OK"); -common.c:Session->Protocol=CopyStr(Session->Protocol,"HTTP/1.1"); -common.c:Session->ServerName=CopyStr(Session->ServerName,""); -common.c:Session->UserAgent=CopyStr(Session->UserAgent,""); -common.c:Session->UserName=CopyStr(Session->UserName,""); -common.c:Session->RealUser=CopyStr(Session->RealUser,""); -common.c:Session->ContentType=CopyStr(Session->ContentType,""); -common.c:Session->Host=CopyStr(Session->Host,""); -common.c:Session->Path=CopyStr(Session->Path,""); -common.c:Session->Arguments=CopyStr(Session->Arguments,""); -common.c:Session->ClientHost=CopyStr(Session->ClientHost,""); -common.c:Session->ClientIP=CopyStr(Session->ClientIP,""); -common.c:Session->ClientMAC=CopyStr(Session->ClientMAC,""); -common.c:Session->ClientReferrer=CopyStr(Session->ClientReferrer,""); -common.c:Session->StartDir=CopyStr(Session->StartDir,""); -common.c:Session->Depth=1; -common.c:Session->CacheTime=Settings.DocumentCacheTime; -common.c:Session->Headers=ListCreate(); -common.c:Session->Flags |= SESSION_UPLOAD; -common.c:Session->Protocol=CopyStr(Session->Protocol, Src->Protocol); -common.c:Session->Method=CopyStr(Session->Method, Src->Method); -common.c:Session->URL=CopyStr(Session->URL, Src->URL); -common.c:Session->ServerName=CopyStr(Session->ServerName, Src->ServerName); -common.c:Session->UserAgent=CopyStr(Session->UserAgent, Src->UserAgent); -common.c:Session->UserName=CopyStr(Session->UserName, Src->UserName); -common.c:Session->RealUser=CopyStr(Session->RealUser, Src->RealUser); -common.c:Session->Group=CopyStr(Session->Group, Src->Group); -common.c:Session->HomeDir=CopyStr(Session->HomeDir, Src->HomeDir); -common.c:Session->RemoteAuthenticate=CopyStr(Session->RemoteAuthenticate, Src->RemoteAuthenticate); -common.c:Session->ContentType=CopyStr(Session->ContentType, Src->ContentType); -common.c:Session->ContentBoundary=CopyStr(Session->ContentBoundary, Src->ContentBoundary); -common.c:Session->Host=CopyStr(Session->Host, Src->Host); -common.c:Session->Path=CopyStr(Session->Path, Src->Path); -common.c:Session->Arguments=CopyStr(Session->Arguments, Src->Arguments); -common.c:Session->ClientHost=CopyStr(Session->ClientHost, Src->ClientHost); -common.c:Session->ClientIP=CopyStr(Session->ClientIP, Src->ClientIP); -common.c:Session->ClientMAC=CopyStr(Session->ClientMAC, Src->ClientMAC); -common.c:Session->ClientReferrer=CopyStr(Session->ClientReferrer, Src->ClientReferrer); -common.c:Session->StartDir=CopyStr(Session->StartDir, Src->StartDir); -common.c:Session->Cookies=CopyStr(Session->Cookies, Src->Cookies); -common.c:Session->Cipher=CopyStr(Session->Cipher, Src->Cipher); -common.c:Session->Depth=Src->Depth; -common.c:Session->ContentSize=Src->ContentSize; -common.c:Session->CacheTime=Src->CacheTime; -common.c:Session->Flags=Src->Flags; -common.c:Session->AuthFlags=Src->AuthFlags; -common.c:Session->Headers=ListCreate(); -common.c:CopyVars(Session->Headers, Src->Headers); -common.c:Session->Protocol=CopyStr(Session->Protocol, Src->Protocol); -common.c:Session->Method=CopyStr(Session->Method, Src->Method); -common.c:Session->URL=CopyStr(Session->URL, Src->URL); -common.c:Session->ServerName=CopyStr(Session->ServerName, Src->ServerName); -common.c:Session->UserAgent=CopyStr(Session->UserAgent, Src->UserAgent); -common.c:Session->UserName=CopyStr(Session->UserName, Src->UserName); -common.c:Session->RealUser=CopyStr(Session->RealUser, Src->RealUser); -common.c:Session->Group=CopyStr(Session->Group, Src->Group); -common.c:Session->RemoteAuthenticate=CopyStr(Session->RemoteAuthenticate, Src->RemoteAuthenticate); -common.c:Session->ContentType=CopyStr(Session->ContentType, Src->ContentType); -common.c:Session->Host=CopyStr(Session->Host, Src->Host); -common.c:Session->Path=CopyStr(Session->Path, Src->Path); -common.c:Session->Arguments=CopyStr(Session->Arguments, Src->Arguments); -common.c:Session->ClientHost=CopyStr(Session->ClientHost, Src->ClientHost); -common.c:Session->ClientIP=CopyStr(Session->ClientIP, Src->ClientIP); -common.c:Session->ClientMAC=CopyStr(Session->ClientMAC, Src->ClientMAC); -common.c:Session->StartDir=CopyStr(Session->StartDir, Src->StartDir); -common.c:Session->Depth=Src->Depth; -common.c:Session->CacheTime=Src->CacheTime; -common.c:Session->Flags=Src->Flags & (SESSION_KEEPALIVE | SESSION_REUSE | SESSION_AUTHENTICATED | SESSION_SSL | SESSION_ICECAST | SESSION_UPLOAD) ; -common.c:Session->AuthFlags=Src->AuthFlags; -common.c:Session->Headers=ListCreate(); -common.c:ptr=GetNameValuePair(Session->Arguments,"&","=",&Name,&Value); -common.c:if (StrValid(Session->Host)) -common.c:if (Settings.Flags & FLAG_SSL) Tempstr=MCopyStr(Buff,"https://",Session->Host,"/",NULL); -common.c:else Tempstr=MCopyStr(Buff,"http://",Session->Host,"/",NULL); -common.c:if (StrValid(Session->StartDir)) sd_ptr=Session->StartDir; -common.c:ptr=GetNameValuePair(Session->Arguments, "&", "=", &Name, &Value); -common.c:len=StrLen(Session->Host); -common.c: ptr=strchr(Session->Host, ':'); -common.c: if (ptr) len=ptr-Session->Host; -common.c:if (strncasecmp(Session->Host,Host,len)==0) return(TRUE); -common.c:if ((access(ToPath,F_OK)==0) && (! (Session->Flags & SESSION_OVERWRITE))) RetVal=EEXIST; -directory_listing.c:Dir=CopyStr(Dir,Session->URL); -directory_listing.c:Tempstr=ParentDirectory(Tempstr, Session->URL); -directory_listing.c: if (strcmp(Path,Session->StartDir)==0) -directory_listing.c:HTML=MCatStr(HTML,"",NULL); -directory_listing.c: HTML=MCatStr(HTML, "URL,"\">\n",NULL); -directory_listing.c: HTML=MCatStr(HTML,"New Folder:
",NULL); -directory_listing.c: HTML=MCatStr(HTML,"",NULL); -directory_listing.c: HTML=MCatStr(HTML,"",NULL); -directory_listing.c: HTML=MCatStr(HTML,"",NULL); -directory_listing.c: HTML=MCopyStr(Buffer, "\r\n/", Session->Host, Session->URL, "\r\n\r\n", NULL); -directory_listing.c: HTML=MCatStr(HTML,"",Session->URL," at ",Session->Host, " ", NULL); -directory_listing.c: if (Settings.Flags & FLAG_SSL) HTML=MCatStr(HTML,"SECURE:",Session->Cipher,"",NULL); -directory_listing.c: HTML=MCatStr(HTML, "User: ", Session->UserName,"
",NULL); -directory_listing.c:Tempstr=CopyStr(Tempstr,Session->URL); -directory_listing.c: HTML=MCatStr(HTML,"URL,"?format=html&all-selected=true\" onclick=\"setCheckboxes(1); return(false);\">all - URL,"\" onclick=\"setCheckboxes(0); return(false);\">none",NULL); -directory_listing.c: AccessToken=MakeAccessToken(AccessToken, Session->UserName, Salt, Session->ClientIP, Files[i]->URL); -directory_listing.c:SetVar(Session->Headers,"Content-disposition",Tempstr); -directory_listing.c:SetVar(Session->Headers,"Content-disposition",Tempstr); -directory_listing.c:if (DirectorySendPackedDirExtractArgs(Session->Arguments, &PackType, &PackList)) -directory_listing.c: Session->Flags &= ~SESSION_REUSE; -directory_listing.c: FileName=MCopyStr(FileName,Session->Host,"-",Session->UserName,"-",ptr,Extn,NULL); -directory_listing.c: Session->Path=CopyStr(Session->Path,Tempstr); -directory_listing.c: ptr=GetNameValuePair(Session->Arguments,"&","=",&Name,&Value); -directory_listing.c: Path=ParentDirectory(Path, Session->URL); -directory_listing.c: LogToFile(Settings.LogPath,"DeleteSelected: [%s]\n",Session->Arguments); -directory_listing.c: ptr=GetNameValuePair(Session->Arguments, "&","=",&Name,&Value); -directory_listing.c:if ((Session->IfModifiedSince > 0) && (Session->LastModified > 0) && (Session->LastModified <= Session->IfModifiedSince)) -directory_listing.c: if (HTTPServerDecideToCompress(Session,NULL)) Session->Flags |= SESSION_ENCODE_GZIP; -directory_listing.c: HTTPServerSendResponse(S, Session, "302", "", Session->URL); -directory_listing.c: HTTPServerSendResponse(S, Session, "302", "", Session->URL); -directory_listing.c: Tempstr=MCopyStr(Tempstr,Session->URL,"?format=edit",NULL); -icecast.c: Session->ResponseCode=CopyStr(Session->ResponseCode,"200 OK"); -icecast.c: Session->ContentType=CopyStr(Session->ContentType,GetVar(Vars,"ContentType")); -icecast.c: Session->LastModified=atoi(GetVar(Vars,"MTime-secs")); -icecast.c: Session->ContentSize=atoi(GetVar(Vars,"FileSize")); -icecast.c: Session->Flags |= SESSION_ICECAST; -icecast.c: Session->Protocol=CopyStr(Session->Protocol,"ICY"); -icecast.c: SetVar(Session->Headers,"icy-metaint",Tempstr); -main.c: Session->StartDir=CopyStr(Session->StartDir,Settings.DefaultDir); -main.c: STREAMSetFlushType(Session->S,FLUSH_FULL,0,4096); -main.c: STREAMSetTimeout(Session->S,Settings.ActivityTimeout); -main.c: STREAMClose(Session->S); -main.c: Session->S=STREAMServerAccept(Serv); -main.c: STREAMSetFlushType(Session->S, FLUSH_FULL,0,0); -main.c: STREAMClose(Session->S); -proxy.c:if (StrValid(Session->Arguments)) Tempstr=MCopyStr(Tempstr,Session->Path,"?",Session->Arguments,NULL); -proxy.c:else Tempstr=CopyStr(Tempstr,Session->Path); -proxy.c:if (Session->MethodID==METHOD_RPOST) -proxy.c: Info->PostContentLength=Session->ContentSize; -proxy.c: if (StrValid(Session->ContentType)) -proxy.c: Info->PostContentType=CopyStr(Info->PostContentType,Session->ContentType); -proxy.c: if (StrValid(Session->ContentBoundary)) Info->PostContentType=MCatStr(Info->PostContentType, "; boundary=", Session->ContentBoundary, NULL); -proxy.c:if (StrValid(Session->RemoteAuthenticate)) -proxy.c: SetVar(Info->CustomSendHeaders,"Authorization",Session->RemoteAuthenticate); -proxy.c:Curr=ListGetNext(Session->Headers); -proxy.c: LogToFile(Settings.LogPath,"PROXY: Connected To %s",Session->Path); -proxy.c: if (Session->ContentSize > 0) -proxy.c: STREAMSendFile(Session->S, TargetS, Session->ContentSize, SENDFILE_LOOP); -proxy.c: STREAMWriteLine("HTTP/1.1 200 OK Connection Established\r\n", Session->S); -proxy.c: STREAMWriteLine(Tempstr, Session->S); -proxy.c: STREAMWriteLine("Connection: close\r\n",Session->S); -proxy.c: STREAMWriteLine("\r\n",Session->S); -proxy.c: HTTPProxyCopyData( Session->S, TargetS); -proxy.c:else HTTPProxySendResponse( Session->S, "HTTP/1.1 502 Connection Failed\r\n"); -proxy.c: LogToFile(Settings.LogPath,"HTTP CONNECT: [%s]", Session->Path); -proxy.c: Tempstr=MCopyStr(Tempstr, "tcp:", Session->Path); -proxy.c: HTTPProxySendResponse(Session->S, "HTTP/1.1 200 OK Connection Established\r\n"); -proxy.c: HTTPProxyCopyData(Session->S,TargetS); -proxy.c: else HTTPProxySendResponse(Session->S, "HTTP/1.1 502 Connection Failed\r\n"); -proxy.c:else HTTPProxySendResponse(Session->S, "HTTP/1.1 502 Connection Not Permitted\r\n"); -server.c:if (Session->ContentSize > 0) -server.c: *Data=SetStrLen(*Data, Session->ContentSize+10); -server.c: while (bytes_read < Session->ContentSize) -server.c: len=STREAMReadBytes(Session->S, (*Data) + bytes_read, Session->ContentSize-bytes_read); -server.c: Tempstr=STREAMReadLine(Tempstr, Session->S); -server.c: Tempstr=STREAMReadLine(Tempstr, Session->S); -server.c:if (! (Session->Flags & SESSION_ENCODE_GZIP)) return(FALSE); -server.c:if (IsProxyMethod(Session->MethodID)) return(FALSE); -server.c:STREAMSetValue(Session->S,Curr->Tag,(char *) Curr->Item); -server.c:if (DoSSLServerNegotiation(Session->S,Flags)) -server.c: Session->Flags |= HTTP_SSL; -server.c:LogToFile(Settings.LogPath,"ERROR: SSL negotiation failed with %s %s. Error was %s", Session->ClientHost, Session->ClientIP,STREAMGetValue(Session->S,"SSL-Error")); -server.c:ptr=GetToken(Data,";",&Session->ContentType,0); -server.c: if (strcmp(Name,"boundary")==0) Session->ContentBoundary=CopyStr(Session->ContentBoundary,Value); -server.c:GetSockDetails(S->in_fd,&Session->ServerName,&Session->ServerPort,&Session->ClientIP,&val); -server.c:GetHostARP(Session->ClientIP, &Token, &Session->ClientMAC); -server.c:if ((Settings.Flags & FLAG_LOOKUP_CLIENT) && StrValid(Session->ClientIP)) Session->ClientHost=CopyStr(Session->ClientHost,IPStrToHostName(Session->ClientIP)); -server.c:Token=MCopyStr(Token, "NEW REQUEST: ", Session->ClientHost," (", Session->ClientIP,") ", Command, NULL); -server.c: Session->Cipher=CopyStr(Session->Cipher,STREAMGetValue(S,"SSL-Cipher")); -server.c: Token=MCatStr(Token," SSL-CIPHER=", Session->Cipher, NULL); -server.c: Session->UserName=CopyStr(Session->UserName,STREAMGetValue(Session->S,"SSL-Certificate-CommonName")); -server.c: if (StrValid(Session->UserName)) Session->AuthFlags |= FLAG_AUTH_PRESENT; -server.c:ptr=GetToken(Command,"\\S",&Session->Method,0); -server.c:Session->MethodID=MatchTokenFromList(Session->Method,HTTPMethods,0); -server.c:ptr=GetToken(ptr,"\\S",&Session->Protocol,0); -server.c:if (! StrValid(Session->Protocol)) Session->Protocol=CopyStr(Session->Protocol,"HTTP/1.0"); -server.c:// Session->Arguments=HTTPUnQuote(Session->Arguments,tmp_ptr); -server.c: Session->Arguments=CopyStr(Session->Arguments,tmp_ptr); -server.c:Session->OriginalURL=CopyStr(Session->OriginalURL,Token); -server.c:if (! StrValid(Session->OriginalURL)) Session->OriginalURL=CopyStr(Session->OriginalURL,"/"); -server.c: (strncasecmp(Session->OriginalURL,"http:",5)==0) || -server.c: (strncasecmp(Session->OriginalURL,"https:",6)==0) -server.c: if (Session->MethodID==METHOD_GET) -server.c: Session->Method=CopyStr(Session->Method,"RGET"); -server.c: Session->MethodID=METHOD_RGET; -server.c: if (Session->MethodID==METHOD_POST) -server.c: Session->Method=CopyStr(Session->Method,"RPOST"); -server.c: Session->MethodID=METHOD_RPOST; -server.c:Tempstr=STREAMReadLine(Tempstr, Session->S); -server.c:HTTPServerParseCommand(Session, Session->S, Tempstr); -server.c:Tempstr=STREAMReadLine(Tempstr, Session->S); -server.c: ListAddNamedItem(Session->Headers,Token,CopyStr(NULL,ptr)); -server.c: if (IsProxyMethod(Session->MethodID)) -server.c: Session->AuthFlags |= FLAG_AUTH_PRESENT; -server.c: if (IsProxyMethod(Session->MethodID)) -server.c: Session->RemoteAuthenticate=CopyStr(Session->RemoteAuthenticate,ptr); -server.c: if (! StrValid(Session->UserName)) -server.c: Session->AuthFlags |= FLAG_AUTH_PRESENT; -server.c: Session->Host=CopyStr(Session->Host,ptr); -server.c: ptr=strchr(Session->Host,':'); -server.c: Session->Host=CatStr(Session->Host,Token); -server.c: Session->Destination=HTTPUnQuote(Session->Destination,ptr); -server.c: Session->ContentSize=atoi(ptr); -server.c: if (strcasecmp(ptr,"infinity")==0) Session->Depth=INT_MAX; -server.c: else Session->Depth=atoi(ptr); -server.c: if (*ptr=='T') Session->Flags |= SESSION_OVERWRITE; -server.c: if ((Settings.Flags & FLAG_KEEPALIVES) && (strcasecmp(ptr,"Keep-Alive")==0)) Session->Flags |= SESSION_KEEPALIVE; -server.c: Session->UserAgent=CopyStr(Session->UserAgent,ptr); -server.c: if (fnmatch(Curr->Tag, Session->UserAgent,0)==0) -server.c: if (StrValid(Session->Cookies)) Session->Cookies=MCopyStr(Session->Cookies,"; ",ptr,NULL); -server.c: else Session->Cookies=CopyStr(Session->Cookies,ptr); -server.c: Session->AuthFlags |= FLAG_AUTH_PRESENT; -server.c: Session->ClientReferrer=CopyStr(Session->ClientReferrer,ptr); -server.c: if (strcmp(Token,"gzip")==0) Session->Flags|=SESSION_ENCODE_GZIP; -server.c: if (strcmp(Token,"x-gzip")==0) Session->Flags|=SESSION_ENCODE_GZIP | SESSION_ENCODE_XGZIP; -server.c: if (atoi(ptr)) Session->Flags |= SESSION_ICECAST; -server.c: Session->IfModifiedSince=DateStrToSecs("%a, %d %b %Y %H:%M:%S %Z",ptr,NULL); -server.c: else if (strcasecmp(ptr,"websocket")==0) Session->MethodID = METHOD_WEBSOCKET; -server.c: Session->ContentBoundary=CopyStr(Session->ContentBoundary, ptr); -server.c: Session->ContentBoundary=CopyStr(Session->ContentBoundary, ptr); -server.c: if (Session->MethodID==METHOD_WEBSOCKET) Session->MethodID = METHOD_WEBSOCKET75; -server.c: Session->ContentType=CopyStr(Session->ContentType, ptr); -server.c: if (Session->MethodID==METHOD_WEBSOCKET) Session->MethodID = METHOD_WEBSOCKET75; -server.c: Session->ContentType=CopyStr(Session->ContentType, ptr); -server.c:Tempstr=STREAMReadLine(Tempstr, Session->S); -server.c:if (strstr(Session->Arguments,"AccessToken")) Session->AuthFlags |= FLAG_AUTH_PRESENT | FLAG_AUTH_ACCESS_TOKEN; -server.c:Session->URL=HTTPUnQuote(Session->URL, Session->OriginalURL); -server.c:if (*Session->URL=='/') Session->Path=CopyStr(Session->Path, Session->URL); -server.c:else Session->Path=MCopyStr(Session->Path,"/", Session->URL,NULL); -server.c:Tempstr=MCopyStr(Tempstr, Session->Protocol," ", Session->ResponseCode,"\r\n",NULL); -server.c:if (Session->LastModified > 0) HTTPServerSendHeader(S,"Last-Modified",GetDateStrFromSecs("%a, %d %b %Y %H:%M:%S %Z", Session->LastModified,NULL)); -server.c: if (IsProxyMethod(Session->MethodID) ) AuthType=CopyStr(AuthType, "Proxy-Authenticate"); -server.c:Curr=ListGetNext(Session->Headers); -server.c:if (Session->MethodID==METHOD_WEBSOCKET) -server.c: Tempstr=FormatStr(Tempstr,"max-age=%d", Session->CacheTime); -server.c: HTTPServerSendHeader(S,"Expires",GetDateStrFromSecs("%a, %d %b %Y %H:%M:%S %Z",time(NULL) + Session->CacheTime,NULL)); -server.c: if ((! Session->Flags & HTTP_SSL) && SSLAvailable()) -server.c: if ((Session->Flags & SESSION_KEEPALIVE) && (Flags & HEADERS_KEEPALIVE)) -server.c: Session->Flags |= SESSION_REUSE; -server.c: Session->Flags &= ~SESSION_REUSE; -server.c: if ((Settings.AuthFlags & FLAG_AUTH_COOKIE) && (Session->Flags & SESSION_AUTHENTICATED) && (! (Session->AuthFlags & FLAG_AUTH_HASCOOKIE))) -server.c: if (StrValid(Session->UserName)) -server.c: if (StrValid(Session->ContentType)) HTTPServerSendHeader(S,"Content-Type", Session->ContentType); -server.c: if ((Session->Flags & SESSION_REUSE) || (Session->ContentSize > 0)) -server.c: Tempstr=FormatStr(Tempstr,"%d", Session->ContentSize); -server.c: if (Session->Flags & SESSION_ENCODE_XGZIP) HTTPServerSendHeader(S,"Content-Encoding","x-gzip"); -server.c: else if (Session->Flags & SESSION_ENCODE_GZIP) HTTPServerSendHeader(S,"Content-Encoding", "gzip"); -server.c:LogToFile(Settings.LogPath,"RESPONSE: '%s' to %s@%s for '%s %s'",ResponseLine, Session->UserName, Session->ClientIP, Session->Method, Session->Path); -server.c: Response->MethodID=Session->MethodID; -server.c: Response->LastModified=Session->LastModified; -server.c: Response->Flags |= Session->Flags & (SESSION_KEEPALIVE | SESSION_AUTHENTICATED); -server.c: Response->ClientIP=CopyStr(Response->ClientIP, Session->ClientIP); -server.c: Response->Path=CopyStr(Response->Path, Session->Path); -server.c: Response->Method=CopyStr(Response->Method, Session->Method); -server.c: Response->URL=CopyStr(Response->URL, Session->URL); -server.c: Response->UserName=CopyStr(Response->UserName, Session->UserName); -server.c://if (Response->Flags & SESSION_REUSE) Session->Flags |= SESSION_REUSE; -server.c://else Session->Flags &= ~SESSION_REUSE; -server.c: Session->ResponseCode=CopyStr(Session->ResponseCode,"200 OK"); -server.c: Session->ContentType=CopyStr(Session->ContentType,GetVar(Vars,"ContentType")); -server.c: Session->LastModified=atoi(GetVar(Vars,"MTime-secs")); -server.c: Session->ContentSize=atoi(GetVar(Vars,"FileSize")); -server.c: Session->ContentSize=0; -server.c: Session->Flags |= SESSION_ENCODE_GZIP; -server.c: SetVar(Session->Headers,Tempstr,Curr->Item); -server.c: LogToFile(Settings.LogPath,"%s@%s (%s) downloading %s (%s bytes)", Session->UserName, Session->ClientHost, Session->ClientIP,Path,GetVar(Vars,"FileSize")); -server.c:// if (Session->Flags & SESSION_ICECAST) IcecastSendData(Doc, S); -server.c: if (Response->Flags & SESSION_REUSE) Session->Flags |= SESSION_REUSE; -server.c: else Session->Flags &= ~SESSION_REUSE; -server.c: PI=VPathFind(PATHTYPE_FILETYPE, Session->Path); -server.c: if (PI->Flags & PATHITEM_COMPRESS) Session->Flags |= FLAG_COMPRESS; -server.c: if (PI->Flags & PATHITEM_NO_COMPRESS) Session->Flags &= ~FLAG_COMPRESS; -server.c: if (PI->CacheTime > 0) Session->CacheTime=PI->CacheTime; -server.c: Session->LastModified=atoi(GetVar(Vars,"MTime-secs")); -server.c: if ((result & FILE_DIR) || (strstr(Session->Arguments,"format="))) -server.c: LogToFile(Settings.LogPath, "Directory Send: path=%s args=%s", Path, Session->Arguments); -server.c: LogToFile(Settings.LogPath,"HANDLE POST: %s", Session->ContentType); -server.c: if (strcmp(Session->ContentType,"application/x-www-form-urlencoded")==0) HTTPServerReadBody(Session, &Session->Arguments); -server.c: else if (strncmp(Session->ContentType,"multipart/",10)==0) UploadMultipartPost(S, Session); -server.c: HTTPServerSendResponse(S, Session, "302", "", Session->URL); -server.c:LogToFile(Settings.LogPath,"%s@%s (%s) DeleteCollection: %s", Session->UserName, Session->ClientHost, Session->ClientIP,Path); -server.c: if (Settings.Flags & FLAG_LOG_VERBOSE) LogToFile(Settings.LogPath,"%s@%s (%s) DeleteSubItem: %s", Session->UserName, Session->ClientHost, Session->ClientIP,myGlob.gl_pathv[i]); -server.c:Session->StartDir=CopyStr(Session->StartDir,Settings.DefaultDir); -server.c:if (IsProxyMethod(Session->MethodID)) -server.c: if (Settings.Flags & FLAG_CHHOME) ChrootDir=CopyStr(ChrootDir, Session->HomeDir); -server.c: LogToFile(Settings.LogPath,"ChRoot to: %s home=%s",ChrootDir, Session->HomeDir); -server.c: HTTPServerSendHTML(Session->S, Session, "500 Internal Server Error","Problem switching to home-directory"); -server.c: Session->StartDir=CopyStr(Session->StartDir,ChrootDir); -server.c: Session->StartDir=CopyStr(Session->StartDir,"/"); -server.c: if (strncmp(Session->StartDir,Settings.DefaultDir,StrLen(Settings.DefaultDir))==0) -server.c: Tempstr=MCopyStr(Tempstr,"/", Session->StartDir+StrLen(Settings.DefaultDir),NULL); -server.c: Session->StartDir=CopyStr(Session->StartDir,Tempstr); -server.c:Session->StartDir=SlashTerminateDirectoryPath(Session->StartDir); -server.c:LogToFile(Settings.LogPath,"User Context: Chroot: %s, StartDir: %s, HomeDir: %s, UserID: %d, GroupID: %d,",ChrootDir, Session->StartDir, Session->HomeDir, Session->RealUserUID, Session->GroupID); -server.c:if (Session->GroupID > 0) -server.c: if (setgid(Session->GroupID) != 0) -server.c: HTTPServerSendHTML(Session->S, Session, "500 Internal Server Error","Problem switching to configured user-group"); -server.c: LogToFile(Settings.LogPath,"ERROR: Failed to switch group to %s/%d. Exiting", Session->RealUser, Session->RealUserUID); -server.c: HTTPServerSendHTML(Session->S, Session, "500 Internal Server Error","Problem switching to configured user-group"); -server.c: LogToFile(Settings.LogPath,"ERROR: Failed to switch group to %s/%d. Exiting", Session->RealUser, Session->RealUserUID); -server.c: if (setresuid(Session->RealUserUID, Session->RealUserUID, Session->RealUserUID)!=0) -server.c: HTTPServerSendHTML(Session->S, Session, "500 Internal Server Error","Problem switching to configured user"); -server.c: LogToFile(Settings.LogPath,"ERROR: Failed to switch user to %s/%d. Exiting", Session->RealUser, Session->RealUserUID); -server.c:if (strcmp(Token, Session->Method)==0) -server.c: LogToFile(Settings.LogPath,"AUTH: Forcing Relogin for %s@%s (%s) %s %s", Session->ClientIP, Session->ClientHost, Session->ClientIP, Session->Method, Session->Path); -server.c: if (Session->Flags & SESSION_AUTHENTICATED) -server.c: if (strcmp(Session->UserName, Session->AuthenticatedUser)==0) -server.c: LogToFile(Settings.LogPath,"AUTH: Session Keep-Alive active, reusing authentication for %s@%s (%s) %s %s", Session->ClientIP, Session->ClientHost, Session->ClientIP, Session->Method, Session->Path); -server.c: else LogToFile(Settings.LogPath,"AUTH: ERROR: Session Keep-Alive active, but user has changed to %s@%s (%s) %s %s. Refusing authentication", Session->ClientIP, Session->ClientHost, Session->ClientIP, Session->Method, Session->Path); -server.c: VPath=VPathFind(PATHTYPE_LOCAL, Session->Path); -server.c: if (VPath && (VPath->Flags & PATHITEM_NOAUTH)) Session->Flags |= SESSION_AUTHENTICATED; -server.c: if ((! (Session->Flags & SESSION_AUTHENTICATED)) && (Session->AuthFlags & FLAG_AUTH_ACCESS_TOKEN)) ParseAccessToken(Session); -server.c: if (Session->AuthFlags & FLAG_AUTH_PRESENT) -server.c: if ((Authenticate(Session)==TRUE) && StrValid(Session->UserName)) result=TRUE; -server.c: if (StrValid(Session->UserSettings)) ParseConfigItemList(Session->UserSettings); -server.c: if (! auth_client_certificate(Session, Session->S)) result=FALSE; -server.c: Session->AuthenticatedUser=CopyStr(Session->AuthenticatedUser, Session->UserName); -server.c: Session->Flags |= SESSION_AUTHENTICATED; -server.c: ptr=GetNameValuePair(Session->Arguments,"&","=",&QName,&QValue); -server.c: Session->LastModified=0; -server.c: Session->LastModified=0; -server.c: Session->LastModified=0; -server.c: Session->LastModified=0; -server.c: Session->LastModified=0; -server.c: Session->LastModified=0; -server.c: Session->LastModified=0; -server.c: Session->LastModified=0; -server.c: if (strstr(Session->OriginalURL,*Token)) -server.c: Session->Flags |= SESSION_ERR_BADURL; -server.c: LogToFile(Settings.LogPath,"ERROR: INVALID URL: %s", Session->URL); -server.c: ptr=Session->StartDir; -server.c: if (strcmp(ptr,"/")==0) Path=CopyStr(Path, Session->Path); -server.c: else Path=MCopyStr(Path,ptr, Session->Path,NULL); -server.c:if (FDSelect(Session->S->in_fd, SELECT_READ, NULL) > 0) -server.c: recv(Session->S->in_fd, &byte, 1, MSG_PEEK); -server.c:if (Settings.Flags & FLAG_LOG_MORE_VERBOSE) LogToFile(Settings.LogPath,"PREAUTH: %s against %s %s\n", Session->UserName,Settings.AuthPath,Settings.AuthMethods); -server.c: LogToFile(Settings.LogPath,"AUTHENTICATED: %s@%s for '%s %s' against %s %s\n", Session->UserName, Session->ClientIP, Session->Method, Session->Path,Settings.AuthPath,Settings.AuthMethods); -server.c: if (IsProxyMethod(Session->MethodID)) HTTPServerSendHTML(Session->S, Session, "407 UNAUTHORIZED","Proxy server requires authentication."); -server.c: else HTTPServerSendHTML(Session->S, Session, "401 UNAUTHORIZED","Server requires authentication."); -server.c: if (Session->AuthFlags & FLAG_AUTH_PRESENT) LogToFile(Settings.LogPath,"AUTHENTICATE FAIL: %s@%s for '%s %s' against %s %s\n", Session->UserName, Session->ClientIP, Session->Method, Session->Path,Settings.AuthPath,Settings.AuthMethods); -server.c:if (! HTTPMethodAllowed(Session)) HTTPServerSendHTML(Session->S, Session, "503 Not implemented","HTTP method disallowed or not implemented."); -server.c: HTTPServerSendHTML(Session->S, Session, "403 Forbidden","Bad pattern found in URL"); -server.c: LogToFile(Settings.LogPath,"ERROR: Bad pattern '%s' found in URL '%s' from %s@%s (%s)", Tempstr, Session->URL, Session->UserName, Session->ClientHost, Session->ClientIP); -server.c:if (! (Session->Flags & SESSION_REUSE)) HTTPServerSetUserContext(Session); -server.c:if (Session->Flags & SESSION_KEEPALIVE) Session->Flags |= SESSION_REUSE; -server.c:switch (Session->MethodID) -server.c: if (! VPathProcess(Session->S, Session, HEADERS_SENDFILE|HEADERS_USECACHE|HEADERS_KEEPALIVE)) HTTPServerHandlePost(Session->S, Session); -server.c: result=HTTPServerProcessActions(Session->S, Session); -server.c: if (! result) HTTPServerFindAndSendDocument(Session->S, Session, HEADERS_SENDFILE|HEADERS_USECACHE|HEADERS_KEEPALIVE); -server.c: HTTPServerFindAndSendDocument(Session->S, Session,HEADERS_KEEPALIVE); -server.c: HTTPServerRecieveURL(Session->S, Session); -server.c: HTTPServerMkDir(Session->S, Session, DIRTYPE_NORMAL); -server.c: HTTPServerDelete(Session->S, Session); -server.c: HTTPServerMove(Session->S, Session); -server.c: HTTPServerCopy(Session->S, Session); -server.c: HTTPServerPropFind(Session->S, Session); -server.c: HTTPServerPropPatch(Session->S, Session); -server.c: HTTPServerOptions(Session->S, Session); -server.c: HTTPServerHandleLock(Session->S, Session); -server.c: HTTPServerHandleLock(Session->S, Session); -server.c: HTTPServerMkDir(Session->S, Session, DIRTYPE_CALDAV); -server.c: WebsocketConnect(Session->S, Session); -server.c: Session->Flags &= ~SESSION_REUSE; -server.c: HTTPServerSendHTML(Session->S, Session, "503 Not implemented","HTTP method disallowed or not implemented."); -server.c:LogToFile(Settings.LogPath,"TRANSACTION COMPLETE: %s %s for %s@%s (%s)", Session->Method, Session->Path, Session->UserName, Session->ClientHost, Session->ClientIP); -server.c:STREAMFlush(Session->S); -server.c:if (! (Session->Flags & SESSION_REUSE)) break; -server.c://LogToFile(Settings.LogPath,"REUSE: %s %s for %s@%s (%s)", Session->Method, Session->Path, Session->UserName, Session->ClientHost, Session->ClientIP); -upload.c://if (! (Session->Flags & SESSION_UPLOAD)) return; -upload.c:Boundary=MCopyStr(Boundary,"--",Session->ContentBoundary, NULL); -upload.c:LogToFile(Settings.LogPath,"HANDLE UPLOAD: %s %s %d",Session->URL, Boundary, Session->ContentSize); -upload.c: Tempstr=MCopyStr(Tempstr,Session->Path,"/",FileName,NULL); -upload.c: Session->Arguments=MCatStr(Session->Arguments,"&",QName,"=",QValue,NULL); -upload.c:Session->Arguments=CatStr(Session->Arguments,"&"); -upload.c:Session->ContentSize=StrLen(Session->Arguments); -upload.c:if (Session->ContentSize > 0) Session->ContentType=CopyStr(Session->ContentType,"application/x-www-form-urlencoded"); -upload.c: HTML=MCopyStr(HTML,"\r\nUpload files to: ",Session->URL,"\r\n
URL,"\">\r\n",NULL); -upload.c: HTML=MCatStr(HTML,"

Upload files to: ",Session->URL,"

\r\n",NULL); -websocket.c:v1=htonl(WebsocketProcessKeyPart(Session->ContentBoundary)); -websocket.c:v2=htonl(WebsocketProcessKeyPart(Session->ContentType)); -websocket.c:Helper=CopyStr(Helper, WebsocketFindMatchingHelper(Session->Path, Session->ContentType, &Proto)); -websocket.c: if (Session->MethodID==METHOD_WEBSOCKET75) -websocket.c: Tempstr=MCopyStr(Tempstr, Session->ContentBoundary, WEBSOCKET_GUID, NULL); -websocket.c: if (Session->MethodID==METHOD_WEBSOCKET75) diff --git a/alaya.auth b/alaya.auth deleted file mode 100644 index 4cdd645..0000000 --- a/alaya.auth +++ /dev/null @@ -1 +0,0 @@ -colum:plain:testing:wwwrun:/tmp: diff --git a/alaya.log b/alaya.log deleted file mode 100644 index 9f0a2e1..0000000 --- a/alaya.log +++ /dev/null @@ -1,646 +0,0 @@ -2020/04/06 13:53:15 [8824] user=1000 CONSIDER AUTH METHODS: digest -2020/04/06 13:53:15.421 [8824] Alaya Version 2.3 Starting up on ,:8888 -2020/04/06 13:53:28.947 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:53:28.947 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:53:29.010 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:53:29.011 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:53:37.459 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:53:37.460 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:53:38.932 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:53:38.932 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:53:38.000 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:53:38.000 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:53:39.850 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:53:39.850 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:53:39.106 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:53:39.106 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:53:39.150 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:53:39.150 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:53:39.408 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:53:39.408 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:53:39.460 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:53:39.460 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:53:42.674 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:53:42.674 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:53:44.889 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:53:44.889 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:53:44.913 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:53:44.913 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:53:44.947 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:53:44.947 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:53:44.344 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:53:44.344 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:02.280 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:54:02.280 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:05.904 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:54:05.904 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:05.355 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:54:05.355 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:05.397 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:54:05.397 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:05.656 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:54:05.656 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:05.657 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:54:05.658 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:05.659 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:54:05.659 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:06.529 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:54:06.529 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:07.831 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:54:07.831 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:07.087 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:54:07.087 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:07.315 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:54:07.315 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:07.408 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:54:07.408 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:07.574 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:54:07.574 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:08.915 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:54:08.915 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:05.396 [8849] -2020/04/06 13:54:05.396 [8849] NEW REQUEST: (127.0.0.1) CONNECT cdn.sstatic.net:443 HTTP/1.1 -2020/04/06 13:54:05.396 [8849] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:54:05.396 [8849] << Proxy-Connection: keep-alive -2020/04/06 13:54:05.396 [8849] << Connection: keep-alive -2020/04/06 13:54:05.396 [8849] << Host: cdn.sstatic.net:443 -2020/04/06 13:54:05.396 [8849] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="cdn.sstatic.net:443", response="ca2bf480ec2c26e5f5e30fd890907539", qop=auth, nc=0000018a, cnonce="2701bc56b96c83ab" -2020/04/06 13:54:05.396 [8849] AUTH: method 'digest' -2020/04/06 13:54:05.397 [8849] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:54:05.397 [8849] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:54:05.397 [8849] NFCH: [CONNECT] [cdn.sstatic.net:443] [cdn.sstatic.net:443 25cd0600:0000018a:2701bc56b96c83ab:auth] [plain] [testing] [ca2bf480ec2c26e5f5e30fd890907539] [ca2bf480ec2c26e5f5e30fd890907539] 134829071 -2020/04/06 13:54:05.397 [8849] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:54:05.397 [8849] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:54:05.397 [8849] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /cdn.sstatic.net:443' against ./alaya.auth digest -2020/04/06 13:54:05.397 [8849] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:54:05.397 [8849] HTTP CONNECT: [cdn.sstatic.net:443] -2020/04/06 13:54:10.475 [8849] PROXY: -2020/04/06 13:54:10.648 [8849] TRANSACTION COMPLETE: CONNECT cdn.sstatic.net:443 for colum@ (127.0.0.1) -2020/04/06 13:54:05.659 [8850] -2020/04/06 13:54:05.659 [8850] NEW REQUEST: (127.0.0.1) CONNECT i.stack.imgur.com:443 HTTP/1.1 -2020/04/06 13:54:05.659 [8850] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:54:05.659 [8850] << Proxy-Connection: keep-alive -2020/04/06 13:54:05.659 [8850] << Connection: keep-alive -2020/04/06 13:54:05.659 [8850] << Host: i.stack.imgur.com:443 -2020/04/06 13:54:05.659 [8850] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="i.stack.imgur.com:443", response="8df01c904733cc182dd3210a375f1d00", qop=auth, nc=00000188, cnonce="b7a9604a4b035169" -2020/04/06 13:54:05.659 [8850] AUTH: method 'digest' -2020/04/06 13:54:05.659 [8850] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:54:05.659 [8850] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:54:05.659 [8850] NFCH: [CONNECT] [i.stack.imgur.com:443] [i.stack.imgur.com:443 25cd0600:00000188:b7a9604a4b035169:auth] [plain] [testing] [8df01c904733cc182dd3210a375f1d00] [8df01c904733cc182dd3210a375f1d00] 134829071 -2020/04/06 13:54:05.659 [8850] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:54:05.659 [8850] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:54:05.659 [8850] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /i.stack.imgur.com:443' against ./alaya.auth digest -2020/04/06 13:54:05.659 [8850] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:54:05.659 [8850] HTTP CONNECT: [i.stack.imgur.com:443] -2020/04/06 13:54:11.804 [8850] PROXY: -2020/04/06 13:54:11.918 [8850] TRANSACTION COMPLETE: CONNECT i.stack.imgur.com:443 for colum@ (127.0.0.1) -2020/04/06 13:54:09.820 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:54:09.820 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:07.315 [8856] -2020/04/06 13:54:07.315 [8856] NEW REQUEST: (127.0.0.1) CONNECT pixel.quantserve.com:443 HTTP/1.1 -2020/04/06 13:54:07.315 [8856] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:54:07.315 [8856] << Proxy-Connection: keep-alive -2020/04/06 13:54:07.315 [8856] << Connection: keep-alive -2020/04/06 13:54:07.315 [8856] << Host: pixel.quantserve.com:443 -2020/04/06 13:54:07.315 [8856] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="pixel.quantserve.com:443", response="c612f439e0b32b7c429eda07f2374bad", qop=auth, nc=0000019e, cnonce="2776c196493ae15d" -2020/04/06 13:54:07.315 [8856] AUTH: method 'digest' -2020/04/06 13:54:07.315 [8856] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:54:07.315 [8856] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:54:07.315 [8856] NFCH: [CONNECT] [pixel.quantserve.com:443] [pixel.quantserve.com:443 25cd0600:0000019e:2776c196493ae15d:auth] [plain] [testing] [c612f439e0b32b7c429eda07f2374bad] [c612f439e0b32b7c429eda07f2374bad] 134829071 -2020/04/06 13:54:07.315 [8856] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:54:07.315 [8856] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:54:07.316 [8856] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /pixel.quantserve.com:443' against ./alaya.auth digest -2020/04/06 13:54:07.316 [8856] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:54:07.316 [8856] HTTP CONNECT: [pixel.quantserve.com:443] -2020/04/06 13:54:07.416 [8856] PROXY: -2020/04/06 13:55:08.851 [8856] TRANSACTION COMPLETE: CONNECT pixel.quantserve.com:443 for colum@ (127.0.0.1) -2020/04/06 13:54:07.408 [8857] -2020/04/06 13:54:07.408 [8857] NEW REQUEST: (127.0.0.1) CONNECT qa.sockets.stackexchange.com:443 HTTP/1.1 -2020/04/06 13:54:07.408 [8857] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:54:07.408 [8857] << Proxy-Connection: keep-alive -2020/04/06 13:54:07.408 [8857] << Connection: keep-alive -2020/04/06 13:54:07.408 [8857] << Host: qa.sockets.stackexchange.com:443 -2020/04/06 13:54:07.408 [8857] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="qa.sockets.stackexchange.com:443", response="00db45088b39bfb735db022cee65811f", qop=auth, nc=0000019f, cnonce="cb302dc500853641" -2020/04/06 13:54:07.408 [8857] AUTH: method 'digest' -2020/04/06 13:54:07.408 [8857] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:54:07.408 [8857] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:54:07.408 [8857] NFCH: [CONNECT] [qa.sockets.stackexchange.com:443] [qa.sockets.stackexchange.com:443 25cd0600:0000019f:cb302dc500853641:auth] [plain] [testing] [00db45088b39bfb735db022cee65811f] [00db45088b39bfb735db022cee65811f] 134829071 -2020/04/06 13:54:07.408 [8857] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:54:07.408 [8857] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:54:07.408 [8857] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /qa.sockets.stackexchange.com:443' against ./alaya.auth digest -2020/04/06 13:54:07.408 [8857] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:54:07.408 [8857] HTTP CONNECT: [qa.sockets.stackexchange.com:443] -2020/04/06 13:54:07.593 [8857] PROXY: -2020/04/06 13:55:34.890 [8857] TRANSACTION COMPLETE: CONNECT qa.sockets.stackexchange.com:443 for colum@ (127.0.0.1) -2020/04/06 13:54:11.966 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:54:11.966 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:55:53.912 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:55:53.913 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:55:54.179 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:55:54.180 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:55:54.502 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:55:54.502 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:55:55.937 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:55:55.937 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:55:55.304 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:55:55.305 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:55:55.314 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:55:55.314 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:55:55.394 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:55:55.394 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:55:55.405 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:55:55.405 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:55:55.405 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:55:55.406 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:55:55.694 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:55:55.694 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:55:56.788 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:55:56.789 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:55:55.405 [8874] -2020/04/06 13:55:55.405 [8874] NEW REQUEST: (127.0.0.1) CONNECT fonts.gstatic.com:443 HTTP/1.1 -2020/04/06 13:55:55.405 [8874] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:55:55.405 [8874] << Proxy-Connection: keep-alive -2020/04/06 13:55:55.405 [8874] << Connection: keep-alive -2020/04/06 13:55:55.405 [8874] << Host: fonts.gstatic.com:443 -2020/04/06 13:55:55.405 [8874] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="fonts.gstatic.com:443", response="86459d904cba9fea8d305235ee28a376", qop=auth, nc=000001fd, cnonce="b0819c07a28a4cc1" -2020/04/06 13:55:55.405 [8874] AUTH: method 'digest' -2020/04/06 13:55:55.405 [8874] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:55:55.406 [8874] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:55:55.406 [8874] NFCH: [CONNECT] [fonts.gstatic.com:443] [fonts.gstatic.com:443 25cd0600:000001fd:b0819c07a28a4cc1:auth] [plain] [testing] [86459d904cba9fea8d305235ee28a376] [86459d904cba9fea8d305235ee28a376] 134829071 -2020/04/06 13:55:55.406 [8874] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:55:55.406 [8874] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:55:55.406 [8874] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /fonts.gstatic.com:443' against ./alaya.auth digest -2020/04/06 13:55:55.406 [8874] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:55:55.406 [8874] HTTP CONNECT: [fonts.gstatic.com:443] -2020/04/06 13:56:00.548 [8874] PROXY: -2020/04/06 13:56:00.723 [8874] TRANSACTION COMPLETE: CONNECT fonts.gstatic.com:443 for colum@ (127.0.0.1) -2020/04/06 13:55:56.624 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1: -2020/04/06 13:55:56.625 [8824] HANDLE CHROOT REQUEST: REG 127.0.0.1:I -2020/04/06 13:54:07.831 [8854] -2020/04/06 13:54:07.831 [8854] NEW REQUEST: (127.0.0.1) CONNECT sb.scorecardresearch.com:443 HTTP/1.1 -2020/04/06 13:54:07.831 [8854] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:54:07.831 [8854] << Proxy-Connection: keep-alive -2020/04/06 13:54:07.831 [8854] << Connection: keep-alive -2020/04/06 13:54:07.831 [8854] << Host: sb.scorecardresearch.com:443 -2020/04/06 13:54:07.831 [8854] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="sb.scorecardresearch.com:443", response="9638ae7607fc78d8d4a6583ede4a48ac", qop=auth, nc=00000195, cnonce="0be20898b35aee43" -2020/04/06 13:54:07.831 [8854] AUTH: method 'digest' -2020/04/06 13:54:07.831 [8854] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:54:07.831 [8854] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:54:07.831 [8854] NFCH: [CONNECT] [sb.scorecardresearch.com:443] [sb.scorecardresearch.com:443 25cd0600:00000195:0be20898b35aee43:auth] [plain] [testing] [9638ae7607fc78d8d4a6583ede4a48ac] [9638ae7607fc78d8d4a6583ede4a48ac] 134829071 -2020/04/06 13:54:07.831 [8854] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:54:07.831 [8854] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:54:07.832 [8854] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /sb.scorecardresearch.com:443' against ./alaya.auth digest -2020/04/06 13:54:07.832 [8854] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:54:07.832 [8854] HTTP CONNECT: [sb.scorecardresearch.com:443] -2020/04/06 13:54:07.909 [8854] PROXY: -2020/04/06 13:56:02.646 [8854] TRANSACTION COMPLETE: CONNECT sb.scorecardresearch.com:443 for colum@ (127.0.0.1) -2020/04/06 13:55:55.313 [8872] -2020/04/06 13:55:55.313 [8872] NEW REQUEST: (127.0.0.1) CONNECT digicert.sc.omtrdc.net:443 HTTP/1.1 -2020/04/06 13:55:55.313 [8872] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:55:55.313 [8872] << Proxy-Connection: keep-alive -2020/04/06 13:55:55.313 [8872] << Connection: keep-alive -2020/04/06 13:55:55.314 [8872] << Host: digicert.sc.omtrdc.net:443 -2020/04/06 13:55:55.314 [8872] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="digicert.sc.omtrdc.net:443", response="0a8d5b42e993153a5817818a6925eb7d", qop=auth, nc=000001fb, cnonce="35c0e8b04578eed2" -2020/04/06 13:55:55.314 [8872] AUTH: method 'digest' -2020/04/06 13:55:55.314 [8872] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:55:55.314 [8872] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:55:55.314 [8872] NFCH: [CONNECT] [digicert.sc.omtrdc.net:443] [digicert.sc.omtrdc.net:443 25cd0600:000001fb:35c0e8b04578eed2:auth] [plain] [testing] [0a8d5b42e993153a5817818a6925eb7d] [0a8d5b42e993153a5817818a6925eb7d] 134829071 -2020/04/06 13:55:55.314 [8872] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:55:55.314 [8872] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:55:55.314 [8872] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /digicert.sc.omtrdc.net:443' against ./alaya.auth digest -2020/04/06 13:55:55.314 [8872] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:55:55.314 [8872] HTTP CONNECT: [digicert.sc.omtrdc.net:443] -2020/04/06 13:55:55.594 [8872] PROXY: -2020/04/06 13:56:04.230 [8872] TRANSACTION COMPLETE: CONNECT digicert.sc.omtrdc.net:443 for colum@ (127.0.0.1) -2020/04/06 13:55:55.404 [8875] -2020/04/06 13:55:55.404 [8875] NEW REQUEST: (127.0.0.1) CONNECT fonts.gstatic.com:443 HTTP/1.1 -2020/04/06 13:55:55.404 [8875] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:55:55.404 [8875] << Proxy-Connection: keep-alive -2020/04/06 13:55:55.404 [8875] << Connection: keep-alive -2020/04/06 13:55:55.404 [8875] << Host: fonts.gstatic.com:443 -2020/04/06 13:55:55.405 [8875] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="fonts.gstatic.com:443", response="998b536bf65fb0275c5f0867b38a6f09", qop=auth, nc=000001fe, cnonce="ad795c1a41dd0293" -2020/04/06 13:55:55.405 [8875] AUTH: method 'digest' -2020/04/06 13:55:55.405 [8875] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:55:55.405 [8875] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:55:55.405 [8875] NFCH: [CONNECT] [fonts.gstatic.com:443] [fonts.gstatic.com:443 25cd0600:000001fe:ad795c1a41dd0293:auth] [plain] [testing] [998b536bf65fb0275c5f0867b38a6f09] [998b536bf65fb0275c5f0867b38a6f09] 134829071 -2020/04/06 13:55:55.405 [8875] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:55:55.405 [8875] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:55:55.405 [8875] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /fonts.gstatic.com:443' against ./alaya.auth digest -2020/04/06 13:55:55.405 [8875] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:55:55.406 [8875] HTTP CONNECT: [fonts.gstatic.com:443] -2020/04/06 13:56:05.533 [8875] PROXY: -2020/04/06 13:56:05.533 [8875] TRANSACTION COMPLETE: CONNECT fonts.gstatic.com:443 for colum@ (127.0.0.1) -2020/04/06 13:55:56.788 [8879] -2020/04/06 13:55:56.788 [8879] NEW REQUEST: (127.0.0.1) CONNECT fonts.gstatic.com:443 HTTP/1.1 -2020/04/06 13:55:56.788 [8879] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:55:56.788 [8879] << Proxy-Connection: keep-alive -2020/04/06 13:55:56.788 [8879] << Connection: keep-alive -2020/04/06 13:55:56.788 [8879] << Host: fonts.gstatic.com:443 -2020/04/06 13:55:56.788 [8879] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="fonts.gstatic.com:443", response="ee10dee5641118bd35525e72c6881c49", qop=auth, nc=00000205, cnonce="b14c3276939e12ee" -2020/04/06 13:55:56.788 [8879] AUTH: method 'digest' -2020/04/06 13:55:56.788 [8879] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:55:56.789 [8879] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:55:56.789 [8879] NFCH: [CONNECT] [fonts.gstatic.com:443] [fonts.gstatic.com:443 25cd0600:00000205:b14c3276939e12ee:auth] [plain] [testing] [ee10dee5641118bd35525e72c6881c49] [ee10dee5641118bd35525e72c6881c49] 134829071 -2020/04/06 13:55:56.789 [8879] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:55:56.789 [8879] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:55:56.789 [8879] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /fonts.gstatic.com:443' against ./alaya.auth digest -2020/04/06 13:55:56.789 [8879] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:55:56.789 [8879] HTTP CONNECT: [fonts.gstatic.com:443] -2020/04/06 13:56:06.910 [8879] PROXY: -2020/04/06 13:56:06.910 [8879] TRANSACTION COMPLETE: CONNECT fonts.gstatic.com:443 for colum@ (127.0.0.1) -2020/04/06 13:55:55.304 [8871] -2020/04/06 13:55:55.304 [8871] NEW REQUEST: (127.0.0.1) CONNECT cm.everesttech.net:443 HTTP/1.1 -2020/04/06 13:55:55.304 [8871] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:55:55.304 [8871] << Proxy-Connection: keep-alive -2020/04/06 13:55:55.304 [8871] << Connection: keep-alive -2020/04/06 13:55:55.304 [8871] << Host: cm.everesttech.net:443 -2020/04/06 13:55:55.304 [8871] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="cm.everesttech.net:443", response="2e71ef11c909c01f672d74945a3d0823", qop=auth, nc=000001fa, cnonce="7557e0e40ba87756" -2020/04/06 13:55:55.304 [8871] AUTH: method 'digest' -2020/04/06 13:55:55.304 [8871] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:55:55.304 [8871] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:55:55.305 [8871] NFCH: [CONNECT] [cm.everesttech.net:443] [cm.everesttech.net:443 25cd0600:000001fa:7557e0e40ba87756:auth] [plain] [testing] [2e71ef11c909c01f672d74945a3d0823] [2e71ef11c909c01f672d74945a3d0823] 134829071 -2020/04/06 13:55:55.305 [8871] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:55:55.305 [8871] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:55:55.305 [8871] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /cm.everesttech.net:443' against ./alaya.auth digest -2020/04/06 13:55:55.305 [8871] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:55:55.305 [8871] HTTP CONNECT: [cm.everesttech.net:443] -2020/04/06 13:55:55.423 [8871] PROXY: -2020/04/06 13:56:11.656 [8871] TRANSACTION COMPLETE: CONNECT cm.everesttech.net:443 for colum@ (127.0.0.1) -2020/04/06 13:53:29.010 [8827] -2020/04/06 13:53:29.010 [8827] NEW REQUEST: (127.0.0.1) CONNECT ajax.googleapis.com:443 HTTP/1.1 -2020/04/06 13:53:29.010 [8827] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:53:29.010 [8827] << Proxy-Connection: keep-alive -2020/04/06 13:53:29.010 [8827] << Connection: keep-alive -2020/04/06 13:53:29.010 [8827] << Host: ajax.googleapis.com:443 -2020/04/06 13:53:29.010 [8827] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="ajax.googleapis.com:443", response="5e715d2717de0addbe9b6b171e49e9fa", qop=auth, nc=000000c3, cnonce="701b6ae9d8e51e7b" -2020/04/06 13:53:29.010 [8827] AUTH: method 'digest' -2020/04/06 13:53:29.010 [8827] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:53:29.010 [8827] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:53:29.010 [8827] NFCH: [CONNECT] [ajax.googleapis.com:443] [ajax.googleapis.com:443 25cd0600:000000c3:701b6ae9d8e51e7b:auth] [plain] [testing] [5e715d2717de0addbe9b6b171e49e9fa] [5e715d2717de0addbe9b6b171e49e9fa] 134829071 -2020/04/06 13:53:29.010 [8827] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:53:29.010 [8827] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:53:29.011 [8827] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /ajax.googleapis.com:443' against ./alaya.auth digest -2020/04/06 13:53:29.011 [8827] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:53:29.011 [8827] HTTP CONNECT: [ajax.googleapis.com:443] -2020/04/06 13:53:29.107 [8827] PROXY: -2020/04/06 13:56:29.672 [8827] TRANSACTION COMPLETE: CONNECT ajax.googleapis.com:443 for colum@ (127.0.0.1) -2020/04/06 13:53:28.947 [8826] -2020/04/06 13:53:28.947 [8826] NEW REQUEST: (127.0.0.1) CONNECT freshcode.club:443 HTTP/1.1 -2020/04/06 13:53:28.947 [8826] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:53:28.947 [8826] << Proxy-Connection: keep-alive -2020/04/06 13:53:28.947 [8826] << Connection: keep-alive -2020/04/06 13:53:28.947 [8826] << Host: freshcode.club:443 -2020/04/06 13:53:28.947 [8826] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="freshcode.club:443", response="c83f5314f627a43c0cce8212267fc387", qop=auth, nc=000000c1, cnonce="eb000008d50b9d81" -2020/04/06 13:53:28.947 [8826] AUTH: method 'digest' -2020/04/06 13:53:28.947 [8826] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:53:28.947 [8826] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:53:28.947 [8826] NFCH: [CONNECT] [freshcode.club:443] [freshcode.club:443 25cd0600:000000c1:eb000008d50b9d81:auth] [plain] [testing] [c83f5314f627a43c0cce8212267fc387] [c83f5314f627a43c0cce8212267fc387] 134829071 -2020/04/06 13:53:28.947 [8826] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:53:28.947 [8826] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:53:28.947 [8826] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /freshcode.club:443' against ./alaya.auth digest -2020/04/06 13:53:28.947 [8826] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:53:28.947 [8826] HTTP CONNECT: [freshcode.club:443] -2020/04/06 13:53:28.024 [8826] PROXY: -2020/04/06 13:56:30.677 [8826] TRANSACTION COMPLETE: CONNECT freshcode.club:443 for colum@ (127.0.0.1) -2020/04/06 13:55:54.179 [8868] -2020/04/06 13:55:54.179 [8868] NEW REQUEST: (127.0.0.1) CONNECT assets.adobedtm.com:443 HTTP/1.1 -2020/04/06 13:55:54.179 [8868] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:55:54.179 [8868] << Proxy-Connection: keep-alive -2020/04/06 13:55:54.179 [8868] << Connection: keep-alive -2020/04/06 13:55:54.179 [8868] << Host: assets.adobedtm.com:443 -2020/04/06 13:55:54.179 [8868] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="assets.adobedtm.com:443", response="054a5c1eeaaf0d18429e3d417ee6770d", qop=auth, nc=000001e4, cnonce="8b97d1ccb01eea81" -2020/04/06 13:55:54.179 [8868] AUTH: method 'digest' -2020/04/06 13:55:54.179 [8868] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:55:54.180 [8868] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:55:54.180 [8868] NFCH: [CONNECT] [assets.adobedtm.com:443] [assets.adobedtm.com:443 25cd0600:000001e4:8b97d1ccb01eea81:auth] [plain] [testing] [054a5c1eeaaf0d18429e3d417ee6770d] [054a5c1eeaaf0d18429e3d417ee6770d] 134829071 -2020/04/06 13:55:54.180 [8868] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:55:54.180 [8868] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:55:54.180 [8868] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /assets.adobedtm.com:443' against ./alaya.auth digest -2020/04/06 13:55:54.180 [8868] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:55:54.180 [8868] HTTP CONNECT: [assets.adobedtm.com:443] -2020/04/06 13:55:54.269 [8868] PROXY: -2020/04/06 13:56:34.534 [8868] TRANSACTION COMPLETE: CONNECT assets.adobedtm.com:443 for colum@ (127.0.0.1) -2020/04/06 13:53:38.932 [8832] -2020/04/06 13:53:38.932 [8832] NEW REQUEST: (127.0.0.1) CONNECT id.google.com:443 HTTP/1.1 -2020/04/06 13:53:38.932 [8832] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:53:38.932 [8832] << Proxy-Connection: keep-alive -2020/04/06 13:53:38.932 [8832] << Connection: keep-alive -2020/04/06 13:53:38.932 [8832] << Host: id.google.com:443 -2020/04/06 13:53:38.932 [8832] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="id.google.com:443", response="707ca8097cc013a7123aada7c0e3dd75", qop=auth, nc=000000f8, cnonce="b93c170c864a4ceb" -2020/04/06 13:53:38.932 [8832] AUTH: method 'digest' -2020/04/06 13:53:38.932 [8832] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:53:38.932 [8832] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:53:38.932 [8832] NFCH: [CONNECT] [id.google.com:443] [id.google.com:443 25cd0600:000000f8:b93c170c864a4ceb:auth] [plain] [testing] [707ca8097cc013a7123aada7c0e3dd75] [707ca8097cc013a7123aada7c0e3dd75] 134829071 -2020/04/06 13:53:38.932 [8832] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:53:38.932 [8832] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:53:38.932 [8832] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /id.google.com:443' against ./alaya.auth digest -2020/04/06 13:53:38.932 [8832] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:53:38.932 [8832] HTTP CONNECT: [id.google.com:443] -2020/04/06 13:53:38.085 [8832] PROXY: -2020/04/06 13:56:38.677 [8832] TRANSACTION COMPLETE: CONNECT id.google.com:443 for colum@ (127.0.0.1) -2020/04/06 13:53:39.150 [8837] -2020/04/06 13:53:39.150 [8837] NEW REQUEST: (127.0.0.1) CONNECT clients5.google.com:443 HTTP/1.1 -2020/04/06 13:53:39.150 [8837] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:53:39.150 [8837] << Proxy-Connection: keep-alive -2020/04/06 13:53:39.150 [8837] << Connection: keep-alive -2020/04/06 13:53:39.150 [8837] << Host: clients5.google.com:443 -2020/04/06 13:53:39.150 [8837] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="clients5.google.com:443", response="7f0edb4b36e29e78237d1f696a8e2747", qop=auth, nc=0000010a, cnonce="27bc9e9c8733001c" -2020/04/06 13:53:39.150 [8837] AUTH: method 'digest' -2020/04/06 13:53:39.150 [8837] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:53:39.150 [8837] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:53:39.150 [8837] NFCH: [CONNECT] [clients5.google.com:443] [clients5.google.com:443 25cd0600:0000010a:27bc9e9c8733001c:auth] [plain] [testing] [7f0edb4b36e29e78237d1f696a8e2747] [7f0edb4b36e29e78237d1f696a8e2747] 134829071 -2020/04/06 13:53:39.150 [8837] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:53:39.150 [8837] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:53:39.150 [8837] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /clients5.google.com:443' against ./alaya.auth digest -2020/04/06 13:53:39.150 [8837] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:53:39.150 [8837] HTTP CONNECT: [clients5.google.com:443] -2020/04/06 13:53:39.271 [8837] PROXY: -2020/04/06 13:56:39.678 [8837] TRANSACTION COMPLETE: CONNECT clients5.google.com:443 for colum@ (127.0.0.1) -2020/04/06 13:53:39.460 [8839] -2020/04/06 13:53:39.460 [8839] NEW REQUEST: (127.0.0.1) CONNECT accounts.google.com:443 HTTP/1.1 -2020/04/06 13:53:39.460 [8839] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:53:39.460 [8839] << Proxy-Connection: keep-alive -2020/04/06 13:53:39.460 [8839] << Connection: keep-alive -2020/04/06 13:53:39.460 [8839] << Host: accounts.google.com:443 -2020/04/06 13:53:39.460 [8839] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="accounts.google.com:443", response="d9f0c8871d720f04f5616764362e5b32", qop=auth, nc=0000010d, cnonce="7a2e49e9e1645ccd" -2020/04/06 13:53:39.460 [8839] AUTH: method 'digest' -2020/04/06 13:53:39.460 [8839] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:53:39.460 [8839] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:53:39.460 [8839] NFCH: [CONNECT] [accounts.google.com:443] [accounts.google.com:443 25cd0600:0000010d:7a2e49e9e1645ccd:auth] [plain] [testing] [d9f0c8871d720f04f5616764362e5b32] [d9f0c8871d720f04f5616764362e5b32] 134829071 -2020/04/06 13:53:39.460 [8839] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:53:39.460 [8839] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:53:39.461 [8839] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /accounts.google.com:443' against ./alaya.auth digest -2020/04/06 13:53:39.461 [8839] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:53:39.461 [8839] HTTP CONNECT: [accounts.google.com:443] -2020/04/06 13:53:39.579 [8839] PROXY: -2020/04/06 13:56:40.683 [8839] TRANSACTION COMPLETE: CONNECT accounts.google.com:443 for colum@ (127.0.0.1) -2020/04/06 13:53:38.000 [8833] -2020/04/06 13:53:38.000 [8833] NEW REQUEST: (127.0.0.1) CONNECT lh3.googleusercontent.com:443 HTTP/1.1 -2020/04/06 13:53:38.000 [8833] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:53:38.000 [8833] << Proxy-Connection: keep-alive -2020/04/06 13:53:38.000 [8833] << Connection: keep-alive -2020/04/06 13:53:38.000 [8833] << Host: lh3.googleusercontent.com:443 -2020/04/06 13:53:38.000 [8833] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="lh3.googleusercontent.com:443", response="7dc377acbeceb03d5c04fac17ebcff46", qop=auth, nc=000000f7, cnonce="a87e05924ab355a5" -2020/04/06 13:53:38.000 [8833] AUTH: method 'digest' -2020/04/06 13:53:38.000 [8833] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:53:38.000 [8833] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:53:38.000 [8833] NFCH: [CONNECT] [lh3.googleusercontent.com:443] [lh3.googleusercontent.com:443 25cd0600:000000f7:a87e05924ab355a5:auth] [plain] [testing] [7dc377acbeceb03d5c04fac17ebcff46] [7dc377acbeceb03d5c04fac17ebcff46] 134829071 -2020/04/06 13:53:38.000 [8833] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:53:38.000 [8833] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:53:38.000 [8833] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /lh3.googleusercontent.com:443' against ./alaya.auth digest -2020/04/06 13:53:38.000 [8833] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:53:38.000 [8833] HTTP CONNECT: [lh3.googleusercontent.com:443] -2020/04/06 13:53:38.094 [8833] PROXY: -2020/04/06 13:56:43.692 [8833] TRANSACTION COMPLETE: CONNECT lh3.googleusercontent.com:443 for colum@ (127.0.0.1) -2020/04/06 13:53:44.912 [8842] -2020/04/06 13:53:44.912 [8842] NEW REQUEST: (127.0.0.1) CONNECT apis.google.com:443 HTTP/1.1 -2020/04/06 13:53:44.912 [8842] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:53:44.912 [8842] << Proxy-Connection: keep-alive -2020/04/06 13:53:44.912 [8842] << Connection: keep-alive -2020/04/06 13:53:44.912 [8842] << Host: apis.google.com:443 -2020/04/06 13:53:44.912 [8842] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="apis.google.com:443", response="0a25704c8aab9ed066c9ac5ef4d78c7d", qop=auth, nc=0000011d, cnonce="d915a440e170741b" -2020/04/06 13:53:44.912 [8842] AUTH: method 'digest' -2020/04/06 13:53:44.913 [8842] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:53:44.913 [8842] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:53:44.913 [8842] NFCH: [CONNECT] [apis.google.com:443] [apis.google.com:443 25cd0600:0000011d:d915a440e170741b:auth] [plain] [testing] [0a25704c8aab9ed066c9ac5ef4d78c7d] [0a25704c8aab9ed066c9ac5ef4d78c7d] 134829071 -2020/04/06 13:53:44.913 [8842] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:53:44.913 [8842] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:53:44.913 [8842] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /apis.google.com:443' against ./alaya.auth digest -2020/04/06 13:53:44.913 [8842] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:53:44.913 [8842] HTTP CONNECT: [apis.google.com:443] -2020/04/06 13:53:44.089 [8842] PROXY: -2020/04/06 13:56:44.695 [8842] TRANSACTION COMPLETE: CONNECT apis.google.com:443 for colum@ (127.0.0.1) -2020/04/06 13:55:55.936 [8870] -2020/04/06 13:55:55.936 [8870] NEW REQUEST: (127.0.0.1) CONNECT digicert.demdex.net:443 HTTP/1.1 -2020/04/06 13:55:55.936 [8870] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:55:55.936 [8870] << Proxy-Connection: keep-alive -2020/04/06 13:55:55.936 [8870] << Connection: keep-alive -2020/04/06 13:55:55.936 [8870] << Host: digicert.demdex.net:443 -2020/04/06 13:55:55.936 [8870] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="digicert.demdex.net:443", response="4833e7a07132e872c7dc4c61dd45f02b", qop=auth, nc=000001f9, cnonce="cc689c8412beba41" -2020/04/06 13:55:55.936 [8870] AUTH: method 'digest' -2020/04/06 13:55:55.936 [8870] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:55:55.937 [8870] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:55:55.937 [8870] NFCH: [CONNECT] [digicert.demdex.net:443] [digicert.demdex.net:443 25cd0600:000001f9:cc689c8412beba41:auth] [plain] [testing] [4833e7a07132e872c7dc4c61dd45f02b] [4833e7a07132e872c7dc4c61dd45f02b] 134829071 -2020/04/06 13:55:55.937 [8870] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:55:55.937 [8870] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:55:55.937 [8870] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /digicert.demdex.net:443' against ./alaya.auth digest -2020/04/06 13:55:55.937 [8870] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:55:55.937 [8870] HTTP CONNECT: [digicert.demdex.net:443] -2020/04/06 13:55:55.073 [8870] PROXY: -2020/04/06 13:56:55.638 [8870] TRANSACTION COMPLETE: CONNECT digicert.demdex.net:443 for colum@ (127.0.0.1) -2020/04/06 13:55:54.502 [8869] -2020/04/06 13:55:54.502 [8869] NEW REQUEST: (127.0.0.1) CONNECT dpm.demdex.net:443 HTTP/1.1 -2020/04/06 13:55:54.502 [8869] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:55:54.502 [8869] << Proxy-Connection: keep-alive -2020/04/06 13:55:54.502 [8869] << Connection: keep-alive -2020/04/06 13:55:54.502 [8869] << Host: dpm.demdex.net:443 -2020/04/06 13:55:54.502 [8869] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="dpm.demdex.net:443", response="4e190b5d8fdd18140e8b0d949f790e96", qop=auth, nc=000001f4, cnonce="96ba1d735711b596" -2020/04/06 13:55:54.502 [8869] AUTH: method 'digest' -2020/04/06 13:55:54.502 [8869] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:55:54.502 [8869] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:55:54.502 [8869] NFCH: [CONNECT] [dpm.demdex.net:443] [dpm.demdex.net:443 25cd0600:000001f4:96ba1d735711b596:auth] [plain] [testing] [4e190b5d8fdd18140e8b0d949f790e96] [4e190b5d8fdd18140e8b0d949f790e96] 134829071 -2020/04/06 13:55:54.502 [8869] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:55:54.502 [8869] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:55:54.502 [8869] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /dpm.demdex.net:443' against ./alaya.auth digest -2020/04/06 13:55:54.502 [8869] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:55:54.502 [8869] HTTP CONNECT: [dpm.demdex.net:443] -2020/04/06 13:55:54.667 [8869] PROXY: -2020/04/06 13:56:56.593 [8869] TRANSACTION COMPLETE: CONNECT dpm.demdex.net:443 for colum@ (127.0.0.1) -2020/04/06 13:53:39.408 [8838] -2020/04/06 13:53:39.408 [8838] NEW REQUEST: (127.0.0.1) CONNECT googleads.g.doubleclick.net:443 HTTP/1.1 -2020/04/06 13:53:39.408 [8838] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:53:39.408 [8838] << Proxy-Connection: keep-alive -2020/04/06 13:53:39.408 [8838] << Connection: keep-alive -2020/04/06 13:53:39.408 [8838] << Host: googleads.g.doubleclick.net:443 -2020/04/06 13:53:39.408 [8838] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="googleads.g.doubleclick.net:443", response="a4ab22e685a8bfb1f3d7973214434eea", qop=auth, nc=0000010b, cnonce="5b07787c0a416ee7" -2020/04/06 13:53:39.408 [8838] AUTH: method 'digest' -2020/04/06 13:53:39.408 [8838] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:53:39.408 [8838] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:53:39.408 [8838] NFCH: [CONNECT] [googleads.g.doubleclick.net:443] [googleads.g.doubleclick.net:443 25cd0600:0000010b:5b07787c0a416ee7:auth] [plain] [testing] [a4ab22e685a8bfb1f3d7973214434eea] [a4ab22e685a8bfb1f3d7973214434eea] 134829071 -2020/04/06 13:53:39.408 [8838] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:53:39.408 [8838] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:53:39.408 [8838] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /googleads.g.doubleclick.net:443' against ./alaya.auth digest -2020/04/06 13:53:39.408 [8838] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:53:39.408 [8838] HTTP CONNECT: [googleads.g.doubleclick.net:443] -2020/04/06 13:53:39.540 [8838] PROXY: -2020/04/06 13:57:00.701 [8838] TRANSACTION COMPLETE: CONNECT googleads.g.doubleclick.net:443 for colum@ (127.0.0.1) -2020/04/06 13:54:05.657 [8851] -2020/04/06 13:54:05.657 [8851] NEW REQUEST: (127.0.0.1) CONNECT i.stack.imgur.com:443 HTTP/1.1 -2020/04/06 13:54:05.657 [8851] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:54:05.657 [8851] << Proxy-Connection: keep-alive -2020/04/06 13:54:05.657 [8851] << Connection: keep-alive -2020/04/06 13:54:05.657 [8851] << Host: i.stack.imgur.com:443 -2020/04/06 13:54:05.657 [8851] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="i.stack.imgur.com:443", response="8b2444a51b47601068e4146dd6c86e3d", qop=auth, nc=00000189, cnonce="528671d13b35543b" -2020/04/06 13:54:05.657 [8851] AUTH: method 'digest' -2020/04/06 13:54:05.657 [8851] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:54:05.657 [8851] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:54:05.657 [8851] NFCH: [CONNECT] [i.stack.imgur.com:443] [i.stack.imgur.com:443 25cd0600:00000189:528671d13b35543b:auth] [plain] [testing] [8b2444a51b47601068e4146dd6c86e3d] [8b2444a51b47601068e4146dd6c86e3d] 134829071 -2020/04/06 13:54:05.657 [8851] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:54:05.657 [8851] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:54:05.658 [8851] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /i.stack.imgur.com:443' against ./alaya.auth digest -2020/04/06 13:54:05.658 [8851] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:54:05.658 [8851] HTTP CONNECT: [i.stack.imgur.com:443] -2020/04/06 13:54:06.836 [8851] PROXY: -2020/04/06 13:57:06.712 [8851] TRANSACTION COMPLETE: CONNECT i.stack.imgur.com:443 for colum@ (127.0.0.1) -2020/04/06 13:54:05.655 [8852] -2020/04/06 13:54:05.655 [8852] NEW REQUEST: (127.0.0.1) CONNECT www.gravatar.com:443 HTTP/1.1 -2020/04/06 13:54:05.655 [8852] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:54:05.655 [8852] << Proxy-Connection: keep-alive -2020/04/06 13:54:05.655 [8852] << Connection: keep-alive -2020/04/06 13:54:05.655 [8852] << Host: www.gravatar.com:443 -2020/04/06 13:54:05.655 [8852] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="www.gravatar.com:443", response="6165f7a12bd0490b2a543fbc8c707ddf", qop=auth, nc=00000187, cnonce="77dd025629362606" -2020/04/06 13:54:05.655 [8852] AUTH: method 'digest' -2020/04/06 13:54:05.655 [8852] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:54:05.656 [8852] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:54:05.656 [8852] NFCH: [CONNECT] [www.gravatar.com:443] [www.gravatar.com:443 25cd0600:00000187:77dd025629362606:auth] [plain] [testing] [6165f7a12bd0490b2a543fbc8c707ddf] [6165f7a12bd0490b2a543fbc8c707ddf] 134829071 -2020/04/06 13:54:05.656 [8852] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:54:05.656 [8852] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:54:05.656 [8852] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /www.gravatar.com:443' against ./alaya.auth digest -2020/04/06 13:54:05.656 [8852] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:54:05.656 [8852] HTTP CONNECT: [www.gravatar.com:443] -2020/04/06 13:54:06.815 [8852] PROXY: -2020/04/06 13:57:06.715 [8852] TRANSACTION COMPLETE: CONNECT www.gravatar.com:443 for colum@ (127.0.0.1) -2020/04/06 13:54:05.355 [8848] -2020/04/06 13:54:05.355 [8848] NEW REQUEST: (127.0.0.1) CONNECT cdn.sstatic.net:443 HTTP/1.1 -2020/04/06 13:54:05.355 [8848] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:54:05.355 [8848] << Proxy-Connection: keep-alive -2020/04/06 13:54:05.355 [8848] << Connection: keep-alive -2020/04/06 13:54:05.355 [8848] << Host: cdn.sstatic.net:443 -2020/04/06 13:54:05.355 [8848] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="cdn.sstatic.net:443", response="0c31c736caf33ba00280a85fd66d8f25", qop=auth, nc=00000182, cnonce="4c6b7160112778aa" -2020/04/06 13:54:05.355 [8848] AUTH: method 'digest' -2020/04/06 13:54:05.355 [8848] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:54:05.355 [8848] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:54:05.355 [8848] NFCH: [CONNECT] [cdn.sstatic.net:443] [cdn.sstatic.net:443 25cd0600:00000182:4c6b7160112778aa:auth] [plain] [testing] [0c31c736caf33ba00280a85fd66d8f25] [0c31c736caf33ba00280a85fd66d8f25] 134829071 -2020/04/06 13:54:05.355 [8848] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:54:05.355 [8848] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:54:05.355 [8848] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /cdn.sstatic.net:443' against ./alaya.auth digest -2020/04/06 13:54:05.355 [8848] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:54:05.355 [8848] HTTP CONNECT: [cdn.sstatic.net:443] -2020/04/06 13:54:05.460 [8848] PROXY: -2020/04/06 13:57:06.719 [8848] TRANSACTION COMPLETE: CONNECT cdn.sstatic.net:443 for colum@ (127.0.0.1) -2020/04/06 13:54:05.903 [8847] -2020/04/06 13:54:05.903 [8847] NEW REQUEST: (127.0.0.1) CONNECT security.stackexchange.com:443 HTTP/1.1 -2020/04/06 13:54:05.903 [8847] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:54:05.903 [8847] << Proxy-Connection: keep-alive -2020/04/06 13:54:05.903 [8847] << Connection: keep-alive -2020/04/06 13:54:05.903 [8847] << Host: security.stackexchange.com:443 -2020/04/06 13:54:05.903 [8847] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="security.stackexchange.com:443", response="f61083559e3e13b0aa43c446a3ee9b8d", qop=auth, nc=0000017e, cnonce="0b76b35bace348e4" -2020/04/06 13:54:05.903 [8847] AUTH: method 'digest' -2020/04/06 13:54:05.903 [8847] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:54:05.904 [8847] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:54:05.904 [8847] NFCH: [CONNECT] [security.stackexchange.com:443] [security.stackexchange.com:443 25cd0600:0000017e:0b76b35bace348e4:auth] [plain] [testing] [f61083559e3e13b0aa43c446a3ee9b8d] [f61083559e3e13b0aa43c446a3ee9b8d] 134829071 -2020/04/06 13:54:05.904 [8847] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:54:05.904 [8847] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:54:05.904 [8847] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /security.stackexchange.com:443' against ./alaya.auth digest -2020/04/06 13:54:05.904 [8847] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:54:05.904 [8847] HTTP CONNECT: [security.stackexchange.com:443] -2020/04/06 13:54:05.989 [8847] PROXY: -2020/04/06 13:57:07.714 [8847] TRANSACTION COMPLETE: CONNECT security.stackexchange.com:443 for colum@ (127.0.0.1) -2020/04/06 13:54:06.529 [8853] -2020/04/06 13:54:06.529 [8853] NEW REQUEST: (127.0.0.1) CONNECT www.googletagservices.com:443 HTTP/1.1 -2020/04/06 13:54:06.529 [8853] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:54:06.529 [8853] << Proxy-Connection: keep-alive -2020/04/06 13:54:06.529 [8853] << Connection: keep-alive -2020/04/06 13:54:06.529 [8853] << Host: www.googletagservices.com:443 -2020/04/06 13:54:06.529 [8853] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="www.googletagservices.com:443", response="b08a90267a4f409a83e2f99d9403603b", qop=auth, nc=0000018c, cnonce="d8548612e5cda1b1" -2020/04/06 13:54:06.529 [8853] AUTH: method 'digest' -2020/04/06 13:54:06.529 [8853] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:54:06.529 [8853] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:54:06.529 [8853] NFCH: [CONNECT] [www.googletagservices.com:443] [www.googletagservices.com:443 25cd0600:0000018c:d8548612e5cda1b1:auth] [plain] [testing] [b08a90267a4f409a83e2f99d9403603b] [b08a90267a4f409a83e2f99d9403603b] 134829071 -2020/04/06 13:54:06.529 [8853] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:54:06.529 [8853] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:54:06.529 [8853] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /www.googletagservices.com:443' against ./alaya.auth digest -2020/04/06 13:54:06.529 [8853] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:54:06.529 [8853] HTTP CONNECT: [www.googletagservices.com:443] -2020/04/06 13:54:06.608 [8853] PROXY: -2020/04/06 13:57:07.718 [8853] TRANSACTION COMPLETE: CONNECT www.googletagservices.com:443 for colum@ (127.0.0.1) -2020/04/06 13:53:39.105 [8836] -2020/04/06 13:53:39.105 [8836] NEW REQUEST: (127.0.0.1) CONNECT adservice.google.co.uk:443 HTTP/1.1 -2020/04/06 13:53:39.105 [8836] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:53:39.105 [8836] << Proxy-Connection: keep-alive -2020/04/06 13:53:39.105 [8836] << Connection: keep-alive -2020/04/06 13:53:39.105 [8836] << Host: adservice.google.co.uk:443 -2020/04/06 13:53:39.105 [8836] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="adservice.google.co.uk:443", response="75cea7490e478282bc2c83b43656dafa", qop=auth, nc=00000109, cnonce="5020d61a6045c145" -2020/04/06 13:53:39.105 [8836] AUTH: method 'digest' -2020/04/06 13:53:39.106 [8836] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:53:39.106 [8836] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:53:39.106 [8836] NFCH: [CONNECT] [adservice.google.co.uk:443] [adservice.google.co.uk:443 25cd0600:00000109:5020d61a6045c145:auth] [plain] [testing] [75cea7490e478282bc2c83b43656dafa] [75cea7490e478282bc2c83b43656dafa] 134829071 -2020/04/06 13:53:39.106 [8836] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:53:39.106 [8836] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:53:39.106 [8836] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /adservice.google.co.uk:443' against ./alaya.auth digest -2020/04/06 13:53:39.106 [8836] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:53:39.106 [8836] HTTP CONNECT: [adservice.google.co.uk:443] -2020/04/06 13:53:39.244 [8836] PROXY: -2020/04/06 13:57:07.720 [8836] TRANSACTION COMPLETE: CONNECT adservice.google.co.uk:443 for colum@ (127.0.0.1) -2020/04/06 13:53:39.850 [8835] -2020/04/06 13:53:39.850 [8835] NEW REQUEST: (127.0.0.1) CONNECT adservice.google.com:443 HTTP/1.1 -2020/04/06 13:53:39.850 [8835] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:53:39.850 [8835] << Proxy-Connection: keep-alive -2020/04/06 13:53:39.850 [8835] << Connection: keep-alive -2020/04/06 13:53:39.850 [8835] << Host: adservice.google.com:443 -2020/04/06 13:53:39.850 [8835] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="adservice.google.com:443", response="dea35f634965d64e19af6519fbb9f982", qop=auth, nc=00000106, cnonce="bd12aa7be6ae2596" -2020/04/06 13:53:39.850 [8835] AUTH: method 'digest' -2020/04/06 13:53:39.850 [8835] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:53:39.850 [8835] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:53:39.850 [8835] NFCH: [CONNECT] [adservice.google.com:443] [adservice.google.com:443 25cd0600:00000106:bd12aa7be6ae2596:auth] [plain] [testing] [dea35f634965d64e19af6519fbb9f982] [dea35f634965d64e19af6519fbb9f982] 134829071 -2020/04/06 13:53:39.850 [8835] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:53:39.850 [8835] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:53:39.850 [8835] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /adservice.google.com:443' against ./alaya.auth digest -2020/04/06 13:53:39.850 [8835] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:53:39.850 [8835] HTTP CONNECT: [adservice.google.com:443] -2020/04/06 13:53:39.941 [8835] PROXY: -2020/04/06 13:57:07.723 [8835] TRANSACTION COMPLETE: CONNECT adservice.google.com:443 for colum@ (127.0.0.1) -2020/04/06 13:54:07.573 [8858] -2020/04/06 13:54:07.573 [8858] NEW REQUEST: (127.0.0.1) CONNECT securepubads.g.doubleclick.net:443 HTTP/1.1 -2020/04/06 13:54:07.573 [8858] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:54:07.573 [8858] << Proxy-Connection: keep-alive -2020/04/06 13:54:07.573 [8858] << Connection: keep-alive -2020/04/06 13:54:07.573 [8858] << Host: securepubads.g.doubleclick.net:443 -2020/04/06 13:54:07.574 [8858] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="securepubads.g.doubleclick.net:443", response="f1b7530b54c0b91079800b6d3a17e4b2", qop=auth, nc=000001a0, cnonce="ad59e856ab175c8c" -2020/04/06 13:54:07.574 [8858] AUTH: method 'digest' -2020/04/06 13:54:07.574 [8858] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:54:07.574 [8858] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:54:07.574 [8858] NFCH: [CONNECT] [securepubads.g.doubleclick.net:443] [securepubads.g.doubleclick.net:443 25cd0600:000001a0:ad59e856ab175c8c:auth] [plain] [testing] [f1b7530b54c0b91079800b6d3a17e4b2] [f1b7530b54c0b91079800b6d3a17e4b2] 134829071 -2020/04/06 13:54:07.574 [8858] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:54:07.574 [8858] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:54:07.574 [8858] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /securepubads.g.doubleclick.net:443' against ./alaya.auth digest -2020/04/06 13:54:07.574 [8858] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:54:07.574 [8858] HTTP CONNECT: [securepubads.g.doubleclick.net:443] -2020/04/06 13:54:07.653 [8858] PROXY: -2020/04/06 13:57:08.709 [8858] TRANSACTION COMPLETE: CONNECT securepubads.g.doubleclick.net:443 for colum@ (127.0.0.1) -2020/04/06 13:54:08.914 [8859] -2020/04/06 13:54:08.914 [8859] NEW REQUEST: (127.0.0.1) CONNECT googleads4.g.doubleclick.net:443 HTTP/1.1 -2020/04/06 13:54:08.914 [8859] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:54:08.914 [8859] << Proxy-Connection: keep-alive -2020/04/06 13:54:08.914 [8859] << Connection: keep-alive -2020/04/06 13:54:08.915 [8859] << Host: googleads4.g.doubleclick.net:443 -2020/04/06 13:54:08.915 [8859] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="googleads4.g.doubleclick.net:443", response="c4f70cdcbb3004a38ae7defb90af7968", qop=auth, nc=000001a2, cnonce="25ce11c9d0a32c40" -2020/04/06 13:54:08.915 [8859] AUTH: method 'digest' -2020/04/06 13:54:08.915 [8859] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:54:08.915 [8859] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:54:08.915 [8859] NFCH: [CONNECT] [googleads4.g.doubleclick.net:443] [googleads4.g.doubleclick.net:443 25cd0600:000001a2:25ce11c9d0a32c40:auth] [plain] [testing] [c4f70cdcbb3004a38ae7defb90af7968] [c4f70cdcbb3004a38ae7defb90af7968] 134829071 -2020/04/06 13:54:08.915 [8859] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:54:08.915 [8859] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:54:08.915 [8859] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /googleads4.g.doubleclick.net:443' against ./alaya.auth digest -2020/04/06 13:54:08.915 [8859] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:54:08.915 [8859] HTTP CONNECT: [googleads4.g.doubleclick.net:443] -2020/04/06 13:54:08.002 [8859] PROXY: -2020/04/06 13:57:08.716 [8859] TRANSACTION COMPLETE: CONNECT googleads4.g.doubleclick.net:443 for colum@ (127.0.0.1) -2020/04/06 13:54:11.966 [8861] -2020/04/06 13:54:11.966 [8861] NEW REQUEST: (127.0.0.1) CONNECT pagead2.googlesyndication.com:443 HTTP/1.1 -2020/04/06 13:54:11.966 [8861] << User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:68.9) Gecko/20100101 Goanna/4.5 Firefox/68.9 PaleMoon/28.9.0.2 -2020/04/06 13:54:11.966 [8861] << Proxy-Connection: keep-alive -2020/04/06 13:54:11.966 [8861] << Connection: keep-alive -2020/04/06 13:54:11.966 [8861] << Host: pagead2.googlesyndication.com:443 -2020/04/06 13:54:11.966 [8861] << Proxy-Authorization: Digest username="colum", realm="DEFAULT", nonce="25cd0600", uri="pagead2.googlesyndication.com:443", response="789184778b98bb3a9608356e7b003d50", qop=auth, nc=000001ab, cnonce="87cbc3309a474233" -2020/04/06 13:54:11.966 [8861] AUTH: method 'digest' -2020/04/06 13:54:11.966 [8861] PREAUTH: colum against ./alaya.auth digest -2020/04/06 13:54:11.966 [8861] AUTH: Try to authenticate 'colum' via 'digest'. Remaining authentication types: -2020/04/06 13:54:11.966 [8861] NFCH: [CONNECT] [pagead2.googlesyndication.com:443] [pagead2.googlesyndication.com:443 25cd0600:000001ab:87cbc3309a474233:auth] [plain] [testing] [789184778b98bb3a9608356e7b003d50] [789184778b98bb3a9608356e7b003d50] 134829071 -2020/04/06 13:54:11.966 [8861] AUTH: UserName 'colum' Authenticated via native file: ./alaya.auth. -2020/04/06 13:54:11.966 [8861] AUTH: Client Authenticated with digest for colum@127.0.0.1 -2020/04/06 13:54:11.966 [8861] AUTHENTICATED: colum@127.0.0.1 for 'CONNECT /pagead2.googlesyndication.com:443' against ./alaya.auth digest -2020/04/06 13:54:11.966 [8861] User Context: Chroot: /home/colum, StartDir: /home/colum/, HomeDir: /tmp, UserID: 1000, GroupID: 0, -2020/04/06 13:54:11.966 [8861] HTTP CONNECT: [pagead2.googlesyndication.com:443] -2020/04/06 13:54:11.058 [8861] PROXY: -2020/04/06 13:57:11.711 [8861] TRANSACTION COMPLETE: CONNECT pagead2.googlesyndication.com:443 for colum@ (127.0.0.1) diff --git a/proxy.conf b/proxy.conf deleted file mode 100644 index de7d0e5..0000000 --- a/proxy.conf +++ /dev/null @@ -1,4 +0,0 @@ -FileType=*.pac,mimetype=application/x-ns-proxy-autoconfig - -AllowProxy=* -