Windows 8.1 读取OA3 KEY代码

Windows 8.1 读取OA3 KEY代码:
#include "Windows.h"

int _tmain(int argc, _TCHAR* argv[])
{
    DWORD FirmwareTableProviderSignature;
    PVOID pFirmwareTableBuffer;
    DWORD BufferSize;
    UINT  BytesWritten;
    DWORD FirmwareTableID;
    DWORD *pFirmwareTableID;
    BOOL  foundTable = FALSE;
    BOOL  verbose = FALSE;
    BOOL  isbackup = FALSE;

    if (argc > 1) {
        if (wcscmp(argv[1], _T("-v")) == 0)
            verbose = TRUE;

        if (wcscmp(argv[1], _T("-b")) == 0)
            isbackup = TRUE;

        if (wcscmp(argv[1], _T("/?")) == 0){
            fprintf(stderr, "usage:\n\tmsdm.exe [-v] [-b]\n");
            fprintf(stderr, "  -v     show details\n");
            fprintf(stderr, "  -b     dump OA3K.BIN\n");
            return 1;
        }
    }

    FirmwareTableProviderSignature = 'ACPI';
    pFirmwareTableBuffer = NULL;
    BufferSize = NULL;

    // get buffer size, call with null values
    BufferSize = EnumSystemFirmwareTables(FirmwareTableProviderSignature, 
                                          NULL, 
                                          NULL);
    
    // alloc memory
    pFirmwareTableBuffer = malloc(BufferSize);

    // enum acpi tables
    BytesWritten = EnumSystemFirmwareTables(FirmwareTableProviderSignature, 
                                            pFirmwareTableBuffer, 
                                            BufferSize);
    
    // enumerate ACPI tables, look for MSDM table
    pFirmwareTableID = (DWORD*)pFirmwareTableBuffer;
    for (int i = 0; i < BytesWritten/4; i++)
    {
        FirmwareTableID = *pFirmwareTableID;
        if (verbose) printf("%.*s\n", 4, pFirmwareTableID);
        if (FirmwareTableID == _byteswap_ulong('MSDM')) {
            if (verbose) printf("Found MSDM table\n");
            foundTable = TRUE;
            break;
        }
        pFirmwareTableID++;
    }


    if (foundTable) {
        // get buffer size, call with null values
        BufferSize = GetSystemFirmwareTable (FirmwareTableProviderSignature, 
                                             FirmwareTableID,
                                             NULL,
                                             NULL);
        // alloc memory
        pFirmwareTableBuffer = malloc(BufferSize);

        BytesWritten = GetSystemFirmwareTable(FirmwareTableProviderSignature,
                                              FirmwareTableID,
                                              pFirmwareTableBuffer,
                                              BufferSize);

        /*
        Table description form Miocrosoft at: http://go.microsoft.com/fwlink/p/?LinkId=234834
        
        Microsoft Software Licensing Tables (SLIC and MSDM)
        http://msdn.microsoft.com/library/windows/hardware/hh673514
                                        Byte             Byte
        Field                            Lenght            Offset    Description
        ======                            =====            ======    ===========
        Signature                        4                0        MSDM
        Length                            4                4        Length, in bytes, of the entire table.
        Revision                        1                8        0x01
        Checksum                        1                9        Checksum of the entire table.
        OEMID                            6                10        An OEM-supplied string that identifies the OEM.
        OEM Table ID                    8                16        Optional motherboard/BIOS logical identifier.
        OEM Revision                    4                24        OEM revision number of the table for the supplied OEM Table ID.
        Creator ID                        4                28        Vendor ID of the utility that created the table.
        Creator Revision                4                32        Revision of the utility that created the table.
        Software Licensing Structure    Variable length    36        Proprietary data structure that contains all the licensing 
                                                                data necessary to enable Windows activation. 
                                                                Details can be found in the appropriate Microsoft OEM 
                                                                licensing kit by first visiting the Microsoft OEM website
                                                                (http://www.microsoft.com/oem/pages/index.aspx).
        */

        BYTE *Signature     = (BYTE*)memset(malloc(4+1), NULL, 4+1);
        UINT Length;
        BYTE Revision;
        BYTE Checksum;
        BYTE *OEMID         = (BYTE*)memset(malloc(6+1), NULL, 6+1);
        BYTE *OEMTbleID     = (BYTE*)memset(malloc(8+1), NULL, 8+1);
        BYTE OEMRev;
        BYTE *CreatorID     = (BYTE*)memset(malloc(4+1), NULL, 4+1);
        UINT CreatorRev;
        UINT SLS_Size = BytesWritten - 36;
        BYTE *SLS         = (BYTE*)memset(malloc(SLS_Size), NULL, SLS_Size);
        UINT SLS_Version;
        UINT SLS_Reserved;
        UINT SLS_DataType;
        UINT SLS_DataReserved;
        UINT SLS_DataLenght;
        BYTE *ProductKey = (BYTE*)memset(malloc(30+1), NULL, 30+1);

        
        memcpy_s(Signature, 4+1, (BYTE*)pFirmwareTableBuffer + 0, 4);
        Length = *(DWORD*)((BYTE*)pFirmwareTableBuffer + 4);
        Revision = *((BYTE*)pFirmwareTableBuffer + 8);
        Checksum = *((BYTE*)pFirmwareTableBuffer + 9);
        memcpy_s(OEMID, 6+1, (BYTE*)pFirmwareTableBuffer + 10, 6);
        memcpy_s(OEMTbleID, 8+1, (BYTE*)pFirmwareTableBuffer + 16, 8);
        OEMRev = *(DWORD*)((BYTE*)pFirmwareTableBuffer + 24);
        memcpy_s(CreatorID, 4+1, (BYTE*)pFirmwareTableBuffer + 28, 4);
        CreatorRev = *(DWORD*)((BYTE*)pFirmwareTableBuffer + 32);
        memcpy_s(SLS, SLS_Size, (BYTE*)pFirmwareTableBuffer + 36, SLS_Size);
        SLS_Version = *(DWORD*)((BYTE*)SLS);
        SLS_Reserved = *(DWORD*)((BYTE*)SLS + 4);
        SLS_DataType = *(DWORD*)((BYTE*)SLS + 8);
        SLS_DataReserved = *(DWORD*)((BYTE*)SLS + 12);
        SLS_DataLenght = *(DWORD*)((BYTE*)SLS + 16);
        memcpy_s(ProductKey, SLS_DataLenght, (BYTE*)SLS + 20, SLS_DataLenght);

        if (verbose) {
            printf("Signature         : %s\n", Signature);
            printf("Length            : %d\n", Length);
            printf("Revision          : %d\n", Revision);
            printf("Checksum          : %d\n", Checksum);
            printf("OEMID             : %s\n", OEMID);
            printf("OEM Table ID      : %s\n", OEMTbleID);
            printf("OEM Revision      : %d\n", OEMRev);
            printf("Creator ID        : %s\n", CreatorID);
            printf("Creator Revision  : %d\n", CreatorRev);
            printf("SLS Version       : %d\n", SLS_Version);
            printf("SLS Reserved      : %d\n", SLS_Reserved);
            printf("SLS Data Type     : %d\n", SLS_DataType);
            printf("SLS Data Reserved : %d\n", SLS_DataReserved);
            printf("SLS Data Lenght   : %d\n", SLS_DataLenght);
            printf("Key               : %s\n", ProductKey);
        } else {
            printf("Key:%s", ProductKey);
        }

        if (isbackup){
            // dump OA3 BIN file
            FILE *fp=fopen("OA3K.BIN","w");
            if (fp==NULL){
                printf("\nError: create file failed.");
                return 1;
            }

            PVOID pFTB=(BYTE*)pFirmwareTableBuffer+0x24;
            int size = fwrite(pFTB, BufferSize-0x24, 1, fp);
            if (size != 1){
                printf("\nError: write to file failed.");
                return 1;
            }

            size = BufferSize-0x24;
            if (size!=49){
                fprintf(stderr, "\nError: OA3K.BIN size error(%d bytes written)", size);
                fclose(fp);
                return 1;
            }else{
                fprintf(stderr, "\n%d bytes written", size);
            }

            fflush(fp);
            fclose(fp);
        }
        return 0;

    }else{
        printf("\nError: no key found!");
        return 1;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值