I am trying to make a HTTPS request by following sample code:
local body = "parameter=sensitive\_data" local params = {} params.body = body network.request("https://hostname/process\_sensitive\_data.php", "POST", networkListener, params)
Are the parameters in the body secure (no one can know the content via network packet sniffer)?
And when the response comes back, is the response also secure?