Ignore:
Timestamp:
Sep 10, 2014, 8:09:28 PM (10 years ago)
Author:
alloc
Message:

fixes

Location:
binary-improvements/7dtd-server-fixes/src/NetConnections/Servers
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/NetConnections/Servers/Telnet/Telnet.cs

    r184 r187  
    99        public class Telnet : IServer
    1010        {
     11                private const int MAX_LOGIN_ATTEMPTS = 10;
     12                private const int BLOCK_TIME_SECONDS = 10;
     13
     14                private class LoginAttempts
     15                {
     16                        private int count = 0;
     17                        private DateTime lastAttempt = new DateTime (0);
     18
     19                        public bool LogAttempt ()
     20                        {
     21                                lastAttempt = DateTime.Now;
     22                                count++;
     23                                return count < MAX_LOGIN_ATTEMPTS;
     24                        }
     25
     26                        public bool IsBanned ()
     27                        {
     28                                if ((DateTime.Now - lastAttempt).TotalSeconds > BLOCK_TIME_SECONDS)
     29                                        count = 0;
     30                                return count >= MAX_LOGIN_ATTEMPTS;
     31                        }
     32                }
     33
    1134                private TcpListener listener = null;
    1235                private bool authEnabled = false;
    1336                private List<TelnetConnection> connections = new List<TelnetConnection> ();
     37                private Dictionary<int, LoginAttempts> loginAttemptsPerIP = new Dictionary<int, LoginAttempts> ();
    1438
    1539                public Telnet ()
     
    3963                }
    4064
    41                 public void FailedLogins ()
     65                public bool RegisterFailedLogin (int addressHash)
    4266                {
     67                        lock (loginAttemptsPerIP) {
     68                                LoginAttempts la = loginAttemptsPerIP [addressHash];
     69                                return la.LogAttempt ();
     70                        }
    4371                }
    4472
     
    4674                {
    4775                        if (listener.Server.IsBound) {
    48                                 TelnetConnection c = new TelnetConnection (this, listener.EndAcceptTcpClient (asyncResult), authEnabled);
    49                                 connections.Add (c);
     76                                TcpClient client = listener.EndAcceptTcpClient (asyncResult);
     77
     78                                EndPoint endpoint = client.Client.RemoteEndPoint;
     79                                int addressHash = -1;
     80                                if (endpoint is IPEndPoint) {
     81                                        addressHash = ((IPEndPoint)endpoint).Address.GetHashCode ();
     82                                        //Log.Out ("Hash: " + endpointAddressHash);
     83                                } else {
     84                                        Log.Out ("EndPoint is not an IPEndPoint but: " + endpoint.GetType ().ToString ());
     85                                }
     86
     87                                lock (loginAttemptsPerIP) {
     88                                        LoginAttempts la = null;
     89                                        if (loginAttemptsPerIP.ContainsKey(addressHash))
     90                                                la = loginAttemptsPerIP [addressHash];
     91                                        if (la == null) {
     92                                                la = new LoginAttempts ();
     93                                                loginAttemptsPerIP [addressHash] = la;
     94                                        }
     95                                        if (!la.IsBanned ()) {
     96                                                TelnetConnection con = new TelnetConnection (this, client, authEnabled);
     97                                                connections.Add (con);
     98                                        } else {
     99                                                client.Close ();
     100                                                Log.Out ("Telnet connection not accepted for too many login attempts: " + endpoint);
     101                                        }
     102                                }
    50103                                listener.BeginAcceptTcpClient (new AsyncCallback (AcceptClient), null);
    51104                        }
  • binary-improvements/7dtd-server-fixes/src/NetConnections/Servers/Telnet/TelnetConnection.cs

    r185 r187  
    1515                private readonly Thread receiveThread = null;
    1616                private readonly Thread sendThread = null;
    17                 private int authTries = 0;
    1817                private bool authenticated = false;
    1918                private readonly bool authEnabled;
     
    9190                                                                        LoginMessage ();
    9291                                                                } else {
    93                                                                         authTries++;
    94                                                                         // TODO: check if IP has more login attempts by now
    95                                                                         if (authTries < 3) {
     92                                                                        if (owner.RegisterFailedLogin(endpointAddressHash)) {
    9693                                                                                WriteLine ("Password incorrect, please enter password:");
    9794                                                                        } else {
    9895                                                                                WriteLine ("Too many failed login attempts!");
    9996                                                                                Thread.Sleep(100);
    100                                                                                 //TODO: owner.FailedLogins();
    10197                                                                                Close ();
    10298                                                                                Log.Out ("Telnet connection closed for too many login attempts: " + endpoint);
  • binary-improvements/7dtd-server-fixes/src/NetConnections/Servers/Web/MimeType.cs

    r133 r187  
    209209        {".jpg", "image/jpeg"},
    210210        {".js", "application/x-javascript"},
     211                {".json", "application/json"},
    211212        {".jsx", "text/jscript"},
    212213        {".jsxbin", "text/plain"},
Note: See TracChangeset for help on using the changeset viewer.