forked from jaypipes/ghw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOS_windows.go
138 lines (130 loc) · 4.24 KB
/
OS_windows.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
package ghw
import (
"strings"
"time"
"github.com/StackExchange/wmi"
"golang.org/x/sys/windows/registry"
)
const wqlGetComputerInfo = "SELECT BuildNumber, BuildType, InstallDate, Manufacturer, Name, OSArchitecture, WindowsDirectory, SerialNumber, Version FROM Win32_OperatingSystem"
type win32GetComputerInfo struct {
BuildNumber string
BuildType string
InstallDate time.Time
Manufacturer string
Name string
OSArchitecture string
WindowsDirectory string
SerialNumber string
Version string
}
func (ctx *context) osFillInfo(info *OSInfo) error {
var win32GetComputerInfoDescriptions []win32GetComputerInfo
if err := wmi.Query(wqlGetComputerInfo, &win32GetComputerInfoDescriptions); err != nil {
return err
}
// Filling Info
info.Name = strings.TrimSpace(strings.Split(win32GetComputerInfoDescriptions[0].Name, "|")[0])
info.Version = win32GetComputerInfoDescriptions[0].Version
info.Architecture = win32GetComputerInfoDescriptions[0].OSArchitecture
info.Serial = win32GetComputerInfoDescriptions[0].SerialNumber
info.License = "unknown"
if err := fillLicense(info); err != nil {
return err
}
return nil
}
/*
Tested On:
| OS | Version |
| ------------------------------------------|------------|
| Microsoft Windows 10 Pro | 10.0.18362 |
| Microsoft Windows Server 2008 R2 Standard | 6.1.7601 |
*/
func fillLicense(info *OSInfo) error {
// Opening main key to find DigitalProductId
mainKey, err := registry.OpenKey(registry.LOCAL_MACHINE, `SOFTWARE\Microsoft\Windows NT\CurrentVersion`, registry.QUERY_VALUE)
if err != nil {
return err
}
defer mainKey.Close()
digitalProductID, _, _ := mainKey.GetBinaryValue("DigitalProductId")
/*
splittedVersion := strings.Split(info.Version, ".")
major, err := strconv.Atoi(splittedVersion[0])
if err != nil {
return err
}
minor, err := strconv.Atoi(splittedVersion[1])
if err != nil {
return err
}
isWin8OrUp := (major > 6 || (major == 6 && minor >= 2))
*/
info.License = decodeProductKeyWin8AndUp(digitalProductID)
/*if isWin8OrUp {
info.License = decodeProductKeyWin8AndUp(digitalProductID)
} else {
info.License = decodeProductKeyUpToWindowsSeven(digitalProductID)
}*/
return nil
}
// See: https://github.com/mrpeardotnet/WinProdKeyFinder/blob/master/WinProdKeyFind/KeyDecoder.cs#L115
func decodeProductKeyWin8AndUp(key []byte) string {
productKey := ""
const alphabet = "BCDFGHJKMPQRTVWXY2346789"
const keyOffset = 52
// Check if OS is Windows 8
isWin8 := byte((key[66] / 6) & 1)
key[66] = byte((key[66] & 0xf7) | (isWin8&2)*4)
last := 0
for i := 24; i >= 0; i-- {
current := 0
for j := 14; j >= 0; j-- {
current = current * 256
current = int(key[j+keyOffset]) + current
key[j+keyOffset] = byte(current / 24)
current = current % 24
}
last = current
productKey = string(alphabet[current]) + productKey
}
// Handling the special "N" character
if isWin8 == byte(1) {
if last > 0 { // Inserting in "last" position
keypart1 := productKey[1 : last+1]
keypart2 := productKey[last+1:]
productKey = keypart1 + "N" + keypart2
} else if last == 0 { // Removing the first character and using N
productKey = "N" + productKey[1:]
}
}
// Adding "-" separator
productKey = productKey[0:5] + "-" + productKey[5:10] + "-" + productKey[10:15] + "-" + productKey[15:20] + "-" + productKey[20:]
return productKey
}
/*// See: https://github.com/mrpeardotnet/WinProdKeyFinder/blob/master/WinProdKeyFind/KeyDecoder.cs#L69
func decodeProductKeyUpToWindowsSeven(key []byte) string {
const keyStartIndex = 52
const keyEndIndex = keyStartIndex + 15
const digits = "BCDFGHJKMPQRTVWXY2346789"
const decodeLength = 29
const decodeStringLength = 15
productKey := make([]rune, decodeLength)
key = key[keyStartIndex : keyEndIndex+1]
for i := decodeLength - 1; i >= 0; i-- {
// Every sixth char is a separator.
if (i+1)%6 == 0 {
productKey[i] = rune('-')
} else {
// Do the actual decoding.
var digitMapIndex = 0
for j := decodeStringLength - 1; j >= 0; j-- {
var byteValue = byte(digitMapIndex<<8) | key[j]
key[j] = byteValue / 24
digitMapIndex = int(byteValue % 24)
productKey[i] = rune(digits[digitMapIndex])
}
}
}
return string(productKey)
}*/