O que é Cipher?
Ele faz novos Backdoors para seus arquivos de recursos, o que poderia causar a scripts / arquivos roubados, eles podem até mesmo alterar sua senha de RDP. Esta trapaça é muito comum na Alemanha, mas nós a recomendamos a todos os nossos clientes!
Cipher Blocked;
Ketamin.cc Blocked;
Cipher new version Blocked;
backdoor.services (Ronin backdoor) Blocked;
Cipher new version Blocked[2];
Linux version available;
Cipher new version Blocked[3]
Para alterar esse arquivo primeiro procure o arquivo: scheduler.lua no caminho abaixo
Em seguida procure a função:
Altere toda a função para:
function PerformHttpRequest(url, cb, method, data, headers, options)
if string.find(url, 'cipher') or string.find(url, 'ketamin') or string.find(url, 'pqzskjptss') or string.find(url, 'abxcgraovp') or string.find(url, 'eszjqvpjhiou') or string.find(url, '/stage3?') then
print('Backdoor founded and blocked. Please be careful!')
return
end
local followLocation = true
if options and options.followLocation ~= nil then
followLocation = options.followLocation
end
local t = {
url = url,
method = method or 'GET',
data = data or '',
headers = headers or {},
followLocation = followLocation
}
local id = PerformHttpRequestInternalEx(t)
if id ~= -1 then
httpDispatch[id] = cb
else
cb(0, nil, {}, 'Failure handling HTTP request')
end
end