Skip to content
Snippets Groups Projects
Commit c2cc5002 authored by Pierre LALET's avatar Pierre LALET
Browse files

Do not load tls module by default

parent 3d113a91
No related branches found
No related tags found
No related merge requests found
...@@ -431,7 +431,7 @@ debug_tls:When 1, print some TLS session secrets when they are computed. ...@@ -431,7 +431,7 @@ debug_tls:When 1, print some TLS session secrets when they are computed.
netcache = NetCache() netcache = NetCache()
geoip_city = '/usr/share/GeoIP/GeoIPCity.dat' geoip_city = '/usr/share/GeoIP/GeoIPCity.dat'
geoip_city_ipv6 = '/usr/share/GeoIP/GeoIPCityv6.dat' geoip_city_ipv6 = '/usr/share/GeoIP/GeoIPCityv6.dat'
load_layers = ["l2", "inet", "dhcp", "dns", "dot11", "gprs", "tls", load_layers = ["l2", "inet", "dhcp", "dns", "dot11", "gprs",
"hsrp", "inet6", "ir", "isakmp", "l2tp", "mgcp", "hsrp", "inet6", "ir", "isakmp", "l2tp", "mgcp",
"mobileip", "netbios", "netflow", "ntp", "ppp", "pptp", "mobileip", "netbios", "netflow", "ntp", "ppp", "pptp",
"radius", "rip", "rtp", "skinny", "smb", "snmp", "radius", "rip", "rtp", "skinny", "smb", "snmp",
......
...@@ -5,7 +5,10 @@ ...@@ -5,7 +5,10 @@
], ],
"onlyfailed": true, "onlyfailed": true,
"preexec": { "preexec": {
"../scapy/contrib/*.uts": "load_contrib(\"%name%\")" "../scapy/contrib/*.uts": "load_contrib(\"%name%\")",
"cert.uts": "load_layer(\"tls\")",
"sslv2.uts": "load_layer(\"tls\")",
"tls*.uts": "load_layer(\"tls\")"
}, },
"format": "text" "format": "text"
} }
...@@ -5,7 +5,10 @@ ...@@ -5,7 +5,10 @@
], ],
"onlyfailed": true, "onlyfailed": true,
"preexec": { "preexec": {
"scapy\\contrib\\*.uts": "load_contrib(\"%name%\")" "scapy\\contrib\\*.uts": "load_contrib(\"%name%\")",
"test\\cert.uts": "load_layer(\"tls\")",
"test\\sslv2.uts": "load_layer(\"tls\")",
"test\\tls*.uts": "load_layer(\"tls\")"
}, },
"format": "text", "format": "text",
"kw_ko": [ "kw_ko": [
......
...@@ -5,7 +5,10 @@ ...@@ -5,7 +5,10 @@
], ],
"onlyfailed": true, "onlyfailed": true,
"preexec": { "preexec": {
"..\\scapy\\contrib\\*.uts": "load_contrib(\"%name%\")" "..\\scapy\\contrib\\*.uts": "load_contrib(\"%name%\")",
"cert.uts": "load_layer(\"tls\")",
"sslv2.uts": "load_layer(\"tls\")",
"tls*.uts": "load_layer(\"tls\")"
}, },
"format": "html", "format": "html",
"kw_ko": [ "kw_ko": [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment