SEBWIN-577: Implemented detection of BIOS manufacturer & name.
This commit is contained in:
parent
a7bb5f543a
commit
20357c8e75
3 changed files with 96 additions and 44 deletions
|
@ -13,11 +13,21 @@ namespace SafeExamBrowser.SystemComponents.Contracts
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface ISystemInfo
|
public interface ISystemInfo
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The manufacturer and name of the BIOS.
|
||||||
|
/// </summary>
|
||||||
|
string BiosInfo { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Reveals whether the computer system contains a battery.
|
/// Reveals whether the computer system contains a battery.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
bool HasBattery { get; }
|
bool HasBattery { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The MAC address of the network adapter.
|
||||||
|
/// </summary>
|
||||||
|
string MacAddress { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The manufacturer name of the computer system.
|
/// The manufacturer name of the computer system.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -44,12 +54,7 @@ namespace SafeExamBrowser.SystemComponents.Contracts
|
||||||
string OperatingSystemInfo { get; }
|
string OperatingSystemInfo { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The MAC address of the network adapter
|
/// Provides the device ID information of the user's Plug and Play devices.
|
||||||
/// </summary>
|
|
||||||
string MacAddress { get; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Provides the DeviceID information of the user's Plug and Play devices
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
string[] PlugAndPlayDeviceIds { get; }
|
string[] PlugAndPlayDeviceIds { get; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,25 +19,23 @@ namespace SafeExamBrowser.SystemComponents
|
||||||
{
|
{
|
||||||
public class SystemInfo : ISystemInfo
|
public class SystemInfo : ISystemInfo
|
||||||
{
|
{
|
||||||
|
public string BiosInfo { get; private set; }
|
||||||
public bool HasBattery { get; private set; }
|
public bool HasBattery { get; private set; }
|
||||||
|
public string MacAddress { get; private set; }
|
||||||
public string Manufacturer { get; private set; }
|
public string Manufacturer { get; private set; }
|
||||||
public string Model { get; private set; }
|
public string Model { get; private set; }
|
||||||
public string Name { get; private set; }
|
public string Name { get; private set; }
|
||||||
public OperatingSystem OperatingSystem { get; private set; }
|
public OperatingSystem OperatingSystem { get; private set; }
|
||||||
public string MacAddress { get; private set; }
|
public string OperatingSystemInfo => $"{OperatingSystemName()}, {Environment.OSVersion.VersionString} ({Architecture()})";
|
||||||
public string[] PlugAndPlayDeviceIds { get; private set; }
|
public string[] PlugAndPlayDeviceIds { get; private set; }
|
||||||
|
|
||||||
public string OperatingSystemInfo
|
|
||||||
{
|
|
||||||
get { return $"{OperatingSystemName()}, {Environment.OSVersion.VersionString} ({Architecture()})"; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public SystemInfo()
|
public SystemInfo()
|
||||||
{
|
{
|
||||||
InitializeBattery();
|
InitializeBattery();
|
||||||
|
InitializeBiosInfo();
|
||||||
|
InitializeMacAddress();
|
||||||
InitializeMachineInfo();
|
InitializeMachineInfo();
|
||||||
InitializeOperatingSystem();
|
InitializeOperatingSystem();
|
||||||
InitializeMacAddress();
|
|
||||||
InitializePnPDevices();
|
InitializePnPDevices();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -45,7 +43,40 @@ namespace SafeExamBrowser.SystemComponents
|
||||||
{
|
{
|
||||||
var status = SystemInformation.PowerStatus.BatteryChargeStatus;
|
var status = SystemInformation.PowerStatus.BatteryChargeStatus;
|
||||||
|
|
||||||
HasBattery = !status.HasFlag(BatteryChargeStatus.NoSystemBattery) && !status.HasFlag(BatteryChargeStatus.Unknown);
|
HasBattery = !status.HasFlag(BatteryChargeStatus.NoSystemBattery);
|
||||||
|
HasBattery &= !status.HasFlag(BatteryChargeStatus.Unknown);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void InitializeBiosInfo()
|
||||||
|
{
|
||||||
|
var manufacturer = default(string);
|
||||||
|
var name = default(string);
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (var searcher = new ManagementObjectSearcher("SELECT * FROM Win32_BIOS"))
|
||||||
|
using (var results = searcher.Get())
|
||||||
|
using (var bios = results.Cast<ManagementObject>().First())
|
||||||
|
{
|
||||||
|
foreach (var property in bios.Properties)
|
||||||
|
{
|
||||||
|
if (property.Name.Equals("Manufacturer"))
|
||||||
|
{
|
||||||
|
manufacturer = Convert.ToString(property.Value);
|
||||||
|
}
|
||||||
|
else if (property.Name.Equals("Name"))
|
||||||
|
{
|
||||||
|
name = Convert.ToString(property.Value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
BiosInfo = $"{manufacturer} {name}";
|
||||||
|
}
|
||||||
|
catch (Exception)
|
||||||
|
{
|
||||||
|
BiosInfo = "";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void InitializeMachineInfo()
|
private void InitializeMachineInfo()
|
||||||
|
@ -80,7 +111,7 @@ namespace SafeExamBrowser.SystemComponents
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Model = string.Join(" ", systemFamily, model);
|
Model = $"{systemFamily} {model}";
|
||||||
}
|
}
|
||||||
catch (Exception)
|
catch (Exception)
|
||||||
{
|
{
|
||||||
|
@ -93,8 +124,8 @@ namespace SafeExamBrowser.SystemComponents
|
||||||
private void InitializeOperatingSystem()
|
private void InitializeOperatingSystem()
|
||||||
{
|
{
|
||||||
// IMPORTANT:
|
// IMPORTANT:
|
||||||
// In order to be able to retrieve the correct operating system version via System.Environment.OSVersion, the executing
|
// In order to be able to retrieve the correct operating system version via System.Environment.OSVersion,
|
||||||
// assembly needs to define an application manifest where the supported Windows versions are specified!
|
// the executing assembly needs to define an application manifest specifying all supported Windows versions!
|
||||||
var major = Environment.OSVersion.Version.Major;
|
var major = Environment.OSVersion.Version.Major;
|
||||||
var minor = Environment.OSVersion.Version.Minor;
|
var minor = Environment.OSVersion.Version.Minor;
|
||||||
var build = Environment.OSVersion.Version.Build;
|
var build = Environment.OSVersion.Version.Build;
|
||||||
|
@ -154,26 +185,35 @@ namespace SafeExamBrowser.SystemComponents
|
||||||
|
|
||||||
private void InitializeMacAddress()
|
private void InitializeMacAddress()
|
||||||
{
|
{
|
||||||
using (var searcher = new ManagementObjectSearcher("SELECT MACAddress FROM Win32_NetworkAdapterConfiguration WHERE DNSDomain IS NOT NULL"))
|
const string UNDEFINED = "000000000000";
|
||||||
using (var results = searcher.Get())
|
|
||||||
|
try
|
||||||
{
|
{
|
||||||
if (results != null && results.Count > 0)
|
using (var searcher = new ManagementObjectSearcher("SELECT MACAddress FROM Win32_NetworkAdapterConfiguration WHERE DNSDomain IS NOT NULL"))
|
||||||
|
using (var results = searcher.Get())
|
||||||
{
|
{
|
||||||
using (var networkAdapter = results.Cast<ManagementObject>().First())
|
if (results != null && results.Count > 0)
|
||||||
{
|
{
|
||||||
foreach (var property in networkAdapter.Properties)
|
using (var networkAdapter = results.Cast<ManagementObject>().First())
|
||||||
{
|
{
|
||||||
if (property.Name.Equals("MACAddress"))
|
foreach (var property in networkAdapter.Properties)
|
||||||
{
|
{
|
||||||
MacAddress = Convert.ToString(property.Value).Replace(":", "").ToUpper();
|
if (property.Name.Equals("MACAddress"))
|
||||||
|
{
|
||||||
|
MacAddress = Convert.ToString(property.Value).Replace(":", "").ToUpper();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
MacAddress = UNDEFINED;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
}
|
||||||
{
|
catch (Exception)
|
||||||
MacAddress = "000000000000";
|
{
|
||||||
}
|
MacAddress = UNDEFINED;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -181,23 +221,28 @@ namespace SafeExamBrowser.SystemComponents
|
||||||
{
|
{
|
||||||
var deviceList = new List<string>();
|
var deviceList = new List<string>();
|
||||||
|
|
||||||
using (var searcher = new ManagementObjectSearcher("root\\CIMV2", "SELECT DeviceID FROM Win32_PnPEntity"))
|
try
|
||||||
using (var results = searcher.Get())
|
|
||||||
{
|
{
|
||||||
foreach (ManagementObject queryObj in results)
|
using (var searcher = new ManagementObjectSearcher("root\\CIMV2", "SELECT DeviceID FROM Win32_PnPEntity"))
|
||||||
|
using (var results = searcher.Get())
|
||||||
{
|
{
|
||||||
using (queryObj)
|
foreach (ManagementObject queryObj in results)
|
||||||
{
|
{
|
||||||
foreach (var property in queryObj.Properties)
|
using (queryObj)
|
||||||
{
|
{
|
||||||
if (property.Name.Equals("DeviceID"))
|
foreach (var property in queryObj.Properties)
|
||||||
{
|
{
|
||||||
deviceList.Add(Convert.ToString(property.Value).ToLower());
|
if (property.Name.Equals("DeviceID"))
|
||||||
|
{
|
||||||
|
deviceList.Add(Convert.ToString(property.Value).ToLower());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
finally
|
||||||
|
{
|
||||||
PlugAndPlayDeviceIds = deviceList.ToArray();
|
PlugAndPlayDeviceIds = deviceList.ToArray();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,16 +15,15 @@ namespace SafeExamBrowser.SystemComponents
|
||||||
public class VirtualMachineDetector : IVirtualMachineDetector
|
public class VirtualMachineDetector : IVirtualMachineDetector
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Virtualbox: VBOX, 80EE
|
/// Virtualbox: VBOX, 80EE / RedHat: QUEMU, 1AF4, 1B36
|
||||||
/// RedHat: QUEMU, 1AF4, 1B36
|
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private static readonly string[] PCI_VENDOR_BLACKLIST = { "vbox", "vid_80ee", "qemu", "ven_1af4", "ven_1b36", "subsys_11001af4" };
|
private static readonly string[] PCI_VENDOR_BLACKLIST = { "vbox", "vid_80ee", "qemu", "ven_1af4", "ven_1b36", "subsys_11001af4" };
|
||||||
private static readonly string VIRTUALBOX_MAC_PREFIX = "080027";
|
|
||||||
private static readonly string QEMU_MAC_PREFIX = "525400";
|
private static readonly string QEMU_MAC_PREFIX = "525400";
|
||||||
|
private static readonly string VIRTUALBOX_MAC_PREFIX = "080027";
|
||||||
|
|
||||||
|
private readonly ILogger logger;
|
||||||
|
private readonly ISystemInfo systemInfo;
|
||||||
|
|
||||||
private ILogger logger;
|
|
||||||
private ISystemInfo systemInfo;
|
|
||||||
|
|
||||||
public VirtualMachineDetector(ILogger logger, ISystemInfo systemInfo)
|
public VirtualMachineDetector(ILogger logger, ISystemInfo systemInfo)
|
||||||
{
|
{
|
||||||
this.logger = logger;
|
this.logger = logger;
|
||||||
|
@ -33,12 +32,15 @@ namespace SafeExamBrowser.SystemComponents
|
||||||
|
|
||||||
public bool IsVirtualMachine()
|
public bool IsVirtualMachine()
|
||||||
{
|
{
|
||||||
|
var biosInfo = systemInfo.BiosInfo.ToLower();
|
||||||
var isVirtualMachine = false;
|
var isVirtualMachine = false;
|
||||||
|
var macAddress = systemInfo.MacAddress;
|
||||||
var manufacturer = systemInfo.Manufacturer.ToLower();
|
var manufacturer = systemInfo.Manufacturer.ToLower();
|
||||||
var model = systemInfo.Model.ToLower();
|
var model = systemInfo.Model.ToLower();
|
||||||
var macAddress = systemInfo.MacAddress;
|
|
||||||
var plugAndPlayDeviceIds = systemInfo.PlugAndPlayDeviceIds;
|
var plugAndPlayDeviceIds = systemInfo.PlugAndPlayDeviceIds;
|
||||||
|
|
||||||
|
isVirtualMachine |= biosInfo.Contains("vmware");
|
||||||
|
isVirtualMachine |= biosInfo.Contains("virtualbox");
|
||||||
isVirtualMachine |= manufacturer.Contains("microsoft corporation") && !model.Contains("surface");
|
isVirtualMachine |= manufacturer.Contains("microsoft corporation") && !model.Contains("surface");
|
||||||
isVirtualMachine |= manufacturer.Contains("vmware");
|
isVirtualMachine |= manufacturer.Contains("vmware");
|
||||||
isVirtualMachine |= manufacturer.Contains("parallels software");
|
isVirtualMachine |= manufacturer.Contains("parallels software");
|
||||||
|
@ -55,7 +57,7 @@ namespace SafeExamBrowser.SystemComponents
|
||||||
isVirtualMachine |= PCI_VENDOR_BLACKLIST.Any(device.ToLower().Contains);
|
isVirtualMachine |= PCI_VENDOR_BLACKLIST.Any(device.ToLower().Contains);
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.Debug($"Computer '{systemInfo.Name}' appears to {(isVirtualMachine ? "" : "not ")}be a virtual machine.");
|
logger.Debug($"Computer '{systemInfo.Name}' appears {(isVirtualMachine ? "" : "not ")}to be a virtual machine.");
|
||||||
|
|
||||||
return isVirtualMachine;
|
return isVirtualMachine;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue