Results 1 to 3 of 3
  1. #1
    leeonardo
    leeonardo is offline
    Moderator leeonardo's Avatar
    Join Date
    2012 Jan
    Location
    Here I am.
    Posts
    2,219
    Thanks Thanks Given 
    48
    Thanks Thanks Received 
    3,122
    Thanked in
    737 Posts
    Rep Power
    15

    Packet Sniffing, Analysis and Editing

    It's a tutorial to learn how packets work, a basic explication of how capture then and edit by analysis.
    The first thing you need is capture the packet, can do it using wpe pro or a debbuger, but if you use wpe pro need to decrypt the packet, because;

    Using wpe pro(get the packet encrypted)
    Code:
    C6 DE 72 63 01 21 D0 DD 0B 76 CC B3 EE D6 DE DE 82 DE DE DE 72 21 21 21
    Debbuger(get the packet before encryption)
    Code:
    18 00 00 00 01 00 0F 03 00 00 00 00 40 08 00 00 00 00 00 00 00 00 00 00
    Now just need analysis, usually the packets follow the following logic:

    00:=Buffer Size;
    04:=MyIndex;
    06:=Opcode;
    12:=TargetID;
    16:=Type1;
    20:=Type2;

    Start count by zero, so,

    18 00 00 00 01 00 0F 03 00 00 00 00 40 08 00 00 00 00 00 00 00 00 00 00 - Packet of clicking on NPC.

    00:=18;
    04:=1;
    06:=0F 03;(here you invert the bytes, then "0F 30" turn "30F"
    12:=40 08;(invert too and converto from hex to dec, 840 hex = 2112 = dec.
    16:=0;
    20:=0;

    In this case you don't need set the value of your index, then the packet will be something like

    PWORD(INTEGER(Buffer)+00)^:=$18;
    PWORD(INTEGER(Buffer)+06)^:=$30F;
    PWORD(INTEGER(Buffer)+12)^:=2112;//Set how you think better $840(hex) or 2112(dec)
    PWORD(INTEGER(Buffer)+16)^:=0;
    PWORD(INTEGER(Buffer)+20)^:=0;

    This just will open the npc chat.

    To edit the packet now you need find new values of type1 and type2 and they function, like

    Type1 = 5 (Open Store, so you can open the store of any npc)

    so changing to PWORD(INTEGER(Buffer)+16)^:=5; will open the store of selected NPC.

    You cant teleport from any npc too editing type1 and type2, set "3" on type1 and "1"(for example) on type2 to go Ursula, "2" to go city and etc..

    The packet will be something like

    PHP Code:
    Function NPC(Type1Type2Integer);
    var
    Buffer:Array Of Byte;
    begin
    SetLength
    (Buffer, $18);
    PWORD(INTEGER(Buffer)+00)^:=$18;
    PWORD(INTEGER(Buffer)+06)^:=$30F;
    PWORD(INTEGER(Buffer)+12)^:=TargetID;//it's the function to get npc id
    PWORD(INTEGER(Buffer)+16)^:=Type1;
    PWORD(INTEGER(Buffer)+20)^:=Type2;
    SendPacket(Buffer, $18);
    end
    So to use is simple,

    If want open store of select npc, just insert the function

    NPC(5, 0);

    or

    Spoiler



    If want teleport to some place, like ursula

    NPC(3, 1);

    or

    Spoiler



    É pra ficar com medo?



    Apenas observo...



    Não faço nenhum tipo de venda de hack no jogo, então se in game ver algum "Leonardo PGC" não acredite, pois será alguém tentando te roubar.

  2. The Following 3 Users Say Thank You to leeonardo For This Useful Post:


  3. #2
    Eminem PGC
    Eminem PGC is offline
    New member Eminem PGC's Avatar
    Join Date
    2014 Mar
    Posts
    36
    Thanks Thanks Given 
    46
    Thanks Thanks Received 
    21
    Thanked in
    8 Posts
    Rep Power
    0
    Very useful for studies, trainer etc ...

  4. #3
    greatlkk
    greatlkk is offline
    Guest
    Join Date
    2017 Apr
    Posts
    1
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    What's the best software for sniffing?

Similar Threads

  1. [Tutorial] Packets - Sniffing and Analysis
    By Dwar in forum Game Researching Tutorials
    Replies: 25
    Last Post: 2018-05-18, 03:56 PM
  2. Xingcod3 Analysis
    By desayer in forum Anti-Cheat Systems
    Replies: 7
    Last Post: 2014-10-02, 11:44 AM
  3. HackShield Analysis
    By Dwar in forum Anti-Cheat Systems
    Replies: 19
    Last Post: 2013-11-26, 04:54 PM
  4. [C#] NET Library for Packet Sniffing with Winpcap
    By Dwar in forum VB, .NET Framework
    Replies: 0
    Last Post: 2012-08-23, 11:39 AM
  5. [Tutorial] WPE Pro - (Attaching, Sniffing, Sending, Editing, Filters, Saving/Loading)
    By Shinky in forum Game Researching Tutorials
    Replies: 0
    Last Post: 2012-05-17, 02:34 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •