• STATISTIQUES
  • Il y a eu un total de 0 membres et 8940 visiteurs sur le site dans les dernières 24h pour un total de 8 940 personnes!
    Membres: 2 605
    Discussions: 3 579
    Messages: 32 816
    Tutoriels: 78
    Téléchargements: 38
    Sites dans l'annuaire: 58


  • ANNUAIRE
  • [FR] Root-Me
    Notre équipe se base sur un constat : à l'heure actuelle ou l'information tend à devenir...
    Hacking
    [EN] Big-Daddy
    Big-Daddy est site internet communautaire avec un effectif diversifié, y compris des artistes, des programmeur...
    Hacking
    [FR] Le top web
    Nous offrons une sélection la plus large possible de resources webmaster gratuites, hébergement gratuit...
    Webmaster
    [EN] CS Tutoring Center
    Site de challenge spécialisé dans les challenges de programmation C++ et java cependant, d'autres langages pe...
    Challenges
    [FR] PHP Débutant
    Apprendre le PHP par l'exemple, facilement et simplement. Réservé d'abord aux débutants....
    Programmation
    [EN] Exploit-db
    Une base de données d'exploits triés par genre (GHDB, Remote, Local, Web, DOS, ShellCode) à ...
    Vulnérabilités
    [FR] Forum-Webmaster
    Une communauté webmaster pour apporter / recevoir de l'aide en création de site internet. Webmaster...
    Webmaster

  • DONATION
  • Si vous avez trouvé ce site internet utile, nous vous invitons à nous faire un don du montant de votre choix via Paypal. Ce don servira à financer notre hébergement.

    MERCI!




Note de ce sujet :
  • Moyenne : 0 (0 vote(s))
  • 1
  • 2
  • 3
  • 4
  • 5
[C#] Crypto HWID
23-09-2013, 21h51 (Modification du message : 23-09-2013, 21h56 par sakiir.)
Message : #1
sakiir Hors ligne
[sakiir@Ubuntu]:~$ ./ExploitMe ShellC0de
*



Messages : 411
Sujets : 51
Points: 34
Inscription : Sep 2012
[C#] Crypto HWID
Bonjour ,
J'ai fais un petit code sale qui me permet de recuperer un identifiant machine "unique" .
c'est plustot simple je prend le nom de la machine, j'exerce une petite fonction crypto dessus, ensuite je fais pareil avec le nom d'utilisateur , je concataine les deux chaines puis je renvoi le MD5 de cette chaine .

Voici le code pour les interessé :

Class SaCrypt :
Code :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Security.Cryptography;

namespace HWIDGeneratorV2
{
    class SaCrypt
    {
        public string HWID(string bBase, string bBase2)
        {
            string finale = "";
            int i;
            uint tmp = 0;
            int tmp2 = 0;
            string part1 = "";
            string part2 = "";

            for (i = 0; i != bBase.Length; i++)
            {
                tmp = bBase[i] % 0xDEADBEEF * 0x99;
            }

            for (i = 0; i != bBase.Length; i++)
            {
                tmp2 = bBase[i] ^ 0x3;
            }
            part1 = tmp.ToString() + "-" + tmp2.ToString();


            tmp = 0;
            tmp2 = 0;

            for (i = 0; i != bBase.Length; i++)
            {
                tmp = bBase[i] % 0xDEADBEEF * 0x99;
            }
            for (i = 0; i != bBase.Length; i++)
            {
                tmp2 = bBase[i] ^ 0x3;
            }
            part2 = tmp.ToString() + "-" + tmp2.ToString();
            finale = MD5string(part1 + "|" + part2);
            return (finale);
        }

        private string MD5string(string input)
        {
            MD5 md5 = System.Security.Cryptography.MD5.Create();
            byte[] inputBytes = System.Text.Encoding.ASCII.GetBytes(input);
            byte[] hash = md5.ComputeHash(inputBytes);
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < hash.Length; i++)
            {
                sb.Append(hash[i].ToString("X2"));
            }
            return sb.ToString();
        }
    }
}


Form1 :
Code :
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;


namespace HWIDGeneratorV2
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            SaCrypt s = new SaCrypt();
            textBox1.Text = s.HWID(Environment.MachineName.ToString(), Environment.UserName.ToString());
        }

        private void tetbox1_Keydown(object sender, KeyEventArgs e)
        {
            if (e.KeyCode == Keys.Enter)
            {
                SaCrypt s = new SaCrypt();
                textBox1.Text = s.HWID(Environment.MachineName.ToString(), Environment.UserName.ToString());
            }

            if (e.KeyCode == Keys.Back)
            {
                textBox1.Text = "";
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            textBox1.Text = "";
        }



    }
}

Au Passage j'ai pas encore trouver comment proteger son code comme on pourrait le faire dans d'autre langage autre que les langage Windows ..
+1 (2) -1 (2) Répondre


Messages dans ce sujet
[C#] Crypto HWID - par sakiir - 23-09-2013, 21h51
RE: [C#] Crypto HWID - par notfound - 23-09-2013, 21h59
RE: [C#] Crypto HWID - par supersnail - 23-09-2013, 21h59
RE: [C#] Crypto HWID - par 0pc0deFR - 23-09-2013, 22h03
RE: [C#] Crypto HWID - par sakiir - 23-09-2013, 22h06
RE: [C#] Crypto HWID - par crown - 23-09-2013, 22h24
RE: [C#] Crypto HWID - par Luxerails - 23-09-2013, 22h23
RE: [C#] Crypto HWID - par b0fh - 23-09-2013, 22h30
RE: [C#] Crypto HWID - par gruik - 23-09-2013, 22h50
RE: [C#] Crypto HWID - par sakiir - 24-09-2013, 07h12

Atteindre :


Utilisateur(s) parcourant ce sujet : 1 visiteur(s)
N-PN
Accueil | Challenges | Tutoriels | Téléchargements | Forum | Retourner en haut