Addon Signatures – ArmA: Armed Assault

From Bohemia Interactive Community
Jump to navigation Jump to search
m (→‎See Also: altered TOC layout)
m (→‎Terminology: Fixed typo)
Line 12: Line 12:
* '''Checked server:''' a server with signature verification on
* '''Checked server:''' a server with signature verification on
* '''Unchecked server:''' a server with signature verification off
* '''Unchecked server:''' a server with signature verification off
* '''Accepted signature:''' on of the signatures defined by the server as trusted
* '''Accepted signature:''' one of the signatures defined by the server as trusted


===What is checked===
===What is checked===

Revision as of 23:18, 19 September 2007

Addon Signature implementation in all version before 1.08 contains serious bugs which cause even users with no modified or unsigned addons are marked as using modified data.

Overview

Addon signatures are a way to reduce cheating in Armed Assault. They are used to detect data files modified by anyone else but the addon creator. They are based on strong cryptographic principles (private/public key pairs), therefore hacking around them is very hard.

Addon is signed by its creator using a private key, while the public key is used by the game to verify that the addon has not been modified.

Terminology

  • Checked server: a server with signature verification on
  • Unchecked server: a server with signature verification off
  • Accepted signature: one of the signatures defined by the server as trusted

What is checked

Player connecting to a checked server is allowed to have present only addons which are signed by accepted signature. Any player not complying to this is detected, and based on server configuration a message in this sense may be displayed, or he may be kicked out, or another action defined by the server admin may be done.

Player cannot do any of the following if he wants to pass signature verification:

  • modify signed addons
  • use unsigned addons
  • use addons which are signed, but not by an accepted signature

If player wants to use unsigned addons when playing single player or when playing on other servers not testing for this, he needs to make sure such addons are not loaded before connecting to the checked server. This can be done using modfolders or by using some 3rd party addon management utilities.

Controlling addon signature verification on the server

If a server admin decides addon signatures should be verified, he should add the following line to the server.cfg file:

verifySignatures=1

Server admin can decide which addon makers he considers trustworthy by placing their public keys in the "keys" directory. Note: as of writing, the only existing signature is the Bohemia Interactive one, called bi.bikey. This should change once DSSignFile and FileBank utilities are released.

Community nature

The is no central authority deciding which signatures are trustworthy and which not. Each server admins can decide this. Of course, server admins are free to communicate their experiences with various signatures, or create a publicly accessible black lists of signatures which they think are no longer trustworthy, like when they know they were compromised because the private key has been leaked.

Signing addons

Signing addons is done using DSSignFile utility. A private key is needed for this, which can anyone create using DSCreateKey.

Security considerations

The following are ways the security of this system can be compromised by the human factor:

  • Private key has been leaked, meaning somebody is able to perform unauthorized modifications to addons signed by given signature
  • A person holding a private key and considered trustworthy so far has intentionally created or signed an addon which can be used to cheat
  • A person holding a private key has unintentionally created or signed an addon which can be used to cheat. This can be either by mistake (e.g. someone creating an interesting uniform variant reskin for default units, but not seeing this variant provides less cover) or by a fraud (addon maker signing an addon which he was passed by somebody else, but the addon contains some hidden payload, like a cheating script)
  • Somebody creating cheats fools a server admin to install his signature.
Best practices for addon makers
  • Never hand your private key to anyone, store it on a secure place, and if transferring it, use secure means
  • Never sign any addons given to you by somebody else.
  • You are the one responsible for reputation of your signature. Think about what you sign. Consider carefully if the addon or modification you have created can be used to get an unfair advantage
Best practices for server admins
  • Add only keys of addon makers which you really trust. Do not add a keys only because a few users are requesting you do so.
  • Beware of false keys. The fact the key is named AMG does not mean it really comes from Addon Making Group, it might be an attempt from cheaters to impersonate AMG and to let their own addons pass verification. Be sure to properly authenticate the source of the signature.
  • Decide what you do when user does not pass signature verification. Use Server Side Scripting to configure it.

See Also

server.cfg

DSCreateKey

DSCheckSignatures