You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
nice code, please add tiny bit of code, because the time did not come out right , add (); in line 181
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime();($detectedSSID{$key}[2]);
i also got this lua error --
tshark: Lua: Error during loading:
[string "/usr/share/wireshark/init.lua"]:44: dofile has been disabled due to running Wireshark as superuser. See https://wiki.wireshark.org/CaptureSetup/CapturePrivileges for help in running Wireshark as an unprivileged user. ---
cd /usr/share/wireshark , nano init.lua , and comment out the
dofile = function() error("dofile has been disabled") end
to
-- dofile = function() error("dofile has been disabled") end
dont know if its the right way, but that gets rid of the error.
The text was updated successfully, but these errors were encountered:
nice code, please add tiny bit of code, because the time did not come out right , add (); in line 181
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime();($detectedSSID{$key}[2]);
i also got this lua error --
tshark: Lua: Error during loading:
[string "/usr/share/wireshark/init.lua"]:44: dofile has been disabled due to running Wireshark as superuser. See https://wiki.wireshark.org/CaptureSetup/CapturePrivileges for help in running Wireshark as an unprivileged user. ---
cd /usr/share/wireshark , nano init.lua , and comment out the
dofile = function() error("dofile has been disabled") end
to
-- dofile = function() error("dofile has been disabled") end
dont know if its the right way, but that gets rid of the error.
The text was updated successfully, but these errors were encountered: