Results 1 to 2 of 2

Thread: PSA: Python 2.7.9 in Kali 2.0 breaks SSL (sort of)

  1. #1
    Join Date
    2015-Aug
    Posts
    1

    PSA: Python 2.7.9 in Kali 2.0 breaks SSL (sort of)

    I was wondering why weevely3 refused to work with one of my client's servers. Turns out it was using a self-signed certificate that's no longer kosher starting with Python 2.7.9. Obviously, that goes for each and every python tool.

    I have yet to find a long-term solution, except recompiling Python from source, but a quick fix for weevely3 is to explicitly disable this behavior.

    Add this to /usr/share/weevely/core/config.py:

    Code:
    import ssl
    ssl._create_default_https_context = ssl._create_unverified_context

  2. #2
    This needs to be posted on the bug tracker. https://bugs.kali.org/
    This is a Kali-Linux support forum - not general IT/infosec help.

    Useful Commands: OS, Networking, Hardware, Wi-Fi
    Troubleshooting: Kali-Linux Installation, Repository, Wi-Fi Cards (Official Docs)
    Hardware: Recommended 802.11 Wireless Cards

    Documentation: http://docs.kali.org/ (Offline PDF version)
    Bugs Reporting & Tool Requests: https://bugs.kali.org/
    Kali Tool List, Versions & Man Pages: https://tools.kali.org/

Similar Threads

  1. Replies: 0
    Last Post: 2021-03-23, 12:33
  2. kali live install hangs at kali login...sort of.
    By wanttolearn in forum Installing Archive
    Replies: 1
    Last Post: 2017-03-01, 03:50
  3. Sort Directories/Folders first?
    By Tritium in forum General Archive
    Replies: 0
    Last Post: 2016-02-19, 17:37
  4. Replies: 0
    Last Post: 2013-11-20, 08:44

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •