hardware-id

ASP.net get hardware information

ぃ、小莉子 提交于 2021-01-04 15:35:30
问题 If I create an ASP.net page, am I able to get the current users CPUID and BIOS serial number? Or is that not allowed because of security? I currently have a Visual Basic.net application that gets these values, I am just wondering if I can do the same thing on a web page. 回答1: In a nut shell, no you cannot get this information using just a regular html & JavaScript web page. That's not however, to say that it's not possible. If your client computer has Java, Flash or Silver-light installed

ASP.net get hardware information

徘徊边缘 提交于 2021-01-04 15:23:19
问题 If I create an ASP.net page, am I able to get the current users CPUID and BIOS serial number? Or is that not allowed because of security? I currently have a Visual Basic.net application that gets these values, I am just wondering if I can do the same thing on a web page. 回答1: In a nut shell, no you cannot get this information using just a regular html & JavaScript web page. That's not however, to say that it's not possible. If your client computer has Java, Flash or Silver-light installed

ASP.net get hardware information

六眼飞鱼酱① 提交于 2021-01-04 15:23:05
问题 If I create an ASP.net page, am I able to get the current users CPUID and BIOS serial number? Or is that not allowed because of security? I currently have a Visual Basic.net application that gets these values, I am just wondering if I can do the same thing on a web page. 回答1: In a nut shell, no you cannot get this information using just a regular html & JavaScript web page. That's not however, to say that it's not possible. If your client computer has Java, Flash or Silver-light installed

Getting Unique System ID on Mac using C#(Mono)

浪子不回头ぞ 提交于 2020-01-25 13:19:22
问题 Im porting a windows application for Mac using Mono.I cannot use DPAPI in Mac and i think there is restriction in getting Mainboard/CPU id in Mac for User Level programs.So is there something like DPAPI in windows which i can use using Mono to get a unique system id that does not change. 回答1: First, stay away from using a MAC address as those can change (spoofed or hardware change) and is not a very Mac'ie way since 10.3/4?... Since then the "I/O Kit registry" is the preferred method to get a

Getting Unique System ID on Mac using C#(Mono)

走远了吗. 提交于 2020-01-25 13:18:30
问题 Im porting a windows application for Mac using Mono.I cannot use DPAPI in Mac and i think there is restriction in getting Mainboard/CPU id in Mac for User Level programs.So is there something like DPAPI in windows which i can use using Mono to get a unique system id that does not change. 回答1: First, stay away from using a MAC address as those can change (spoofed or hardware change) and is not a very Mac'ie way since 10.3/4?... Since then the "I/O Kit registry" is the preferred method to get a

How to identify a Mac System uniquely

半城伤御伤魂 提交于 2019-12-31 10:35:13
问题 I want to identify my mac system uniquely via code. I find the Hardware UUID in my About this Mac. So how to programmatically access the unique uuid from MAc OS X. Kindly provide me if there are any alternative suggestion for my problem. 回答1: So, if you don't care about the new AppStore rules etc... here you go: - (NSString *)getSystemUUID { io_service_t platformExpert = IOServiceGetMatchingService(kIOMasterPortDefault,IOServiceMatching("IOPlatformExpertDevice")); if (!platformExpert) return

Prevent users from being able to access a webpage via web browser?

时光毁灭记忆、已成空白 提交于 2019-12-24 08:51:11
问题 My friend and I are working on a program. This program is going to submit GET data to our webpage. However, we don't want users accessing the webpage any other way than the program. We can prevent users from sharing the program using HWID authentication, but nothing prevents them from using a packet scanner to get the URL of the webpage. We thought about user-agent authentication, which we will implement, but user-agents can easily be spoofed. So my question is, how can we prevent users from

How to get hardware information in Windows using C++?

自闭症网瘾萝莉.ら 提交于 2019-12-20 23:30:24
问题 How to get hardware information (for example cpuId, biosId, diskId, baseId and videoId) in c++? Can anyone give me an example visual studio project for this? 回答1: There are very different ways to get a disk id (serial number? volume id?) or a CPU ID or ... . I think you want to build a fingerprint of the computer. The most comfortable way is to use Windows Management Instrumentation (WMI) and access the DMI . See MSDN for a start. See MSDN here for a hint how to get the mainboard serial

Get Hardware IDs like Microsoft does

喜夏-厌秋 提交于 2019-12-13 02:16:45
问题 In the Windows SDK there is a CLI tool named computerhardwareids The tool returns various GUIDs to select the proper HardwareId for the specific case. This is the output that returns this tool in my PC: Using the BIOS to gather information Computer Information -------------------- BIOS Vendor: American Megatrends Inc. BIOS Version string: 1201 System BIOS Major Release: 4 System BIOS Minor Release: 6 System Manufacturer: To be filled by O.E.M. System Family: To be filled by O.E.M. System

Access VBA: Is there any way to get computer specs?

情到浓时终转凉″ 提交于 2019-12-12 09:55:36
问题 I'm creating a form in Access that processes millions of lines of data, and takes several hours (depending on your computer). I want to implement a feature that will read the computer specs, such as CPU speed and amount of RAM, and determine how long the process will take. Is it possible to get the computer specs using VBA? 回答1: 1) There is this "environ" function that can give you informations on the "computer" environment. It is usually used to get things such as user name or temp folder,