Understanding packet's a bit better.

Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    Browser. Nova is offline
    MemberRank
    Nov 2008 Join Date
    --Location
    400Posts

    Understanding packet's a bit better.

    Thought it might give some people a prod forward.

    Parameter types : (Credits to Dexgod.)

    0x00: int
    0x01: uint
    0x02: float
    0x03: bool
    0x04: string
    0x05: vector
    0x06: position
    0x07: direction
    0x08: color
    0x09: uid
    0x0A: blob
    0x0B: char
    0x0C: uchar
    0x0D: short
    0x0E: ushort
    0x0F: int64
    0x10: uint64
    GunZ packet protocol : (Credits to Dexgod and Wowus, I found it in his anticheat, lol.)
    [x] = BYTE
    [ x ] = SHORT
    [ ... ] = Variable size

    HEADER PAYLOAD
    [ A ][ B ][ C ][ D ] [ E ][F][ ... G ... ]

    A
    ==
    Version information.
    0x0A for encryption/decryption key
    0x64 for decrypted
    0x65 for encrypted
    TODO: Check veldi for encryption/decryption algorithm.

    B
    ==
    The size of the packet.
    NOTE: This includes the size of the header.

    C
    ==
    The packet's checksum.
    Set to zero, build the rest of the packet, then run the entire packet through the checksum algorithm.

    D
    ==
    The size of the packet's payload.
    NOTE: Does NOT include the size of the header.

    E
    ==
    The command ID. Excellent for logging! See "Dexgod Command Dump.txt"

    F
    ==
    The packet ID.
    Starts at zero and is incremented every time a packet is sent.
    Used to verify packet integrity.
    IDEA: When sending packets in the hooked send and recv functions, keep a private packetID and add
    the two together whenever a packet is sent. It starts at zero and is incremented every time a
    packet is sent.

    G
    ==
    D-sizeof(E)-sizeof(F) bytes long.
    The parameters to the command.
    Packet ID's and parameters : (Credits to Dexgod.)

    Going to upload it as it's a pretty bigass file.

    http://filebeam.com/386cc741eab2da508a7c2556d9364d5c

    (I would suggest you open it in notepadd++, as it's pretty big.)


    Credits to Dexgod & Wowus (I believe :P)


  2. #2
    Member `YellowBoy is offline
    MemberRank
    Dec 2009 Join Date
    78Posts

    Re: Understanding packet's a bit better.

    Oh wow um ok No.

  3. #3
    Valued Member X1478 is offline
    MemberRank
    Feb 2010 Join Date
    107Posts

    Re: Understanding packet's a bit better.

    thanks .

  4. #4
    人◕ ‿‿ ◕人 Forean is offline
    MemberRank
    Jul 2008 Join Date
    1,183Posts

    Re: Understanding packet's a bit better.

    cool thanks.

  5. #5
    Animu Addicted Number12 is offline
    MemberRank
    Apr 2008 Join Date
    Old Sunny CALocation
    1,264Posts

    Re: Understanding packet's a bit better.

    thanks.

  6. #6
    Account Upgraded | Title Enabled! killerzx is offline
    MemberRank
    Dec 2008 Join Date
    638Posts

    Re: Understanding packet's a bit better.

    what does it do? O_O.
    Is it just a txt file explaining on what is packets are?

    ---------- Post added at 12:29 AM ---------- Previous post was at 12:26 AM ----------

    what does it do? O_O.
    Is it just a txt file explaining on what is packets are?

  7. #7
    人◕ ‿‿ ◕人 Forean is offline
    MemberRank
    Jul 2008 Join Date
    1,183Posts

    Re: Understanding packet's a bit better.

    Quote Originally Posted by killerzx View Post
    what does it do? O_O.
    Is it just a txt file explaining on what is packets are?

    ---------- Post added at 12:29 AM ---------- Previous post was at 12:26 AM ----------

    what does it do? O_O.
    Is it just a txt file explaining on what is packets are?


    Maybe... :O


    Did you download? if you did then you should know..

  8. #8
    Account Upgraded | Title Enabled! alfredao is offline
    MemberRank
    Jan 2008 Join Date
    Coronel FabriciLocation
    705Posts

    Re: Understanding packet's a bit better.

    Thanks ;D

  9. #9
    Extreme Coder - Delphi bounty-hunter is offline
    MemberRank
    Sep 2007 Join Date
    GunZone MansionLocation
    1,725Posts

    Re: Understanding packet's a bit better.

    Ok, now if someone explained how to manipulate the packets, then maybe i could start working on a project ...

  10. #10
    Veni, Vidi, Vici Arcelor is offline
    MemberRank
    Jan 2010 Join Date
    Delhi, IndiaLocation
    1,763Posts

    Re: Understanding packet's a bit better.

    Thanks.
    Does anyone know Dex's MSN or something?

  11. #11

    Re: Understanding packet's a bit better.

    Thanks, but I had this for quite a while.

  12. #12
    Browser. Nova is offline
    MemberRank
    Nov 2008 Join Date
    --Location
    400Posts

    Re: Understanding packet's a bit better.

    Quote Originally Posted by bounty-hunter View Post
    Ok, now if someone explained how to manipulate the packets, then maybe i could start working on a project ...
    I believe somebody released Kore source, open the "Packet.h" file and that will give you the packet encryption/decryption and everything else you need to know.

    Quote Originally Posted by Arcelor View Post
    Thanks.
    Does anyone know Dex's MSN or something?
    I believe he left the GunZ world.

  13. #13
    Account Upgraded | Title Enabled! killerzx is offline
    MemberRank
    Dec 2008 Join Date
    638Posts

    Re: Understanding packet's a bit better.

    are we supposed to edit the txt file? o-o or compile it?

  14. #14
    Browser. Nova is offline
    MemberRank
    Nov 2008 Join Date
    --Location
    400Posts

    Re: Understanding packet's a bit better.

    Quote Originally Posted by `YellowBoy View Post
    Oh wow um ok No.
    "Euro GunZ Coder | Hacker " - We both know that's bullshit.
    Quote Originally Posted by killerzx View Post
    are we supposed to edit the txt file? o-o or compile it?
    Cause they really look a lot like a programming language.

  15. #15
    Account Upgraded | Title Enabled! killerzx is offline
    MemberRank
    Dec 2008 Join Date
    638Posts

    Re: Understanding packet's a bit better.

    Quote Originally Posted by Nova View Post
    Cause they really look a lot like a programming language.
    so we compile it to a dll? O-o



Page 1 of 2 12 LastLast

Advertisement