PlusEmu Revision 6070 - SSO Exploit [Urgent HELP needed]

Status
Not open for further replies.

Sly

I don't break the rules I bend them.
Oct 28, 2016
246
38
Hello guys recently one of my staff members called Sam was hacked and someone broadcasted this message

Can someone please guide me through this exploit in the Emulator I do not know how to fix it.

Untitled1.png

Untitled2.png
 

Meap

Don't need glasses if you C#
Nov 7, 2010
1,045
296


not sure if you'd have to edit how the sso ticket is handled in the cms because Idk how Brain works but this will set you on the right path
 
if you don't want to use that then I believe this should work also,
Reaplce SSOTicketEvent with this
Code:
using System;

using Plus.Communication.Packets.Incoming;
using Plus.HabboHotel.GameClients;
using Plus.Communication.Packets.Outgoing.Handshake;

namespace Plus.Communication.Packets.Incoming.Handshake
{
    public class SSOTicketEvent : IPacketEvent
    {
        public void Parse(GameClient Session, ClientPacket Packet)
        {
            if (Session == null || Session.RC4Client == null || Session.GetHabbo() != null)
                return;

            string SSO = Packet.PopString();
            if (string.IsNullOrEmpty(SSO) || SSO.Length < 15)
                return;

            Session.TryAuthenticate(SSO);
        }
    }
}
 
  • Like
Reactions: Sly
Status
Not open for further replies.

Users who are viewing this thread

Top