Skip to content
Snippets Groups Projects
  1. Dec 20, 2023
    • Deucе's avatar
      Fix TLS handbrake/hang/crash issue · 97680179
      Deucе authored
      Private key objects in cryptlib are not copied into sessions when
      they're added, only the refcount is incremented.  These objects
      contain a bignum context, which therefore ends up shared across all
      instances of the private key.  Unfortunately, the locking is on the
      session context, not the private key objects, so shared bignum contexts
      can cause memory corruption.
      
      Further, even if the locking issue was fixed, the performance handbrake
      would still exists... activating sessions that use the same private key
      would be serialized, with the results we've been seeing lately.
      
      With this, each session gets a unique private key, which is loaded
      from the file.  When a session is finished with the key, it is cached
      in a list with an epoch, so when the date on the key file changes, old
      private keys will be eliminated.
      
      While this solves a lot of issues, logging of certificate generation
      and loading issues has regressed to the point where it's effectively
      not done at all. Logging was previously passed back to the caller,
      but given the much longer call chain to get to where a cert is created,
      the extra parameters was just too much. Something better should be
      done here at some point.
      97680179
    • Rob Swindell's avatar
      Fix crashes when remove items from the failed login list · 6b39a03f
      Rob Swindell authored
      We need to get the NextItem *before* we delete the current one.
      
      I'm not sure why this was in there, but removed it as appears to have
      no effect:
      	if(ListView->Selected == NULL)
      		break;
      6b39a03f
    • Rob Swindell's avatar
      Support removing login attempt entries · c2ea47aa
      Rob Swindell authored
      Include the time-span of the login attempts in the reason string.
      c2ea47aa
    • Rob Swindell's avatar
      Support durations (e.g. "2m") syntax for timeout settings · 796d0978
      Rob Swindell authored
      Interestingly, qwk_timeout was already read (but not set) as a duration.
      
      Add "NO_CGI" to the default Web Server options.
      796d0978
    • Rob Swindell's avatar
      Increase default MAX_CLIENTS value from 10 to 100 clients · 750a2a8b
      Rob Swindell authored
      It is almost 2024 after all. :-)
      750a2a8b
    • Rob Swindell's avatar
      Decrease the web server default MaxClients value from unlimited to 100 clients · d8285053
      Rob Swindell authored
      Every server should have *some* limit to protect against DOS attacks.
      Every connected client consumes a socket, a thread, some memory, none of
      which are infinite resources.
      d8285053
    • Rob Swindell's avatar
      Look in mods dir for FileIndexScript before the exec dir · 33ee2f8a
      Rob Swindell authored
      ... unless the full path was specified.
      33ee2f8a
  2. Dec 19, 2023
Loading