关于贸易程序保护
关于商业程序保护
坛里哪位朋友有这方面的经验,
程序是授权后才可以使用,且不开放源码。
现在Zend加密后可以破解么?
------解决方案--------------------
加密后需要解密环境支持,安装是个问题
如果买家用的是租用的空间,而网关不让你装怎么办?
我倒建议你发行紧凑格式的代码并辅以部分扰码就可以了(全部扰码运行速度下降太多)
没有几个人有兴趣去研究代码的
授权需要认证,你打算把认证做在哪里?
------解决方案--------------------
自己开放后台给人用 卖服务就行了,主机不给人黑你的代码就不会漏出去...
------解决方案--------------------
如果是有特定客户对象的,建议混合编程,一些关键部件不使用开源程序代码
------解决方案--------------------
加密后的程序一样可以传播倒卖
除非加解密软件都是你私有的,顺便再赚上一笔
只允许程序运行于指定ip地址的服务器
认证信息直接写进程序里,离开特定环境就没法用了
------解决方案--------------------
很难的...我在桌面程序加密上奋斗了好多年(不是研究加密,是加密程序),32位的也很难,不过32位有很多国际猛壳还是很顶事的,顶事是因为可以防那些级别不高的小破解者,真的碰上大牛在他们眼里也就是一坨.
那你就试试zend那个东西吧...除了那个貌似还有一些加载dll控件的加密,那个应该没那么容易解了。
------解决方案--------------------
流程是这样的,所以关键还是你自己说的加密,没有加密别人看了你的写法,只要能逆出算法 就有了注册机.
加油吧 哈哈哈 不如你写一整套东西来给我们吧 提供加密 提供授权认证。
------解决方案--------------------
以前很有用 我还去解过别人的代码。后来不是出了新版本了,不清楚现在是什么情况
------解决方案--------------------
------解决方案--------------------
秒解...傻瓜式的...
那时候是有个人把php写成了个桌面工具...你妹的 还要别人在桌面装上 apache+php 数据库倒没有 估计是想想装个mysql 就太蛋痛了,用了sqlite.当时是因为我想分析那个东西的数据传输原理 于是就去解了.
------解决方案--------------------
真的没有太好的办法.....
只能防低手不防高手了....
我觉得一般用盗版的(咳咳,是说服务器这边,客户端的东西,咳咳)也不是什么可能的潜在的用户......如果防住了他,他肯定就想法找别家防不住的,而不是付费.
自己加快更新, 谁装了盗版的, 打电话过去....我们已经升级到YY版本了,你还是XX版本...我们已经解决了NNN个bug,加了MMM个新功能....等等
------解决方案--------------------
卖服务,别卖产品。
------解决方案--------------------
既无团队又无经纪人,服务怎么卖?

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

CMS stands for Content Management System. It is a software application or platform that enables users to create, manage, and modify digital content without requiring advanced technical knowledge. CMS allows users to easily create and organize content

Arrays are linear data structures used to process data in programming. Sometimes when we are processing arrays we need to add new elements to the existing array. In this article, we will discuss several ways to add elements to the end of an array in PHP, with code examples, output, and time and space complexity analysis for each method. Here are the different ways to add elements to an array: Use square brackets [] In PHP, the way to add elements to the end of an array is to use square brackets []. This syntax only works in cases where we want to add only a single element. The following is the syntax: $array[] = value; Example
