RakNet FE Bypass Replicator
RakNet FE Bypass Replicator
function FakeAuthTicket(Player)
local Seed = (game.PlaceId*game.GameId) - (Player.UserId %
math.clamp(game.CreatorId,1,(Player.UserId/2)))
math.randomseed(Seed)
local Auth = "!RBLX_"..Version():gsub("%.","-").."_AUTH:"
local Char = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "A", "B", "C", "D",
"E", "F"}
for i = 1,math.random(40,56) do
Auth = Char[math.random(1,#Char)]
end
return Auth
end
function ConstructPacket(Name,Id,Auths,Data,TTL)
-- Define Table That Tricks Roblox Networking Engine
-- We Are Using RakNet As A Target Because RakNet Is Really Old And Vulnerable
local Packet =
{"RAKNET","RAKUDP",Name,Id,Auths,Data,TTL,"HIGH_PRIORITY","RELIABLE"}
return game:GetService("HttpService"):JSONEncode(Packet)
end
-- Starting Attempts
local Error,Success = pcall(function()
-- Rewrite Replication Settings with Fake Authentication
Network:RefreshReplicationSettings(true, Auth, Options)
-- Get Replicator with Fake Authentication
local Replicator = Network:GetReplicator(Auth)
-- Set Replication Rule To Replicate Malicious Behaviour
Replicator:SetReplicationRule({replicationFiltering = false,firewallWhitelist =
{game:GetService("Players").LocalPlayer},legacyFilteringEnabled =
false,replicatedInstances = {game},}
)
local IP = -- Put Server IP Here
if Success then
print("You are now able to replicate everything from your clientsided executor")
else
print("Failed, please try again")
end