CheatBreaker detection

Status
This thread has been locked.

Rasturize

Investor & Server Manager ~ rasturize.com
Banned
Feedback score
25
Posts
854
Reactions
423
Resources
0
I'm looking for a plugin that will detect if a player is using cheatbreaker, and based on that do specific things for the player: Announce their name in chat, and add a custom prefix before their name (must work with my chat formatting plugins)

Please contact me on discord to discuss: @Rasturize#0001

Thanks!
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Risk

SaaS Enthusiast
Supreme
Feedback score
8
Posts
134
Reactions
60
Resources
0
I saw this earlier today, not sure if its what you're looking for though.
Link here
 

Rasturize

Investor & Server Manager ~ rasturize.com
Banned
Feedback score
25
Posts
854
Reactions
423
Resources
0
I saw this earlier today, not sure if its what you're looking for though.
Link here
I tried that earlier yeah, it didn't seem to work + doesn't offer the features I'm looking for. Thank you though.
 
Banned forever. Reason: Scamming (https://builtbybit.com/threads/rasturize-scam-report.521190/)

devo

Premium
Feedback score
33
Posts
354
Reactions
194
Resources
1
I tried that earlier yeah, it didn't seem to work + doesn't offer the features I'm looking for. Thank you though.
I'm friends with the developer of that. He can probably make you a custom version :) his discord is abHi#7171
 

BrianGrug

Full time failure
Supreme
Feedback score
56
Posts
1,473
Reactions
995
Resources
5
I don't have a computer at the moment but from what I can see from the plugin posted about, this is how you detect if a player is using cheatbreak:
Code:
    public void onPluginMessageReceived(String channel, Player player, byte[] arg2) {
        boolean cheatbreaker = false;
        if (channel.equals("CB|INIT") || channel.equals("CB-Binary")) {
            cheatbreaker = true;
        }
So you could just make an array and broadcast those who are not in said array.
 

Multimap

Feedback score
3
Posts
46
Reactions
11
Resources
0
I don't have a computer at the moment but from what I can see from the plugin posted about, this is how you detect if a player is using cheatbreak:
Code:
    public void onPluginMessageReceived(String channel, Player player, byte[] arg2) {
        boolean cheatbreaker = false;
        if (channel.equals("CB|INIT") || channel.equals("CB-Binary")) {
            cheatbreaker = true;
        }
So you could just make an array and broadcast those who are not in said array.
saw this too, but pretty dumb because couldn’t hacked clients send the same plugin message - strange :confused:
 

SkidRevenant

Feedback score
2
Posts
28
Reactions
22
Resources
0
I don't have a computer at the moment but from what I can see from the plugin posted about, this is how you detect if a player is using cheatbreak:
Code:
    public void onPluginMessageReceived(String channel, Player player, byte[] arg2) {
        boolean cheatbreaker = false;
        if (channel.equals("CB|INIT") || channel.equals("CB-Binary")) {
            cheatbreaker = true;
        }
So you could just make an array and broadcast those who are not in said array.

That doesn't work, cheatbreaker doesn't contain any of those strings. The closest thing to those strings are
e4eec264.png


And all of the "CheatBreaker" strings in their client are these:
0deaec6c.png

This which is the main menu.
e29fc455.png

This which is a picture.

12360b0a.png

This which is the settings.

Also I don't even know why everyone is so excited for CheatBreaker when its protection is deficient as hell.

https://www.cheatbreaker.com/api/cosmetic/all

https://files.cheatbreaker.com/gamefiles/bac

No one on this forum will be able to provide you with CheatBreaker detection as no one here knows anything about CheatBreaker. Just keep in mind that there's no point in making CheatBreaker detection
 

SkidRevenant

Feedback score
2
Posts
28
Reactions
22
Resources
0
It's not a string in the code as you are looking for, it's a packet sent 10-15 seconds after a connection is detected by the client. This packet does allow people to see wether you connected on CB or not, only downside with this current method of detection is that it is easy to create a mod/client to also send this same packet, basically telling the server they're on CB. Hopefully CheatBreaker/FrozenOrb release the API soon so servers can start using it more as an anticheat and not an fps boost for the people on it.

EDIT: Anyway basically yes this does 'somewhat' work for now :p

The Clientbound CustomPayload packet takes in 2 arguments.

String channel, PacketBuffer data

CheatBreaker doesn't send that payload every 10-15th second either. The payload isn't the way CheatBreaker shows the server that they really are on CheatBreaker. The "CB-Binary" is just to throw off skids trying to spoof. There's another way to check if a person is using CheatBreaker which does not contain the "CB-Binary" redundant heartbeat.
 

MarkFreak

Feedback score
11
Posts
558
Reactions
280
Resources
0
That doesn't work, cheatbreaker doesn't contain any of those strings. The closest thing to those strings are
e4eec264.png


And all of the "CheatBreaker" strings in their client are these:
0deaec6c.png

This which is the main menu.
e29fc455.png

This which is a picture.

12360b0a.png

This which is the settings.

Also I don't even know why everyone is so excited for CheatBreaker when its protection is deficient as hell.

https://www.cheatbreaker.com/api/cosmetic/all

https://files.cheatbreaker.com/gamefiles/bac

No one on this forum will be able to provide you with CheatBreaker detection as no one here knows anything about CheatBreaker. Just keep in mind that there's no point in making CheatBreaker detection

I also found the /gamefiles/bac when I was intercepting HTTP requests Cheatbreaker Launcher makes but do you actually know the meaning? It just seems like raw binary data to me.
 
Status
This thread has been locked.
Top