Jump to content
Welcome, Guest
Existing user? Sign In

Sign In



Sign Up
The MatriX
  • Welcome To Ghbsys
  • CS GO Streaming Version is released. Have fun streaming while cheating!
  • Have a Payment Issue? Send us a Support ticket.
  • Make a thread if you need support or join our discord for live support.
  • Have Suggestions? Make a thread and you'll earn Ghbsys Points for implemented suggestions.
  • Join our discord to stay well connected! Don't forget to integrate your discord to the site
  • Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum

    Welcome to [GHB] - GAmEhAcKbAsTaRdS Forum, like most online communities you must register to view or post in our community, but don't worry this is a simple free process that requires minimal information for you to signup. Be apart of [GHB] - GAmEhAcKbAsTaRdS Forum by signing in or creating an account.
    • Start new topics and reply to others
    • Subscribe to topics and forums to get email updates
    • Get your own profile page and make new friends
    • Send personal messages to other members.

    [Release][OpenSource]HWID Login System


    NOP
     Share

    Recommended Posts

    I can't think of a point posting this here but well this might help people like sergemorel and dethblaze hiding sensitive data from NM. Also for people who is planing to code a login system

     

     

    The only way i might think of people getting the right hwid is bruteforce otherwise only patching , the rest is on you saving your a--

    As i said in the vid , you can add a database or whatever i just made it for the tut,

     

    Link : http://forum.ghbsys.net/index.php?/files/file/2190-opensrc-hwid-login-system-sample/

    Scan : http://www.virustotal.com/file-scan/report.html?id=63a15ce2818864b7588e16c49ecdbcaeb01c58cb94531d831b87b3cd03f90a1c-1320088432

     

    phpaysafecardript code

    <<?php
    
    if ( $_SERVER['HTTP_USER_AGENT'] != "Furious rocks")
    {
    echo "your are not welcomed here";
    exit;
    }
    
    class Foo {
     protected $mcrypt_cipher = MCRYPT_RIJNDAEL_128;
     protected $mcrypt_mode = MCRYPT_MODE_CBC;
    
     public function decrypt($key, $iv, $encrypted)
     {
       $iv_utf = mb_convert_encoding($iv, 'UTF-8');
       return mcrypt_decrypt($this->mcrypt_cipher, $key, base64_decode($encrypted), $this->mcrypt_mode, $iv_utf);
     }
    }
    
    
    
    $encrypted = $_POST['1asd91'];
    $key = $_POST['1asd92'];
    $iv = "@1B2c3D4e5F6g7H8";
    
    $foo = new Foo;
    $pos= strpos(  $foo->decrypt($key, $iv, $encrypted), "5C26E50B" );
    if ( $pos !== false)
    {
    echo "LOGGED IN *****";
    }
    else
    {
    echo "LOGIN FAILED";
    }
    
    ?>
    

    Credits :

    me for coding from 0 to this masterpiece /sarcasm

    @Brickzel much thanks for him for helping me and getting me to know a lot about http

    Unkown for the rijndael encryption in c#

    Edited by T0P-FAIL
    • Upvote 2
    Link to comment
    Share on other sites

    Guest
    This topic is now closed to further replies.
     Share

    • Recently Browsing   0 members

      • No registered users viewing this page.
    ×
    ×
    • Create New...