Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remote update feature #1060

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open

Commits on Nov 30, 2020

  1. Re-add update functionality, still missing the server implementation

    Make the update feature optional and disabled by default
    LocutusOfBorg committed Nov 30, 2020
    Configuration menu
    Copy the full SHA
    d4c37a8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8732f02 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    be902c3 View commit details
    Browse the repository at this point in the history
  4. Fix underlinking

    LocutusOfBorg committed Nov 30, 2020
    Configuration menu
    Copy the full SHA
    3d3cdea View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    197b058 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    812c4d5 View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2020

  1. Initialize some variables to silence Werror warnings on Ubuntu focal:

    [ 51%] Building C object src/CMakeFiles/lib_ettercap.dir/dissectors/ec_ssh.c.o
    
    /home/travis/build/Ettercap/ettercap/src/dissectors/ec_ssh.c:560:52: error:
    
          variable 'm_h_n' is uninitialized when used here [-Werror,-Wuninitialized]
    
                temp_session_id=ssh_session_id(cookie, m_h_n, m_s_n);
    
                                                       ^~~~~
    
    /home/travis/build/Ettercap/ettercap/src/dissectors/ec_ssh.c:146:29: note:
    
          initialize the variable 'm_h_n' to silence this warning
    
       BIGNUM *h_n, *s_n, *m_h_n, *m_s_n;
    
                                ^
    
                                 = NULL
    
    /home/travis/build/Ettercap/ettercap/src/dissectors/ec_ssh.c:560:59: error:
    
          variable 'm_s_n' is uninitialized when used here [-Werror,-Wuninitialized]
    
                temp_session_id=ssh_session_id(cookie, m_h_n, m_s_n);
    
                                                              ^~~~~
    
    /home/travis/build/Ettercap/ettercap/src/dissectors/ec_ssh.c:146:37: note:
    
          initialize the variable 'm_s_n' to silence this warning
    
       BIGNUM *h_n, *s_n, *m_h_n, *m_s_n;
    
                                        ^
    
                                         = NULL
    
    /home/travis/build/Ettercap/ettercap/src/dissectors/ec_ssh.c:552:54: error:
    
          variable 'h_n' is uninitialized when used here [-Werror,-Wuninitialized]
    
                temp_session_id = ssh_session_id(cookie, h_n, s_n);
    
                                                         ^~~
    
    /home/travis/build/Ettercap/ettercap/src/dissectors/ec_ssh.c:146:15: note:
    
          initialize the variable 'h_n' to silence this warning
    
       BIGNUM *h_n, *s_n, *m_h_n, *m_s_n;
    
                  ^
    
                   = NULL
    
    /home/travis/build/Ettercap/ettercap/src/dissectors/ec_ssh.c:552:59: error:
    
          variable 's_n' is uninitialized when used here [-Werror,-Wuninitialized]
    
                temp_session_id = ssh_session_id(cookie, h_n, s_n);
    
                                                              ^~~
    
    /home/travis/build/Ettercap/ettercap/src/dissectors/ec_ssh.c:146:21: note:
    
          initialize the variable 's_n' to silence this warning
    
       BIGNUM *h_n, *s_n, *m_h_n, *m_s_n;
    
                        ^
    
                         = NULL
    
    /home/travis/build/Ettercap/ettercap/src/dissectors/ec_ssh.c:398:64: error:
    
          variable 's_d' is uninitialized when used here [-Werror,-Wuninitialized]
    
                   RSA_set0_key(session_data->serverkey, s_n, s_e, s_d);
    
                                                                   ^~~
    
    /home/travis/build/Ettercap/ettercap/src/dissectors/ec_ssh.c:148:21: note:
    
          initialize the variable 's_d' to silence this warning
    
       BIGNUM *h_d, *s_d, *m_h_d, *m_s_d;
    
                        ^
    
                         = NULL
    
    /home/travis/build/Ettercap/ettercap/src/dissectors/ec_ssh.c:409:62: error:
    
          variable 'h_d' is uninitialized when used here [-Werror,-Wuninitialized]
    
                   RSA_set0_key(session_data->hostkey, h_n, h_e, h_d);
    
                                                                 ^~~
    
    /home/travis/build/Ettercap/ettercap/src/dissectors/ec_ssh.c:148:15: note:
    
          initialize the variable 'h_d' to silence this warning
    
       BIGNUM *h_d, *s_d, *m_h_d, *m_s_d;
    
                  ^
    
                   = NULL
    
    6 errors generated.
    
    make[2]: *** [src/CMakeFiles/lib_ettercap.dir/build.make:1197: src/CMakeFiles/lib_ettercap.dir/dissectors/ec_ssh.c.o] Error 1
    LocutusOfBorg committed Dec 1, 2020
    Configuration menu
    Copy the full SHA
    b6e4021 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b2d81d1 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2020

  1. Configuration menu
    Copy the full SHA
    eed54f3 View commit details
    Browse the repository at this point in the history