Share on Facebook Share on Twitter Email
Answers.com

security

 
Dictionary: se·cu·ri·ty   (sĭ-kyʊr'ĭ-tē) pronunciation
 
n., pl. -ties.
  1. Freedom from risk or danger; safety.
  2. Freedom from doubt, anxiety, or fear; confidence.
  3. Something that gives or assures safety, as:
    1. A group or department of private guards: Call building security if a visitor acts suspicious.
    2. Measures adopted by a government to prevent espionage, sabotage, or attack.
    3. Measures adopted, as by a business or homeowner, to prevent a crime such as burglary or assault: Security was lax at the firm's smaller plant.
    4. Measures adopted to prevent escape: Security in the prison is very tight.
  4. Something deposited or given as assurance of the fulfillment of an obligation; a pledge.
  5. One who undertakes to fulfill the obligation of another; a surety.
  6. A document indicating ownership or creditorship; a stock certificate or bond.

[Middle English securite, from Old French, from Latin sēcūritās, from sēcūrus, secure. See secure.]


Search unanswered questions...
Enter a word or phrase...
All Community Q&A Reference topics
 
Sci-Tech Encyclopedia: Computer security
Top

The process of ensuring confidentiality, integrity, and availability of computers, their programs, hardware devices, and data. Lack of security results from a failure of one of these three properties. The lack of confidentiality is unauthorized disclosure of data or unauthorized access to a computing system or a program. A failure of integrity results from unauthorized modification of data or damage to a computing system or program. A lack of availability of computing resources results in what is called denial of service.

An act or event that has the potential to cause a failure of computer security is called a threat. Some threats are effectively deflected by countermeasures called controls. Kinds of controls are physical, administrative, logical, cryptographic, legal, and ethical. Threats that are not countered by controls are called vulnerabilities.

Encryption

Encryption is a very effective technique for preserving the secrecy of computer data, and in some cases it can also be employed to ensure integrity and availability. An encrypted message is converted to a form presumed unrecognizable to unauthorized individuals. The principal advantage of encryption is that it renders interception useless. See also Cryptography.

Access control

Computer security implies that access be limited to authorized users. Therefore, techniques are required to control access and to securely identify users. Access controls are typically logical controls designed into the hardware and software of a computing system. Identification is accomplished both under program control and by using physical controls.

Typically, access within a computing system is limited by an access control matrix administered by the operating system or a processing program. All users are represented as subjects by programs executing on behalf of the users; the resources, called the objects of a computing system, consist of files, programs, devices, and other items to which users' accesses are to be controlled. The matrix specifies for each subject the objects that can be accessed and the kinds of access that are allowed.

Access control as described above relates to individual permissions. Typically, such access is called discretionary access control because the control is applied at the discretion of the object's owner or someone else with permission. With a second type of access control, called mandatory access control, each object in the system is assigned a sensitivity level, which is a rating of how serious would be the consequences if the object were lost, modified, or disclosed, and each subject is assigned a level of trust.

Access control is not necessarily as direct as just described. Unauthorized access can occur through a covert channel. One process can signal something to another by opening and closing files, creating records, causing a device to be busy, or changing the size of an object. All of these are acceptable actions, and so their use for covert communication is essentially impossible to detect, let alone prevent.

Security of programs

Computer programs are the first line of defense in computer security, since programs provide logical controls. Programs, however, are subject to error, which can affect computer security.

A computer program is correct if it meets the requirements for which it was designed. A program is complete if it meets all requirements. Finally, a program is exact if it performs only those operations specified by requirements.

Simple programmer errors are the cause of most program failures. Fortunately, the quality of software produced under rigorous design and production standards is likely to be quite high. However, a programmer who intends to create a faulty program can do so, in spite of development controls. See also Software engineering.

A salami attack is a method in which an accounting program reduces some accounts by a small amount, while increasing one other account by the sum of the amounts subtracted. The amount reduced is expected to be insignificant; yet, the net amount summed over all accounts is much larger.

Some programs have intentional trapdoors, additional undocumented entry points. If these trapdoors remain in operational systems, they can be used illicitly by the programmer or discovered accidentally by others.

A Trojan horse is an intentional program error by which a program performs some function in addition to its advertised use. For example, a program that ostensibly produces a formatted listing of stored files may write copies of those files on a second device to which a malicious programmer has access.

A program virus is a particular type of Trojan horse that is self-replicating. In addition to performing some illicit act, the program creates a copy of itself which it then embeds in other, innocent programs. Each time the innocent program is run, the attached virus code is activated as well; the virus can then replicate and spread itself to other, uninfected programs. Trojan horses and viruses can cause serious harm to computing resources, and there is no known feasible countermeasure to halt or even detect their presence.

Security of operating systems

Operating systems are the heart of computer security enforcement. They perform most access control mediation, most identification and authentication, and most assurance of data and program integrity and continuity of service.

Operating systems structured specifically for security are built in a kernelized manner, embodying the reference monitor concept. A kernelized operating system is designed in layers. The innermost layer provides direct access to the hardware facilities of the computing system and exports very primitive abstract objects to the next layer. Each successive layer builds more complex objects and exports them to the next layer. The reference monitor is effectively a gate between subjects and objects. See also Operating system.

Security of databases

Integrity is a much more encompassing issue for databases than for general applications programs, because of the shared nature of the data. Integrity has many interpretations, such as assurance that data are not inadvertently overwritten, lost, or scrambled; that data are changed only by authorized individuals; that when authorized individuals change data, they do so correctly; that if several people access data at a time, their uses will not conflict; and that if data are somehow damaged, they can be recovered.

Database systems are especially prone to inference and aggregation. Through inference, a user may be able to derive a sensitive or prohibited piece of information by deduction from nonsensitive results without accessing the sensitive information itself. Aggregation is the ability of two or more separate data items to be more (or less) sensitive together than separately. Various statistical methods make it very difficult to prevent inference, and aggregation is also extremely difficult to prevent, since users can access great volumes of data from a database over long periods of time and then correlate the data independently.

Security of networks

As computing needs expand, users interconnect computers. Network connectivity, however, increases the security risks in computing. Whereas users of one machine are protected by some physical controls, with network access, a user can easily be thousands of miles from the actual computer. Furthermore, message routing may involve many intermediate machines, called hosts, each of which is a possible point where the message can be modified or deleted, or a new message fabricated. A serious threat is the possibility of one machine's impersonating another on a network in order to be able to intercept communications passing through the impersonated machine.

The principal method for improving security of communications within a network is encryption. Messages can be encrypted link or end-to-end. With link encryption, the message is decrypted at each intermediate host and reencrypted before being transmitted to the next host. End-to-end encryption is applied by the originator of a message and removed only by the ultimate recipient.

To benefit from sharing access to computing systems that are not all located together, organizations have established virtual private networks (VPNs). These networks approach the security of a private network at costs closer to those of shared public resources. The primary security technique used is encryption.

The Internet, or any similar public network, is subject to threats to its availability, integrity, and confidentiality. A complicating feature is that there is effectively no control on transmissions over the Internet. Consequently, a system connected to the Internet is exposed to any malicious attack that any other Internet user wants to launch.

Security perimeter

A security perimeter is a logical boundary surrounding all resources that are controlled and protected. The protected resources are called a domain (or enclave or protected subnetwork). There may be overlapping domains of varying protection, so that the most sensitive resources are in the innermost domain, which is the best protected. Protecting the security perimeter may be physical controls, identification and authentication, encryption, and other forms of access control. Two controls that relate especially to the security perimeter are network vulnerability scanning and firewalls.

A network vulnerability scan is the process of determining the connectivity of the subnetwork within a security perimeter, and then testing the strength of protection at all the access points to the subnetwork. With a network domain, if a forgotten access point is not secured, its weakness can undermine the protection of the rest of the domain. A network scanner maps the connectivity of a domain, typically by probing from outside the domain, to determine what resources are visible from the outside. Once all outside connections are identified, each is tested with a range of attacks to determine the vulnerabilities to which it is susceptible and from which it needs to be better protected.

A firewall is a host that fuctions as a secured gateway between a protected enclave and the outside. The firewall controls all traffic according to a predefined access policy. For example, many firewalls are configured to allow unhindered communication outbound (from the protected domain to a destination outside the domain) but to allow only certain kinds of inbound communication. A firewall can be a separate computer, or firewall functionality can be built into the communications switch connecting the enclave to the external network.

Intrusion detection

It is most effective to eliminate vulnerabilities, but if that is not possible, it is then desirable to recognize that an attack is occuring or has occured, and take action to prevent future attacks or limit the damage from the current one. Intrusion detection can be either anomaly detection, which seeks to identify an attack by behavior that is out of the norm, or misuse detection, to identify an attack by its attempted effect on sensitive resources. Intrusion detection systems monitor a computing system in order to warn of an attack that is imminent, is under way, or has occurred.


 
Thesaurus: security
Top

noun

  1. The quality or state of being safe: assurance, safeness, safety. See safety/danger.
  2. Reliability in withstanding pressure, force, or stress: fastness, firmness, hardness, soundness, stability, stableness, steadiness, strength, sturdiness, sureness. See better/worse, change/persist, continue/stop/pause.
  3. The act or a means of defending: defense, guard, preservation, protection, protector, safeguard, shield, ward. See attack/defend.
  4. Something given to guarantee the repayment of a loan or the fulfillment of an obligation: earnest2, guaranty, pawn1, pledge, token, warrant. See transactions.

 
Idioms: security
Top

Idioms beginning with security:
security blanket

In addition to the idiom beginning with security, also see lull into (false sense of security).


 
Antonyms: security
Top

n

Definition: peace of mind
Antonyms: insecurity, uncertainty, worry

n

Definition: safety, protection
Antonyms: danger, insecurity, peril, trouble, vulnerability


 

In finance, written evidence of ownership conferring the right to receive property not currently in the holder's possession. The most common securities are stocks and bonds. Governments, companies, and financial institutions use securities to raise money. Stocks are securities issued in the form of equity ownership. Bonds are securities that take the form of debt. They constitute promises to pay a specified amount at a specified date and to pay interest at a specified rate in the interim. Most government securities are bonds that pay a fixed amount of interest per year; unlike commercial securities, their repayment is guaranteed. Both stocks and bonds are traded publicly on organized exchanges such as the New York Stock Exchange, the London Stock Exchange, and the Tokyo Stock Exchange. External forces such as international troubles, changes in government policies, and trends in foreign stock markets all have an effect on security prices. For individual stocks, the company's current and prospective financial performance play an important role, as do overall trends within its business sector. See also investment; saving.

For more information on security, visit Britannica.com.

 
Law Encyclopedia: Security
Top
This entry contains information applicable to United States law only.

Protection; assurance; indem- nification.

The term security is usually applied to a deposit, lien, or mortgage voluntarily given by a debtor to a creditor to guarantee payment of a debt. Security furnishes the creditor with a resource to be sold or possessed in case of the debtor's failure to meet his or her financial obligation. In addition, a person who becomes a surety for another is sometimes referred to as a "security."

 
Military Dictionary: security
Top

(DOD) 1. Measures taken by a military unit, activity, or installation to protect itself against all acts designed to, or which may, impair its effectiveness. 2. A condition that results from the establishment and maintenance of protective measures that ensure a state of inviolability from hostile acts or influences. 3. With respect to classified matter, the condition that prevents unauthorized persons from having access to official information that is safeguarded in the interests of national security. See also national security.

 
Word Tutor: security
Top
pronunciation

IN BRIEF: The condition of being safe; the condition of having enough money.

pronunciation The thirst of soul is sweeter than the wine of material things, and the fear of spirit is dearer than the security of the body. — Kahlil Gibran (1883-1931), Lebanese poet.

 
Quotes About: Security
Top

Quotes:

"Security... it's simply the recognition that changes will take place and the knowledge that you're willing to deal with whatever happens." - Harry Browne

"When you know that you're capable of dealing with whatever comes, you have the only security the world has to offer." - Harry Browne

"Too many people are thinking of security instead of opportunity. They seem more afraid of life than death." - James F. Byrnes

"Without a measureless and perpetual uncertainty, the drama of human life would be destroyed." - Winston Churchill

"Security represents your sense of worth, your identity, your emotional anchorage, your self-esteem, your basic personal strength or lack of it." - Stephen R. Covey

"I don't want expensive gifts; I don't want to be bought. I have everything I want. I just want someone to be there for me, to make me feel safe and secure." - Princess of Wales Diana

See more famous quotes about Security

 
Wikipedia: Security
Top
X-ray machines and metal detectors are used to control what is allowed to pass through an airport security perimeter.
Security spikes protect a gated community in the East End of London.

Security is the degree of protection against danger, loss, and criminals.


Security has to be compared and contrasted with other related concepts: Safety, continuity, reliability. The key difference between security and reliability is that security must take into account the actions of people attempting to cause destruction.

Contents

Definitions

The word security is derived from the Ancient Greek "Se-Cura" and literally translates to "without fear". 'Security' is therefore the state of being secure, or the actions employed to achieve that state, i.e. to be secure is to be without fear of harm.

The definition of security provided by the Institute for Security and Open Methodologies (ISECOM) in the OSSTMM 3 is geared towards operations and how we interact with security. It states security is:

  • A form of protection where a separation is created between the assets and the threat. This includes but is not limited to the elimination of either the asset or the threat. In order to be secure, either the asset is physically removed from the threat or the threat is physically removed from the asset.[1]

The definition given in a UN study, in 1986, is interesting as a contribution to the understanding of the concept of security, “Security is a state at which countries think that there is no danger of military attack, political pressure, or economic coercion, so that they can develop and progress freely.

  • With respect to classified matter, the condition that prevents unauthorized persons from having access to official information that is safeguarded in the interests of national security.
  • Measures taken by a military unit, an activity or installation to protect itself against all acts designed to, or which may, impair its effectiveness.

Perceived security compared to real security

It is very often true that people's perception of security is not directly related to actual security.

For example, a fear of earthquakes is much more common than a fear of slipping on the bathroom floor; however, the latter kills far more people than the former.[2]

The tool may be mistaken for the effect, for example when multiple computer security programs interfere with each other, the user assumes the computer is secure when actual security has vanished.

Another side of this is a phenomenon called security theatre where ineffective security measures such as screening of airline passengers based on static databases are introduced with little real increase in security or even, according to the critics of one such measure - Computer Assisted Passenger Prescreening System - with an actual decrease in real security.

Conversely, if it is perceived that there is security then there will be an increase in actual security, even if the perception of security is mistaken. Sometimes a sign may warn that video surveillance is covering an area, and even if there is no actual visual surveillance then some malicious agents will be deterred by the belief that there may be.

Also, often when there is actual security present in the area, such as video surveillance, an alarm system in a home, or an anti-theft system in a car such as a LoJack, signs advertising this security will increase its effectiveness, protecting the value of the secured vehicle or area itself.

Since some intruders will decide not to attempt to break into such areas or vehicles, there can actually be less damage to windows in addition to protection of valuable objects inside. Without such advertisement, a car-thief might, for example, approach a car, break the window, and then flee in response to an alarm being triggered. Either way, perhaps the car itself and the objects inside aren't stolen, but with perceived security even the windows of the car have a lower chance of being damaged, increasing the financial security of its owner(s).

However, the non-profit, security research group, ISECOM, has determined that such signs may actually increase the violence, daring, and desperation of an intruder [3] This claim shows that perceived security works mostly on the provider and is not security at all [4].

It is important, however, for signs advertising security not to give clues as to how to subvert that security, for example in the case where a home burglar might be more likely to break into a certain home if he or she is able to learn beforehand which company makes its security system.

Categorising security

There is an immense literature on the analysis and categorisation of security. Part of the reason for this is that, in most security systems, the "weakest link in the chain" is the most important. The situation is asymmetric since the defender must cover all points of attack while the attacker need only identify a single weak point upon which to concentrate.

Types

IT realm

Physical realm

Political

Monetary

  • Aviation security is a combination of measures and material and human resources intended to counter the unlawful interference with the aviation security.
  • Operations Security (OPSEC) is a compliment to other "traditional" security measures that evaluates the organization from an adversarial perspective.[5].

Security concepts

Certain concepts recur throughout different fields of security:

  • Assurance - assurance is the level of guarantee that a security system will behave as expected
  • Countermeasure - a countermeasure is a way to stop a threat from triggering a risk event
  • Defense in depth - never rely on one single security measure alone
  • Exploit - a vulnerability that has been triggered by a threat - a risk of 1.0 (100%)
  • Risk - a risk is a possible event which could cause a loss
  • Threat - a threat is a method of triggering a risk event that is dangerous
  • Vulnerability - a weakness in a target that can potentially be exploited by a threat

Security management in organizations

In the corporate world, various aspects of security were historically addressed separately - notably by distinct and often noncommunicating departments for IT security, physical security, and fraud prevention. Today there is a greater recognition of the interconnected nature of security requirements, an approach variously known as holistic security, "all hazards" management, and other terms.

Inciting factors in the convergence of security disciplines include the development of digital video surveillance technologies (see Professional video over IP) and the digitization and networking of physical control systems (see SCADA)[6][7]. Greater interdisciplinary cooperation is further evidenced by the February 2005 creation of the Alliance for Enterprise Security Risk Management, a joint venture including leading associations in security (ASIS), information security (ISSA, the Information Systems Security Association), and IT audit (ISACA, the Information Systems Audit and Control Association)[8].

People in the security business

Computer security

National security

See also

Concepts

Branches

References

  1. ^ http://www.osstmm.org
  2. ^ Bruce Schneier, Beyond Fear: Thinking Sensibly about Security in an Uncertain World, Copernicus Books, pages 26-27
  3. ^ http://wiki.answers.com/Q/Do_home_security_systems_prevent_burglaries
  4. ^ http://www.isecom.org/hsm
  5. ^ OSPA Website
  6. ^ Taming the Two-Headed Beast, CSOonline, September 2002
  7. ^ Security 2.0, CSOonline, April 2005
  8. ^ AESRM Website

Global Cybersecurity Agenda


 
Translations: Security
Top

Dansk (Danish)
n. - sikkerhed, tryghed, kaution, dækning, sikring, sikkerhedsforanstaltninger

idioms:

  • on security of    mod sikkerhed i
  • security blanket    nyhedstæppe, "mørklægning"
  • Security Council    sikkerhedsrådet i FN
  • security risk    sikkerhedsrisiko

Nederlands (Dutch)
zekerheid, veiligheidsdienst, geborgenheid, waarborg, waardepapier, obligatie, beveiliging, veiligheid

Français (French)
n. - sécurité, service de sécurité, garantie, (Fin) valeur (boursière), titre

idioms:

  • on security of    sous la garantie de
  • security blanket    (Psych) doudou, objet transitionnel
  • Security Council    Conseil de Sécurité
  • security risk    danger pour la sécurité

Deutsch (German)
n. - Sicherheit, Wertpapier, Garantie, Pfand

idioms:

  • on security of    aufgrund einer Sicherheit (ein Darlehen bekommen)
  • security blanket    Sicherheitsdecke, offiz. Informationsverbot aufgrund der Staatssicherheit
  • Security Council    Sicherheitsrat
  • security risk    Sicherheitsrisiko

Ελληνική (Greek)
n. - ασφάλεια, ασφάλιση, (νομ.) εγγύηση, εχέγγυο, (οικον.) αξιόγραφο, τίτλος, χρεόγραφο, διαβάθμιση εγγράφου

idioms:

  • on security of    με εγγύηση
  • security blanket    απαγόρευση δημοσιοποίησης απορρήτων, ψυχολογική στήριξη, ασφάλεια (όπως η κουβέρτα νηπίου)
  • Security Council    Συμβούλιο Ασφαλείας (του ΟΗΕ)
  • security risk    πιθανός κίνδυνος για την ασφάλεια, ύποπτος διαρροής πληροφοριών

Italiano (Italian)
titoli, sicurezza, titolo, cauzione, garanzia, protezione

idioms:

  • on security of    usato come garanzia
  • security blanket    censura
  • Security Council    consiglio di sicurezza
  • security risk    persona rappresentante un rischio alla sicurezza

Português (Portuguese)
n. - segurança (f), estabilidade (f), garantia (f)

idioms:

  • on security of    na segurança de
  • security blanket    cobertor ou fralda que a criança segura para se sentir bem
  • Security Council    Conselho de Segurança
  • security risk    pessoa não confiável para certas missões

Русский (Russian)
безопасность, чувство безопасности, защита, охранение, боевое обеспечение, гарантия/залог, ценные бумаги

idioms:

  • on security of    под обеспечение, под гарантию
  • security blanket    любой знакомый предмет, создающий чувство уверенности, офциальное требование сохранения полной секретности
  • Security Council    Совет Безопасности (ООН)
  • security risk    неблагонадежный человек, подозрительная личность

Español (Spanish)
n. - valores, títulos, seguridad, obligación, bono, fianza, garantía, prenda, fiador, protección, defensa, salvaguarda, servicio de seguridad

idioms:

  • on security of    sobre fianza, con garantía
  • security blanket    sanción oficial sobre información en el interés de la seguridad, frazada u objeto similar para tranquilizar a los niños
  • Security Council    Consejo de Seguridad (de la ONU)
  • security risk    peligro para la seguridad

Svenska (Swedish)
n. - säkerhet, trygghet, trygghetskänsla, skydd, borgen, värdepapper, självsäkerhet

中文(简体)(Chinese (Simplified))
安全, 安全感, 防护, 防御, 防备, 保安, 保证

idioms:

  • on security of    以...担保
  • security blanket    安全毯, 给小孩抓摸以消除紧张, 带给人安全感的熟悉物体
  • Security Council    安全理事会
  • security risk    不可靠人物

中文(繁體)(Chinese (Traditional))
n. - 安全, 安全感, 防護, 防禦, 防備, 保安, 保證

idioms:

  • on security of    以...擔保
  • security blanket    安全毯, 給小孩抓摸以消除緊張, 帶給人安全感的熟悉物體
  • Security Council    安全理事會
  • security risk    不可靠人物

한국어 (Korean)
n. - 안전, 방심, 담보

日本語 (Japanese)
n. - 安全, 安心, 安全確保, 防護物, 保証, 担保, 機密保護, 防衛
adj. - 安全保障の

idioms:

  • on security of    担保にして
  • security blanket    お守り毛布, 安全を保障するもの, お守り
  • Security Council    安全保障理事会
  • security risk    危険人物

العربيه (Arabic)
‏(الاسم) طمأنينه, سلام, أمن‏

עברית (Hebrew)
n. - ‮ביטחון, הגנה, אבטחה, בטיחות, עירבון, משכון, ערובה, ניירות-ערך, אגרות חוב‬


 
Best of the Web: security
Top

Some good "security" pages on the web:


American Sign Language
commtechlab.msu.edu
 
 
 
Learn More
mortgage
debtor
creditor

Post a question - any question - to the WikiAnswers community:

 

Copyrights:

Dictionary. The American Heritage® Dictionary of the English Language, Fourth Edition Copyright © 2007, 2000 by Houghton Mifflin Company. Updated in 2007. Published by Houghton Mifflin Company. All rights reserved.  Read more
Sci-Tech Encyclopedia. McGraw-Hill Encyclopedia of Science and Technology. Copyright © 2005 by The McGraw-Hill Companies, Inc. All rights reserved.  Read more
Thesaurus. Roget's II: The New Thesaurus, Third Edition by the Editors of the American Heritage® Dictionary Copyright © 1995 by Houghton Mifflin Company. Published by Houghton Mifflin Company. All rights reserved.  Read more
Idioms. The American Heritage® Dictionary of Idioms by Christine Ammer. Copyright © 1997 by The Christine Ammer 1992 Trust. Published by Houghton Mifflin Company. All rights reserved.  Read more
Answers Corporation Antonyms. © 1999-2009 by Answers Corporation. All rights reserved.  Read more
Britannica Concise Encyclopedia. Britannica Concise Encyclopedia. © 2006 Encyclopædia Britannica, Inc. All rights reserved.  Read more
Law Encyclopedia. West's Encyclopedia of American Law. Copyright © 1998 by The Gale Group, Inc. All rights reserved.  Read more
Military Dictionary. US Department of Defense Dictionary of Military and Associated Words, 2003.  Read more
Word Tutor. Copyright © 2004-present by eSpindle Learning, a 501(c) nonprofit organization. All rights reserved.
eSpindle provides personalized spelling and vocabulary tutoring online; free trial Read more
Quotes About. Copyright © 2005 QuotationsBook.com. All rights reserved.  Read more
Wikipedia. This article is licensed under the GNU Free Documentation License. It uses material from the Wikipedia article "Security" Read more
Translations. Copyright © 2007, WizCom Technologies Ltd. All rights reserved.  Read more

 

Mentioned in

Related topics

» More