Updates deps

This commit is contained in:
erwanlr
2022-01-24 15:58:49 +01:00
parent 05d912e658
commit 37f7dddac7
2 changed files with 2 additions and 2 deletions

View File

@@ -135,7 +135,7 @@ module WPScan
res = Typhoeus.get(file_url, request_params)
raise Error::Download, res if res.timed_out? || res.code != 200
File.open(file_path, 'wb') { |f| f.write(res.body) }
File.binwrite(file_path, res.body)
local_file_checksum(filename)
end