Changeset 13320 in genesis


Ignore:
Timestamp:
Jul 28, 2015, 7:18:28 AM (9 years ago)
Author:
rick
Message:

HTTPS implementation is flawed/broken/vunrable (POODLE attack) and thus no
longer usable in browser. Reverting to HTTP access.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/gformat.py

    r13315 r13320  
    10571057      ifacedump['autogen_ns_ip'] = ifacedump['ns_ip'].split('/')[0]
    10581058      has_item = True
    1059       output += " - %(autogen_ifname)s || %(mode)s || https://%(autogen_ns_ip)s\n" % ifacedump
     1059      ifacedump['autogen_protocol'] = 'https' if 'M' in ifacedump['bridge_type'] else 'http'
     1060      output += " - %(autogen_ifname)s || %(mode)s || %(autogen_protocol)s://%(autogen_ns_ip)s\n" % ifacedump
    10601061  if not has_item:
    10611062    output += " - none\n"
Note: See TracChangeset for help on using the changeset viewer.