magonyt Wrote: can confirm, VNP is very good and free of backdoors
DETECTIONS: !base/lua/vnp_utilities/derma_utilities/client/cl_derma.lua   http.Fetch Function 🟡
Its not backdoor its normal function i check it its clear
Code:
function VNP:PreCacheMaterial( url, crc ) if not crc then crc = util.CRC(url) .. ".png" end
if not file.Exists("vnp_imgs", "DATA") then file.CreateDir("vnp_imgs") end
if not self.PreCacheStarted[crc] then self.PreCacheStarted[crc] = true http.Fetch(url, function(body, size, headers, code) if body:find( "^.PNG" ) then file.Write("vnp_imgs/" .. crc, body) self.Images[crc] = Material( "data/vnp_imgs/" .. crc, "smooth noclamp" ) return self.Images[crc] end end) end