欢迎光临
我们一直在努力

SQL Server加过密的存储过程可以被解密?-数据库专栏,SQL Server

建站超值云服务器,限时71元/月

1. protecting the stored procedure and making it totally non-decryptable is technically impossible. there has to be a way to reverse it so that sql server can generate the execution plan and execute the query.

2. the encryption that sql server is offering is obfuscation of stored procedures through a feature called stored procedure encryption. obfuscation allows the stored procedures to be used by database end-users while making it more difficult for those end users to view or change the contents of the stored procedures. in order to execute the stored procedures, sql server must have access to the original source form of the stored procedures. as a result, a determined sql server system administrator could obtain access to the source form of the stored procedures (although non-system administrators do not have this ability). because the obfuscation feature is not intended to protect the source form of stored procedures from being copied or viewed by a determined sql server administrator, one should not rely solely on the feature for that purpose.

3. obfuscation of stored procedure is similar to what other database vendors offer. it is true that there exists utilities to decrypt procedures protected by obfuscation, and this is similar there also exists decompiles for java as well. the point is, if one can run the code and get access to an executable form, its always technically possible to reverse engineer the code.

4. an alternative you may want to try is to use extended stored procedures and dll. by creating a dll version of the code, makes it harder to break but it is still possible to reverse-engineer a dll.

5. the protection that is available for all software development firm interested in protecting their asset are same across all data products:

a. obfuscation.
b. legal protection (copy write, patents, etc).

it is not possible to depend only upon either one of these two core pillars of intellectual property protection.

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » SQL Server加过密的存储过程可以被解密?-数据库专栏,SQL Server
分享到: 更多 (0)

相关推荐

  • 暂无文章