Results 1 to 4 of 4

Thread: HWID Online C#

  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

    HWID Online C#

    It's a easy tutorial of how do a simple and useful "system of key" to insert on your trainer.

    First add the following import's.


    PHP Code:
    using System.Management;
    using System.Net
    So after add the function that will generate the key for each computer.

    PHP Code:
    ManagementObjectCollection mbsList null// ManagementObjectCollection is referenced from the .:Ref folder ->
    ManagementObjectSearcher mbs = new ManagementObjectSearcher("Select * From Win32_processor");
    mbsList mbs.Get();
    string id "";
    foreach (
    ManagementObject mo in mbsList)
    {
     
    SerialID mo["ProcessorID"].ToString();//key done
     
    textBox1.Text = (SerialID);//key will be loaded on a textbox

    Now the "check function", you can add it on a button, checkbox, what you think better.

    PHP Code:
    try
                {
                    
    string GrabCPUID string.Empty;
                    
    WebClient webClient = new WebClient();//referenced by using System.Net;
                    
    string Key null;
                    
    Key webClient.DownloadString("http://example.com/example.txt");//there you define the host with .txt file that have the confirmed id's
                    
    webClient.Dispose();

    if (
    Key.Contains(textBox2.Text))
                    {
                        
    // If the HWID is on .txt file will return this    
                        
    MessageBox.Show("HWID Valid");
                    }
                    else
                    {
                        
    // If the HWID isn't on the .txt will return this.
                        
    MessageBox.Show("HWID Invalid");                            
                    }
                }
                catch (
    Exception)
                {
                    
    // If not connected to the internet or can't connect with the site of .txt file will return this
                    
    MessageBox.Show("Unable To Retrieve HWID");
                         } 


    É 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 4 Users Say Thank You to leeonardo For This Useful Post:


  3. #2
    snOw.
    snOw. is offline
    Member-in-training snOw.'s Avatar
    Join Date
    2011 Aug
    Posts
    169
    Thanks Thanks Given 
    21
    Thanks Thanks Received 
    349
    Thanked in
    44 Posts
    Rep Power
    0
    Well, various processors can have same ProcessorID.
    Furthermore, not all processors support this function.
    ProcessorID = model (x86, x64,arm)
    get the id of various hardware parts and merge into one.
    Projects in progress:
    SPS -> snOw Packet Sender (working with xtrap)

    Completed projects:
    [Please, register to view links]
    [Please, register to view links]
    [Please, register to view links]
    [Please, register to view links]

  4. The Following User Says Thank You to snOw. For This Useful Post:


  5. #3
    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
    Quote Originally Posted by snOw. View Post
    Well, various processors can have same ProcessorID.
    Furthermore, not all processors support this function.
    ProcessorID = model (x86, x64,arm)
    get the id of various hardware parts and merge into one.
    The most important is the function to do the online check, the function that get ID it's easy to change, don't need be the same that I posted.


    É 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.

  6. The Following User Says Thank You to leeonardo For This Useful Post:


  7. #4
    emoisback
    emoisback is offline
    Full member
    Join Date
    2011 Dec
    Location
    Indonesia there i'm
    Posts
    508
    Thanks Thanks Given 
    83
    Thanks Thanks Received 
    244
    Thanked in
    68 Posts
    Rep Power
    13
    u need to protect your file with encrypt data, coz its easy to bypass..
    Learn from PGC for Share on PGC..


    For another Stuff i have make try to find it [Please, register to view links]
    If i have help you, please thanks and respect ..

Similar Threads

  1. Replies: 1
    Last Post: 2014-09-12, 01:33 AM
  2. Replies: 0
    Last Post: 2013-06-01, 10:50 PM
  3. Replies: 0
    Last Post: 2013-05-30, 08:18 PM
  4. [Release] Warrior King Online (YBTX or Mercenary Online) Source!
    By System4z in forum MMO Server Developments
    Replies: 0
    Last Post: 2012-09-23, 04:32 AM

Posting Permissions

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