检查本地计算机信息。与 PHP

发布于 2024-10-31 08:00:18 字数 666 浏览 1 评论 0原文

我制作了一个可以在本地计算机上运行的内部网。我的计算机上有 Windows XP 和 Appserver,其中有 apache、php、mysql 和 ext....。不会有网络。我想确保我要提供计算机的人无法复制文件并在另一台计算机上使用它。

我正在使用 Zend Guard 来保护文件。

我想包含一些仅在该计算机上的信息。这可能是什么?

问候

编辑

当我使用这个时:

$output = shell_exec('wmic diskdrive get model');
echo $output;
echo "<br>";
$output1 = shell_exec('wmic csproduct get name,vendor,identifyingNumber');
echo $output1;

我得到这个输出:

型号迈拓6Y080L0

识别号码名称供应商FRB4270G5K HP d530 SFF(DC578AV)惠普

我认为这会没问题。为我。没有人可以改变硬盘。我并没有真正理解第二部分。什么是

识别号名称供应商 FRB4270G5K HP d530 SFF(DC578AV) Hewlett-Packard

I made an intranet which will work on a local computer. I have got Windows XP and Appserver which has got apache, php, mysql and ext.... on the computer. There will be no network. I want to make sure the person i am going to give the computer can not copy the files and use it on another computer.

I am using Zend Guard to protect the files.

I want to include some information which will be only on that computer. What can this be?

Regards

edit

When i use this:

$output = shell_exec('wmic diskdrive get model');
echo $output;
echo "<br>";
$output1 = shell_exec('wmic csproduct get name,vendor,identifyingNumber');
echo $output1;

I get this output:

Model Maxtor 6Y080L0

IdentifyingNumber Name Vendor FRB4270G5K HP d530 SFF(DC578AV) Hewlett-Packard

I think this will be ok. for me. Nobody can change the hard disk. I did not really get the second part. What is

IdentifyingNumber Name Vendor FRB4270G5K HP d530 SFF(DC578AV) Hewlett-Packard

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

就是爱搞怪 2024-11-07 08:00:18

不会有网络。我想确保我要提供计算机的人无法复制文件并在另一台计算机上使用它。

然后要求您的律师起草一份合同,规定将此作为使用该软件的条件,并给予适当的处罚。

PHP 字节码编码非常容易被破解,而且浪费您的金钱和时间。

There will be no network. I want to make sure the person i am going to give the computer can not copy the files and use it on another computer.

Then ask your lawyer to draft up a contract that dictates this as a condition of using the software, with appropriate penalties.

PHP bytecode encoding is amazingly easy to crack, and it's a waste of your money and time.

等风也等你 2024-11-07 08:00:18

我想 MAC 地址会有用。

I suppose the MAC address would be useful.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文