SHA256
1
0
forked from pool/wireshark
wireshark/wireshark-1.2.4-enable_lua.patch
Pavol Rusnak dbddd0d7b0 - updated to 1.4.3
- security fixes:
     o MAC-LTE dissector could overflow a buffer
     o ENTTEC dissector could overflow a buffer
     o ASN.1 BER dissector could assert and make Wireshark exit prematurely
  - bug fixes:
     o AMQP failed assertion
     o Reassemble.c leaks memory for GLIB > 2.8
     o Fuzz testing reports possible dissector bug: TCP
     o Wrong length calculation in new_octet_aligned_subset_bits()
     o Function dissect_per_bit_string_display might read more bytes
       than available
     o Wireshark crashes with Copy -> Description on date/time fields
     o DHCPv6 OPTION_CLIENT_FQDN parse error
     o Information element Error for supported channels
     o Assert when using ASN.1 dissector with loading a 'type table'
     o Bug with RWH parsing in Infiniband dissector
     o Help->About Wireshark mis-reports OS
     o Delegated-IPv6-Prefix(123) is shown incorrect as
       X-Ascend-Call-Attempt-Limit(123)
     o "tshark -r file -T fields" is truncating exported data
     o gsm_a_dtap: incorrect "Extraneous Data" when decoding Packet
       Flow Identifier
     o Improper decode of TLS 1.2 packet containing both
       CertificateRequest and ServerHelloDone messages
     o LTE-PDCP UL and DL problem
     o CIGI 3.2/3.3 support broken
     o Prepare Filter in RTP Streams dialog does not work correctly.
     o Wrong decode at ethernet OAM Y.1731 ETH-CC

OBS-URL: https://build.opensuse.org/package/show/network:utilities/wireshark?expand=0&rev=34
2011-02-15 13:04:22 +00:00

14 lines
726 B
Diff

Index: wireshark-1.4.3/epan/wslua/template-init.lua
===================================================================
--- wireshark-1.4.3.orig/epan/wslua/template-init.lua
+++ wireshark-1.4.3/epan/wslua/template-init.lua
@@ -42,7 +42,7 @@ if running_superuser then
local disabled_lib = {}
setmetatable(disabled_lib,{ __index = function() error("this package has been disabled") end } );
- dofile = function() error("dofile has been disabled") end
+-- dofile = function() error("dofile has been disabled") end
loadfile = function() error("loadfile has been disabled") end
loadlib = function() error("loadlib has been disabled") end
require = function() error("require has been disabled") end