Perfect World Open Source Emulator

Page 7 of 14 FirstFirst 1234567891011121314 LastLast
Results 91 to 105 of 202
  1. #91
    Angelemu founder tbnanubis is offline
    MemberRank
    Mar 2011 Join Date
    Unicorn ForestLocation
    527Posts

    Re: Perfect World Open Source Emulator

    That is the reason why we have our own sniffer (which is also available for public).
    Maybe i get some time to build a filter function for that, but if you have nice text editors (notepad++ or similar) you can easily navigate and/or filter the produced log files.
    They include the full packet data each line a packet with info on which direction it was sniffed. You can easily find Q/A sequences this way.

  2. #92
    Valued Member EndyBH is offline
    MemberRank
    Jan 2009 Join Date
    BrazilLocation
    131Posts

    Re: Perfect World Open Source Emulator

    The Sniffer is avariable in the forum of the AngelEMU?

  3. #93
    Valued Member Goodlookinguy is offline
    MemberRank
    Dec 2010 Join Date
    101Posts

    Re: Perfect World Open Source Emulator

    Get it from the repo. You can find a link at Source Checkout - angelica-emulator - Project Hosting on Google Code

  4. #94
    Valued Member EndyBH is offline
    MemberRank
    Jan 2009 Join Date
    BrazilLocation
    131Posts

    Re: Perfect World Open Source Emulator

    Below, follow a class to create hash, I found in a Article than I readed in Internet and I'm using to record passwords with Cryptography SHA1 in AION Control Panel. I Just dont remember the Author Name. I hope than can be someone utility.

    /// <summary>
    /// Enumerator with types class for criation Hash.
    /// </summary>
    public enum HashProvider
    {
    /// <summary>
    /// Compute a hash SHA1 for data.
    /// </summary>
    SHA1,
    /// <summary>
    /// Compute a hash SHA256 for Data.
    /// </summary>
    SHA256,
    /// <summary>
    /// Compute a hash SHA384 for Data.
    /// </summary>
    SHA384,
    /// <summary>
    /// Compute a hash SHA512 hash for Data.
    /// </summary>
    SHA512,

    MD5
    }
    public class Hash
    {
    #region Private members
    private HashAlgorithm _algorithm;
    #endregion

    #region Constructors

    public Hash()
    {
    _algorithm = new SHA1Managed();
    }

    public Hash(HashProvider hashProvider)
    {
    switch (hashProvider)
    {
    case HashProvider.MD5:
    _algorithm = new MD5CryptoServiceProvider();
    break;
    case HashProvider.SHA1:
    _algorithm = new SHA1Managed();
    break;
    case HashProvider.SHA256:
    _algorithm = new SHA256Managed();
    break;
    case HashProvider.SHA384:
    _algorithm = new SHA384Managed();
    break;
    case HashProvider.SHA512:
    _algorithm = new SHA512Managed();
    break;
    }
    }
    #endregion

    #region Public methods
    public string GetHash(string plainText)
    {
    byte[] cryptoByte = _algorithm.ComputeHash(ASCIIEncoding.ASCII.GetBytes(plainText));

    return Convert.ToBase64String(cryptoByte, 0, cryptoByte.Length);
    }
    public string GetHash(FileStream fileStream)
    {
    byte[] cryptoByte;

    cryptoByte = _algorithm.ComputeHash(fileStream);
    fileStream.Close();

    return Convert.ToBase64String(cryptoByte, 0, cryptoByte.Length);
    }
    #endregion
    }

  5. #95
    uint is best int. Swoosh91 is offline
    MemberRank
    Feb 2010 Join Date
    BerlinLocation
    712Posts

    Re: Perfect World Open Source Emulator

    It uses HMAC MD5, SHA2-256 is just an optional auth method which was never used before though. You cant use it as long as server requests HMAC.

  6. #96
    Valued Member EndyBH is offline
    MemberRank
    Jan 2009 Join Date
    BrazilLocation
    131Posts

    Re: Perfect World Open Source Emulator

    Stranger, Somebody said than the Authentication of the PW was SHA1, Ok forget about this, I will continue trying.XD

  7. #97
    Proficient Member VisionNET is offline
    MemberRank
    Jul 2009 Join Date
    196Posts

    Re: Perfect World Open Source Emulator

    it looks like the project is inactive now or something no one has been here in 3 weeks

  8. #98
    Angelemu founder tbnanubis is offline
    MemberRank
    Mar 2011 Join Date
    Unicorn ForestLocation
    527Posts

    Re: Perfect World Open Source Emulator

    Quote Originally Posted by VisionNET View Post
    it looks like the project is inactive now or something no one has been here in 3 weeks
    As i have very few time at the moment and there is still the max_packet_size problem and some missing stuff in the enter_world packet there will not be much progress soon.
    As there is spreading more and more information on previously unknown stuff (as the 1.2.6 elem structs) there will be much progress when login stuff is done.
    The DB part is now officially in development since the person who does it has time now. If you want to contribute something, get the source, understand it and suggest fixes

  9. #99
    Proficient Member VisionNET is offline
    MemberRank
    Jul 2009 Join Date
    196Posts

    Re: Perfect World Open Source Emulator

    ok i will look at it i cant say i can contribute programming wise cause i only know little programming but i can try oh and does the current version of this connect to the latest patch pwi client? it dont seem to be working for me say something about version dont match


    good luck with this i really hope you succeed where everyone else has failed to try im sure with everyone assisting on this it will come alive im 100% sure this will be s success.
    Last edited by VisionNET; 08-04-11 at 10:07 PM.

  10. #100
    Angelemu founder tbnanubis is offline
    MemberRank
    Mar 2011 Join Date
    Unicorn ForestLocation
    527Posts

    Re: Perfect World Open Source Emulator

    ill check and update the hash tomorrow, maybe i just forget to upload the change...

  11. #101
    Proficient Member VisionNET is offline
    MemberRank
    Jul 2009 Join Date
    196Posts

    Re: Perfect World Open Source Emulator

    Quote Originally Posted by tbnanubis View Post
    ill check and update the hash tomorrow, maybe i just forget to upload the change...
    thanks i definitly wanna try this out

  12. #102
    Angelemu founder tbnanubis is offline
    MemberRank
    Mar 2011 Join Date
    Unicorn ForestLocation
    527Posts

    Re: Perfect World Open Source Emulator

    new version is uploaded, works with pwi v505

  13. #103
    Don't Ask About Tideborn vixio_dv is offline
    MemberRank
    Feb 2010 Join Date
    UKLocation
    774Posts

    Re: Perfect World Open Source Emulator

    server maintenance in proggres..
    Last edited by vixio_dv; 10-04-11 at 06:11 PM.

  14. #104
    Angelemu founder tbnanubis is offline
    MemberRank
    Mar 2011 Join Date
    Unicorn ForestLocation
    527Posts

    Re: Perfect World Open Source Emulator

    oops... ill check that
    fixed, didnt notice they changed version to 1.4.4 :sorry:
    Last edited by tbnanubis; 10-04-11 at 07:30 PM.

  15. #105
    Nerd-IO Romulan is offline
    MemberRank
    Feb 2009 Join Date
    BelgiumLocation
    3,333Posts

    Re: Perfect World Open Source Emulator

    Lol same I didn't notice too



Advertisement