Categories > Coding > C# >

[REL] C# Anti-Banwave

Posts: 65

Threads: 15

Joined: Jan, 2020

Reputation: 0

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>());

  • 0

Added

@ghandy

I'm trying to set examples for da skids:

OPEN SOURCE YOUR F*CKING EXPLOIT

  • 0

classiccat

#becomeacat

vip

Posts: 421

Threads: 1

Joined: Aug, 2019

Reputation: -46

Replied

@52186im proud of you for saying that. :)

 

VANISH UNHOLY SKID DEMONS

  • 0

...

Posts: 5

Threads: 2

Joined: Mar, 2020

Reputation: 0

Replied

i have problem

 

https://prnt.sc/rm5s8j

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )