Categories > Coding > C# >
[REL] C# Anti-Banwave
Posted
I have some code for anti-ban from my open-sourced exploit (Coming out soon after bugs are fixed). lol no need to give credit skids (you probably won't anyways.) You need admin privileges to activate anti-ban though.
Anti-Ban ON (Interferes with Roblox Studio!):
using (StreamWriter w = File.AppendText(Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.System), @"drivers\etc\hosts")))
{
w.WriteLine("# Anti-Banwave Code"); // This line is useless
w.WriteLine("127.0.0.1 data.roblox.com");
w.WriteLine("127.0.0.1 roblox.sp.backtrace.io");
}
Anti-Ban OFF:
string path = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.System), "drivers\etc\hosts");
File.WriteAllLines(path, (from l in File.ReadLines(path) where l != "127.0.0.1 data.roblox.com" select l).ToList<string>());
File.WriteAllLines(path, (from l in File.ReadLines(path) where l != "127.0.0.1 roblox.sp.backtrace.io" select l).ToList<string>());
File.WriteAllLines(path, (from l in File.ReadLines(path) where l != "# Anti-Banwave Code" select l).ToList<string>());
Replied
@52186im proud of you for saying that. :)
VANISH UNHOLY SKID DEMONS
Cancel
Post
...
Replied
i have problem
https://prnt.sc/rm5s8j
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post