Jump to content

Code signing: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
m Reverted edits by 85.195.132.191 (talk) to last version by 64.9.97.44
Do people read what they've written before submitting?
Line 4: Line 4:
Code signing can provide several valuable features. The most common use of code signing is to provide security when deploying; in some languages, it can also be used to help prevent namespace conflicts. Almost every code signing implementation will provide some sort of digital signature mechanism to verify the identity of the author or build system, and a checksum to verify that the object has not been modified. It can also be used to provide versioning information about an object or to store other meta data about an object.
Code signing can provide several valuable features. The most common use of code signing is to provide security when deploying; in some languages, it can also be used to help prevent namespace conflicts. Almost every code signing implementation will provide some sort of digital signature mechanism to verify the identity of the author or build system, and a checksum to verify that the object has not been modified. It can also be used to provide versioning information about an object or to store other meta data about an object.


== Providing security ==
==Providing security==
Many code signing implementations will provide a way to sign the code using private and public key system similar to the process employed by [[Secure Sockets Layer|SSL]] or [[Secure Shell|SSH]]. For example in the case of .NET, the developer uses a key which they use to sign their libraries or executables each time they build. This key will be unique to a developer or group or sometimes per application or object. The developer can either generate this key on their own or they obtain one from a trusted [[certificate authority]] (CA).
Many code signing implementations will provide a way to sign the code using private and public key system similar to the process employed by [[Secure Sockets Layer|SSL]] or [[Secure Shell|SSH]]. For example in the case of .NET, the developer uses a key which they use to sign their libraries or executables each time they build. This key will be unique to a developer or group or sometimes per application or object. The developer can either generate this key on their own or obtain one from a trusted [[certificate authority]] (CA).


It is particularly valuable in distributed environments, where the source of a given piece of code may not be immediately evident for example [[Java applet]]s, [[ActiveX]] controls and other active web and browser scripting code. Another major usage is to safely provide updates and patches to existing software. Most [[Linux distribution]]s, as well as both [[Apple Inc.|Apple]] [[Mac OS X]] and [[Microsoft]] [[Microsoft Windows|Windows]] update services use code signing to ensure that it is not possible to maliciously distribute code via the patch system. It allows them not have to worry about distribution security, such as mirror sites which may not be under the authors' complete control, or any other intermediate piece of the deployment.
It is particularly valuable in distributed environments, where the source of a given piece of code may not be immediately evident - for example [[Java applet]]s, [[ActiveX]] controls and other active web and browser scripting code. Another major usage is to safely provide updates and patches to existing software. Most [[Linux distribution]]s, as well as both [[Apple Inc.|Apple]] [[Mac OS X]] and [[Microsoft]] [[Microsoft Windows|Windows]] update services use code signing to ensure that it is not possible to maliciously distribute code via the patch system. It allows them not have to worry about distribution security, such as mirror sites which may not be under the authors' complete control, or any other intermediate piece of the deployment.


=== Trusted identification using a certificate authority (CA) ===
===Trusted identification using a certificate authority (CA)===
The [[public key]] used for code signing should be traceable back to a trusted root authority, preferably using a secure [[public key infrastructure]] (PKI). This does not ensure that the code itself can be trusted, only that it comes from the stated source (or more explicitly, from a particular [[private key]]). A certificate authority provides a root trust level which is able to assign trust to others by proxy. If a user is set to trust one of these certificate authorities and receives an executable signed with a key generated by that CA, he can choose to trust the executable by proxy. In many frameworks and operating systems, a number of existing publicly trusted authorities will be pre-installed (such as possibly [[VeriSign]] or [[Thawte]] (a VeriSign company), or outside of the VeriSign companies there are [[GoDaddy]] and [[GlobalSign]]). When inside a large group of users, such as a large company, it's commonplace to employ a private internal certificate authority suitable for providing the same features of public certificate authority but for deploying signed objects internally.
The [[public key]] used for code signing should be traceable back to a trusted root authority, preferably using a secure [[public key infrastructure]] (PKI). This does not ensure that the code itself can be trusted, only that it comes from the stated source (or more explicitly, from a particular [[private key]]). A certificate authority provides a root trust level which is able to assign trust to others by proxy. If a user is set to trust one of these certificate authorities and receives an executable signed with a key generated by that CA, he can choose to trust the executable by proxy. In many frameworks and operating systems, a number of existing publicly trusted authorities will be pre-installed (such as possibly [[VeriSign]] or [[Thawte]] (a VeriSign company), or outside of the VeriSign companies there are [[GoDaddy]] and [[GlobalSign]]). When inside a large group of users, such as a large company, it's commonplace to employ a private internal certificate authority suitable for providing the same features of public certificate authority but for deploying signed objects internally.


=== Alternative to CAs ===
===Alternative to CAs===
The other model is where the developer can choose to provide their own self-generated key. In this scenario, the user would normally have to obtain the public key in some fashion directly from the developer to verify the object is from them for the first time. Many code signing systems will store the public key inside the signature. Some software frameworks and OSs that check the code's signature before executing, and will allow you to choose to trust that developer from that point on after the first run. An application developer can provide a similar system by including the public keys with the installer. The key can then be used to ensure that any subsequent objects that need to run, such as upgrades, plugins, or another application, are all verified as coming from that same developer.
The other model is where developers can choose to provide their own self-generated key. In this scenario, the user would normally have to obtain the public key in some fashion directly from the developer to verify the object is from them for the first time. Many code signing systems will store the public key inside the signature. Some software frameworks and OSs that check the code's signature before executing, and will allow you to choose to trust that developer from that point on after the first run. An application developer can provide a similar system by including the public keys with the installer. The key can then be used to ensure that any subsequent objects that need to run, such as upgrades, plugins, or another application, are all verified as coming from that same developer.


===Problems===
===Problems===

Revision as of 01:33, 17 February 2009

Code signing is the process of digitally signing executables and scripts to confirm the software author and guarantee that the code has not been altered or corrupted since it was signed by use of a cryptographic hash.

Overview

Code signing can provide several valuable features. The most common use of code signing is to provide security when deploying; in some languages, it can also be used to help prevent namespace conflicts. Almost every code signing implementation will provide some sort of digital signature mechanism to verify the identity of the author or build system, and a checksum to verify that the object has not been modified. It can also be used to provide versioning information about an object or to store other meta data about an object.

Providing security

Many code signing implementations will provide a way to sign the code using private and public key system similar to the process employed by SSL or SSH. For example in the case of .NET, the developer uses a key which they use to sign their libraries or executables each time they build. This key will be unique to a developer or group or sometimes per application or object. The developer can either generate this key on their own or obtain one from a trusted certificate authority (CA).

It is particularly valuable in distributed environments, where the source of a given piece of code may not be immediately evident - for example Java applets, ActiveX controls and other active web and browser scripting code. Another major usage is to safely provide updates and patches to existing software. Most Linux distributions, as well as both Apple Mac OS X and Microsoft Windows update services use code signing to ensure that it is not possible to maliciously distribute code via the patch system. It allows them not have to worry about distribution security, such as mirror sites which may not be under the authors' complete control, or any other intermediate piece of the deployment.

Trusted identification using a certificate authority (CA)

The public key used for code signing should be traceable back to a trusted root authority, preferably using a secure public key infrastructure (PKI). This does not ensure that the code itself can be trusted, only that it comes from the stated source (or more explicitly, from a particular private key). A certificate authority provides a root trust level which is able to assign trust to others by proxy. If a user is set to trust one of these certificate authorities and receives an executable signed with a key generated by that CA, he can choose to trust the executable by proxy. In many frameworks and operating systems, a number of existing publicly trusted authorities will be pre-installed (such as possibly VeriSign or Thawte (a VeriSign company), or outside of the VeriSign companies there are GoDaddy and GlobalSign). When inside a large group of users, such as a large company, it's commonplace to employ a private internal certificate authority suitable for providing the same features of public certificate authority but for deploying signed objects internally.

Alternative to CAs

The other model is where developers can choose to provide their own self-generated key. In this scenario, the user would normally have to obtain the public key in some fashion directly from the developer to verify the object is from them for the first time. Many code signing systems will store the public key inside the signature. Some software frameworks and OSs that check the code's signature before executing, and will allow you to choose to trust that developer from that point on after the first run. An application developer can provide a similar system by including the public keys with the installer. The key can then be used to ensure that any subsequent objects that need to run, such as upgrades, plugins, or another application, are all verified as coming from that same developer.

Problems

Like any security measure, code signing can be defeated. Users can be tricked into running unsigned code, or even into running code that refuses to validate, and the system only remains secure as long as the private key remains private.

It is also important to note that code signing does not protect the end user from any malicious activity by the software author - it merely ensures that the software has not been modified by anyone other than the author.

Implementations

IBM's Lotus Notes has had PKI signing of code from Release 1, and both client and server software have execution control lists to control what levels of access to data, environment and file system are permitted for given users. Individual design elements, including active items such as scripts, actions and agents, are always signed using the editor's ID file, which includes both the editor's and the domain's public keys. Core templates such as the mail template are signed with a dedicated ID held by the Lotus template development team.

Signed JavaScript is also popular; signed scripts are allowed to perform additional actions such as cross-domain referencing.

Microsoft implements a form of code signing (based on Authenticode) provided for Microsoft tested drivers. Since drivers run in the kernel, they can destabilize the system or open the system to security holes. For this reason, Microsoft tests drivers submitted to its WHQL program. After the driver has passed, Microsoft signs that version of the driver as being safe. Installing drivers that are not validated with Microsoft is possible after accepting to allow the installation in a prompt warning the user that the code is unsigned.