检查本地计算机信息。与 PHP
我制作了一个可以在本地计算机上运行的内部网。我的计算机上有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
然后要求您的律师起草一份合同,规定将此作为使用该软件的条件,并给予适当的处罚。
PHP 字节码编码非常容易被破解,而且浪费您的金钱和时间。
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.
我想 MAC 地址会有用。
I suppose the MAC address would be useful.