Пример #1
0
        // Token: 0x060000C6 RID: 198 RVA: 0x0000A9A0 File Offset: 0x00008BA0
        private static string CpuId()
        {
            string text = HWID.Identifier("Win32_Processor", "UniqueId");
            string result;

            if (text != "")
            {
                result = text;
            }
            else
            {
                text = HWID.Identifier("Win32_Processor", "ProcessorId");
                if (text != "")
                {
                    result = text;
                }
                else
                {
                    text = HWID.Identifier("Win32_Processor", "Name");
                    if (text == "")
                    {
                        text = HWID.Identifier("Win32_Processor", "Manufacturer");
                    }
                    text  += HWID.Identifier("Win32_Processor", "MaxClockSpeed");
                    result = text;
                }
            }
            return(result);
        }
Пример #2
0
 // Token: 0x060000C7 RID: 199 RVA: 0x0000AA38 File Offset: 0x00008C38
 private static string BiosId()
 {
     return(string.Concat(new string[]
     {
         HWID.Identifier("Win32_BIOS", "Manufacturer"),
         HWID.Identifier("Win32_BIOS", "SMBIOSBIOSVersion"),
         HWID.Identifier("Win32_BIOS", "IdentificationCode"),
         HWID.Identifier("Win32_BIOS", "SerialNumber"),
         HWID.Identifier("Win32_BIOS", "ReleaseDate"),
         HWID.Identifier("Win32_BIOS", "Version")
     }));
 }
Пример #3
0
 // Token: 0x060000CB RID: 203 RVA: 0x0000ABB0 File Offset: 0x00008DB0
 private static string MacId()
 {
     return(HWID.Identifier("Win32_NetworkAdapterConfiguration", "MACAddress", "IPEnabled"));
 }
Пример #4
0
 // Token: 0x060000CA RID: 202 RVA: 0x0000AB7C File Offset: 0x00008D7C
 private static string VideoId()
 {
     return(HWID.Identifier("Win32_VideoController", "DriverVersion") + HWID.Identifier("Win32_VideoController", "Name"));
 }
Пример #5
0
 // Token: 0x060000C9 RID: 201 RVA: 0x0000AB2C File Offset: 0x00008D2C
 private static string BaseId()
 {
     return(HWID.Identifier("Win32_BaseBoard", "Model") + HWID.Identifier("Win32_BaseBoard", "Manufacturer") + HWID.Identifier("Win32_BaseBoard", "Name") + HWID.Identifier("Win32_BaseBoard", "SerialNumber"));
 }
Пример #6
0
 // Token: 0x060000C8 RID: 200 RVA: 0x0000AADC File Offset: 0x00008CDC
 private static string DiskId()
 {
     return(HWID.Identifier("Win32_DiskDrive", "Model") + HWID.Identifier("Win32_DiskDrive", "Manufacturer") + HWID.Identifier("Win32_DiskDrive", "Signature") + HWID.Identifier("Win32_DiskDrive", "TotalHeads"));
 }