Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Facebook Bots patched!! #129

Closed
philw1508 opened this issue Mar 29, 2016 · 6 comments
Closed

Facebook Bots patched!! #129

philw1508 opened this issue Mar 29, 2016 · 6 comments

Comments

@philw1508
Copy link

everything works normal but with no facebook mass... so its like 10 mass bots... but its strange that all my tokens work.... maybe we have to get some other sort than datr c_user or xs cookies

@dadas190
Copy link

I am a developer of my own agario client in C and I think that they have disabled opcode 82 that was used to login, now official client sends the FB token in a packet with opcode 0x66 (102), however the format of this packet is unknown (to me)

EDIT: I was able to get FB login working again in my bot, replacing login packet 82 with new 102, this is the packet format in hex:

66 08 01 12 [token_len+25] 01 08 0a 52 [token_len+20] 01 0a 0d 08 05 12 05 31 2e 34 2e 39 18 00 20 00 10 02 1a [token_len] 01 [token_itself]

(token_len is length of fb token in bytes/chars), i don't know what these other values are, but this works and i am getting spawned with correct size

It also seems like only 1 bot can be spawned at a time for every facebook account...

When my bot is running, i can't log in to my fb account via agar.io, but mobile version works, so I guess it is possible to have multiple bots by creating new mobile-client.. Anyone up for the challenge? :P

@agarioBotDev
Copy link

@xXx-stalin-666-money-xXx i'm. skype: david_the_biggest_

@agarioBotDev
Copy link

@xXx-stalin-666-money-xXx actually not unlimited fb bots, i hae that already, but 132 mass bots - and programming that in C# sounds interesting too

@thisismo
Copy link

Do you get better performance with your rewritten Client?

@xxxsomethingxd
Copy link

if(this.auth_token) {
buf = new Buffer(2 + this.auth_token.length);
buf.writeUInt8(102, 0);
buf.writeUInt8(this.auth_provider, 1);
for (i=1;i<=this.auth_token.length;++i) {
buf.writeUInt8(this.auth_token.charCodeAt(i-1), i+1);

i changed this still not working, how 2 fix?

@dadas190
Copy link

@skillize

This is the packet format in HEX..

66 08 01 12 [token_len+25] 01 08 0a 52 [token_len+20] 01 0a 0d 08 05 12 05 31 2e 34 2e 39 18 00 20 00 10 02 1a [token_len] 01 [token_itself]

And if it still doesn't work, you have probably been banned - check https://www.reddit.com/r/Agario/comments/4cl4vq/i_keep_getting_instantly_kicked/

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants