Orin2.1 Specifications Part 1: Outline Version 2.1.0

Total Page:16

File Type:pdf, Size:1020Kb

Orin2.1 Specifications Part 1: Outline Version 2.1.0 1 ORiN2.1 Specifications Part 1: Outline Version 2.1.0 November 18, 2008 【Remarks】 2 【Revision history】 Date Rev. Content 2005-08-25 1.0.0 First edition. 2008-11-18 2.1.0 3 Contents 1. Background ................................................................................................... 4 2. Technology outline ......................................................................................... 5 3. Range of modeling ......................................................................................... 6 3.1. Nonvolatile resource and volatile resource .......................................................................................... 7 3.2. Pull type device and push type device ................................................................................................. 7 4. Outline of CAO............................................................................................... 8 4.1. Object model of CAO ............................................................................................................................ 9 4.2. Function of CAO ................................................................................................................................. 10 5. Outline of CRD............................................................................................. 12 6. Outline of CAP ............................................................................................. 14 Appendix A. Glossary ...................................................................................... 15 4 1. Background Recently, the number PC application programs in the factory is increasing. Various application programs like production management system, process control system, operation monitoring system, and trouble analysis system, etc. operate at the factory, and they are becoming keys of the manufacturing system. However, most of these PC applications are developed only for a specific manufacturer and a specific model. This is because they are "a la carte" application that depends on specific proprietary networks and proprietary protocols. Once such a system is introduced in a factory, a full-time working software developer is required to reside in the factory to continue the improvement of the system. Otherwise, the system will be far from really usable one, and will be left in the factory without any improvement. Such a state decreases the cost effectiveness of the system, and decreases the value of the system itself. In addition, because the product demand increase is very steep recently, failure to catch up the demand will mean the opportunity loss. Therefore, each manufacturing companies are trying achieving vertical start-up of equipment. To achieve this goal, high reusability of hardware and software throughout the equipment life cycle is very important. The reusability of “a la carte” software becomes very low. To cope with the situation, ORiN was developed to prepare standard PC application network. ORiN is an abbreviation of Open Robot/Resource Interface for the Network, and it is a framework to handle wide range of resources like robots and various FA equipments. By using ORiN, manufacturer and model independent applications can be developed, and the reusability of PC application program will be greatly improved. The ORiN project started in 1999, and ORiN Version 1 was released in 2002 as a result of the project. ORiN version 1 was applied on various FA applications, and based on the technologies developed through the applications, new standard of ORiN version 2 (ORiN2) was released. This document is specifications of ORiN2. Figure1: Target of ORiN 5 2. Technology outline ORiN2 is middleware that provides a standard program interface for FA devices (equipments) such as industrial robot, PLC or NC, and has the following features. • Independence from programming language • Independence from communication protocol • Network transparency Independence from the programming language means that various programming languages can be used Independence from communication protocol means that the middleware does not rely on manufacturer proprietary protocol. Network transparency means that implemented module can be placed anywhere on the network and it can be accessed transparently from client applications. ORiN2 is composed of the following three technologies. 1 CAO-standard program interface (Chapter 2) 2 CRD-standard data schema (Chapter 3) 3 CAP-communication protocol for Internet (Chapter 4) CAO (Controller Access Object) is based on distributed object technology, CRD (Controller Resource Definition) is based on XML technology, and CAP (Controller Access Object) is based on SOAP technology, respectively. The relationship between these technologies is shown in Figure2. Application Add this layer for abstruction, and provide standard access procedures. ⇒ (1) Program Interface CAO ORiN device model Provide a standard schema to represent the resources of the devices. =CRD ⇒ (2) Data Schema CRD Device(substance) Provide a Internet-transparent access to the device =CAP ⇒ (3) Internet Transparent Protocol CAP Figure2: ORiN2model and three technologies 6 3. Range of modeling The specification of ORiN is defined in the viewpoint of "How are the resources in the device is opened to the public". ORiN defines a device model of abstracted FA device, and the modeled resources are shown in Message File Task(job) … File Task management PC ・Language Expansion Controller(main) interpretation … card Command Robot Teach Box I/O Variabole management Volatile resource Non-volatile Trajectory resource Servo FA device Figure3. To use ORiN, not all of these resources are required, but only at least one resource that matches ORiN model is required. This lax restriction enabled utilization of ORiN with various FA devices. Message File Task(job) … File Task management PC ・Language Expansion Controller(main) interpretation … card Command Robot Teach Box I/O Variabole management Volatile resource Non-volatile Trajectory resource Servo FA device 7 Figure3: Object area of ORiN2 3.1. Nonvolatile resource and volatile resource Resources managed by ORiN can be classified as nonvolatile and volatile. For instance, resources like I/O and register variable of PLC (Programmable Logic Controller) exists as long as the power is supplied to the device. These types of resources are called as nonvolatile resources. On the other hand, a message character string generated by a device or command character strings sent to a device are called as nonvolatile resource. Both types of resources are modeled in ORiN 3.2. Pull type device and push type device ORiN can manage two types of devices, i.e., a pull type (store type) device and push type (event type) device. For instance, most of PLCs or robot controllers are pull type device, and their resource data is accessed from the outside. A characteristic of a pull type device is that it has "present value". Oppositely, a push type is the kind of device that pushes out data from the device, like a bar code scanner. 8 4. Outline of CAO CAO (Controller Access Object) is a specification that becomes the nucleus of ORiN and defines a standard program interface. CAO is based on the distributed object technology. CAO consists of two parts, the engine part and the provider part. The engine part defines the sole application program interface. The aim of the engine part is to offer a generalized function that does not depend on each FA device. Oppositely, the provider part is a module that absorbs the differences between the CAO abstraction device and the actual FA device. The provider part defines the sole interface to the engine part. This is called as device interface. (Figure4) Figure4: Outline of CAO Because of the structure of CAO, application program developers can develop applications that do not so much depend on the devices, and device manufactures can open device functions to the public without depending on the type of the applications using the devices. Moreover, by dividing the engine part and the provider part, development of the essential function of device dependence absorption becomes easy. Following is the framework of the CAO application. 1 A CAO application operates the device object abstracted by the CAO engine. 2 Based on the operation demand, the CAO engine executes the part of the process that doesn't depend on an actual device. 3 The CAO provider executes the part of the process that depends on the actual device and could not be processed by the CAO engine. 9 In general, "Program = algorithm + data", and CAO is designed to unify the algorithm of the programs. Unifying application program strictly limits the program specifications, but unifying algorithm enables both generality and diversity of the program. In this way, resource data expression can be defined for each manufactures and models. However, if the data expression is too much different, sharing the program becomes difficult. Therefore, ORiN introduced two ideas. One idea is system variables. Data generality can be improved by defining system variables whose meaning and purpose are laxly defined. Another idea is CAO model description language. Using the expression, a group of object necessary in assumed situations can be defined, and it is helpful to separate program algorithm and data. 4.1. Object model of CAO Figure5 shows the object tree of CAO. Because the architecture of CAO is separated to two layers (the engine part and the provider part), the object model is also separated in two. The model
Recommended publications
  • Orin2 Programming Guide PDF Download
    ORiN 2 programming guide - 1 - ORiN2 Programming guide Version 1.0.19.0 June 18, 2019 [Remarks] Some items might not be installed depending on the package you have. ORiN Forum DENSO WAVE Inc. ORiN 2 programming guide - 2 - [Revision history] Date Version Content 2005-05-09 1.0.0.0 First edition. 2006-08-21 1.0.1.0 Add the way to register CAO RCW into GAC under .NET framework 2.0. 2007-04-23 1.0.2.0 ORiN Installer registers CAO and CaoSQL RCW into GAC. 2008-07-16 1.0.3.0 Add some descriptions 2009-06-12 1.0.4.0 Add Import and Export commands to save settings. 2009-07-31 1.0.5.0 Add the way to register CAO RCW into GAC under .NET framework 2.0. 2010-02-10 1.0.6.0 Add description on LabVIEW 2010-06-08 1.0.7.0 Add the way to confirm an installation state of ORiN2 SDK. 2011-04-27 1.0.8.0 Add a sample code in C#. 2011-12-22 1.0.9.0 Add an error code. 2012-07-10 1.0.10.0 Add an error code. 2012-08-24 1.0.11.0 Modify an error code 2012-09-07 1.0.12.0 Modify an error code 2014-01-20 1.0.13.0 Add an error code. Add an integration into Visual Studio 2014-09-22 1.0.14.0 Add an error code. 2015-11-04 1.0.15.0 Add SysLog output of CAO log.
    [Show full text]
  • New Robot Strategy
    New Robot Strategy Japan’s Robot Strategy - Vision, Strategy, Action Plan - The Headquarters for Japan’s Economic Revitalization 10/2/2015 Part I General Statement ................................................................................ 2 Chapter 1 Prologue ...................................................................................... 2 Section 1 Current situation surrounding “Japan as a robotics superpower” .................................................................................................. 2 Section 2 Drastic transformation of robots and Japan’s future .................. 4 Section 3 Goal of robot revolution ............................................................. 7 Chapter 2 Measures for realization of robot revolution ...............................11 Section 1 Robot creativity – Thorough reinforcement of robots in Japan .11 Section 2 Utilization and popularization of robots – “Daily life with robots” across Japan ........................................................................... 13 Section 3 Development and progress of robot revolution on global perspectives – Toward new advanced IT society .................... 16 Part II Action Plan: Five-year Plan ................................................................. 18 Chapter 1 Cross-Cutting Issues ................................................................. 18 Section 1 Establishment of "Robot Revolution Initiative (RRI)" ............... 18 Section 2 Technology development toward the next generation ............. 20 Section 3 Policy
    [Show full text]
  • The Next Generation Communications Privacy Act
    ARTICLE THE NEXT GENERATION COMMUNICATIONS PRIVACY ACT ORIN S. KERR† In 1986, Congress enacted the Electronic Communications Privacy Act (ECPA) to regulate government access to Internet communications and records. ECPA is widely regarded as outdated, and ECPA reform is now on the Congressional agenda. At the same time, existing reform proposals retain the structure of the 1986 Act and merely tinker with a few small aspects of the statute. This Article offers a thought experiment about what might happen if Congress were to repeal ECPA and enact a new privacy statute to replace it. The new statute would look quite different from ECPA because overlooked changes in Internet technology have dramatically altered the assumptions on which the 1986 Act was based. ECPA was designed for a network world with high storage costs and only local network access. Its design reflects the privacy threats of such a network, including high privacy protection for real-time wiretapping, little protection for noncontent records, and no attention to particularity or jurisdiction. Today’s Internet reverses all of these assumptions. Storage costs have plummeted, leading to a reality of almost total storage. Even U.S.-based services now serve a predominantly † Fred C. Stevenson Research Professor, George Washington University Law School. This Article was supported by the Daniel and Florence Guggenheim Foundation Program on Demography, Technology and Criminal Justice at the Law Library of Congress, where the Author presently serves as a Scholar in Residence. The Author thanks Richard Salgado, Chris Soghoian, Al Gidari, Jim Dempsey, Marc Zwillinger, Chris Yoo, Eric Goldman, Edward Felten, Ryan Calo, Andrea Matwyshyn, Jerry Kang, Ramesh Ponnuru, and Gail Kent for their helpful comments, as well as Cynthia Jordan, Robert Newlen, and David Mao at the Law Library of Congress for their support.
    [Show full text]
  • Data Mining, Dog Sniffs, and the Fourth Amendment
    DATA MINING, DOG SNIFFS, AND THE FOURTH AMENDMENT An algorithm, designed to probe a database containing all personal data available to the government, sees that you have recently bought some fertilizer and a large truck, and that you have emailed someone with a .lb (Lebanon) email address. Seeing this red flag pop up on his computer, a government agent pulls your bank records, your Amazon and iTunes purchases, the domain names that you’ve recently visited, and a list of everyone you have recently phoned or emailed. Inspecting all of these records, the agent determines that you were merely asking your Lebanese uncle for advice on expanding your farm and makes a notation in his database. (He is also able to determine your religious affiliation, that you have an affinity for Steven Seagal movies, and that you have been having an affair, but is less interested in all of that.) This example of “data mining” is the future, if not the present, of law enforcement.1 Data mining both offers enormous possibilities for law enforcement and national security — in the scenario above, the fertilizer and truck could have been intended for a far less innocuous use — and radically undermines the notion that one’s interests, affilia- tions, and legal activities can be kept private from the government. Such concerns have led to significant public debate over the proper scope of surveillance, prompted in particular by Edward Snowden’s recent disclosures. Yet despite the obvious privacy implications of data mining, tradi- tional Fourth Amendment doctrine offers relatively little to help con- strain such activity.
    [Show full text]
  • Robotic Middlewares to the Physical Agent System
    Layered Implementation of Robotic Middlewares to the Physical Agent System IROS’06 Workshop WS4 Robotics Standardization Makoto MIZUKAWA, Ph.D. [email protected] Shibaura Institute of Technology, Tokyo Chair ORiN Forum/JARA, Project Leader ISO TC184/SC2 RAPI Contact of OMG Robotics-DTF to ISO TC184/SC2 Oct. 10, 2006, International Conference Beijing, China on Iintelligent Robots and Systems 1 Outline Needs for standard Environment Physical Agent System Layered Implementation of Middlewares ORiN for Robot Collaboration LwRTC for Embedded controller Future work 2 Oct. 10, 2006, Beijing, China International Conference on Intelligent Robots and Systems Needs for standard Environment 3 Oct. 10, 2006, Beijing, China International Conference on Intelligent Robots and Systems Robotics in future Hazardous task Unmanned Autonomy substitute in fields systems Manufacturing High speed Human Industrial robots work /precision Human-Robot-Interaction Embedded/ Service robots Ubiquitous robots symbiosis Entertainment robots HouseholdHousehold Pet/Pet/ healinghealing WorkWork assistassist DailyDaily assistassist New media Communication media RescueRescue MedicalMedical 4 Oct.Daily 10, 2006, lifeBeijing, support China International Conference on Intelligent Robots and Systems I’REX2005 DAEJEON 5 Oct. 10, 2006, Beijing, China International Conference on Intelligent Robots and Systems Related Activities (examples) forfor TelecomTelecom forfor MfgMfg FIPAFIPA:The:TheFoundations Foundationsfor for IntellIntelligentigent ISOISO TC-1TC-18484,,
    [Show full text]
  • Orin(Open Robot Interface for the Network)の概要
    Open Robot Interface for the Network ORiN(Open Robot Interface for the Network) Open Network Interface between PC and Robot Controller JARA: Japan Robot Association TC for Robot Open Network Interface Development ORiN accelerates to introduce the Networked Robots powered by IT into manufacturing system Objective To provide standard methods for accessing robot system information in developing a multi-vendor robot-task executing system Merits ・Allow robot-data exchange on PCs ・Application provided by third parties ・Low cost multi-vendor system development ・ISO proposal Global standard Design and Implementation of ORiN Design policy Implementation policy Vender acceptable and useful standard PC technology of the states of art (1) Loose standardization (1) De-facto standard platforms - allow various types of robot specifications - Hardware:PCs designed for MS Windows OS: MS Windows 95/98/NT4.0 (2) Expandability - allow vender unique option (2) Distributed object model(DCON) - Network transparency (3) Modularity of network protocols - Language independence - applicable to robots in the market - use standard network protocol (3) Extended Markup Language(XML) - Standard framework for defining vendor unique (4) Separation of specifications specification and implementation - OOP technology (4) Internet Technology - HTTP, XML, SOAP Windows PC Windows PC Application Application Application layer Mfg. System Mfg. System Motion Monitor management Management Standard Interface Proxy Kernel layer DCOM Server RAO RRD RAO: Robot Access Object Provider Correction Data RRD: Robot Resource Definition Provides the unified access mngmnt mngmnt caching B Co. Defines vendor specific robot method to robot data based on robotA Co. Async. Event models(XML format) DCON Access modelrobot control report logging model Provider layer Provider B Co.
    [Show full text]
  • It's Too Complicated: How the Internet Upends Katz, Smith, and Electronic
    Harvard Journal of Law & Technology Volume 30, Number 1 Fall 2016 IT’S TOO COMPLICATED: HOW THE INTERNET UPENDS KATZ, SMITH, AND ELECTRONIC SURVEILLANCE LAW Steven M. Bellovin, Matt Blaze, Susan Landau, & Stephanie K. Pell* TABLE OF CONTENTS I. INTRODUCTION .................................................................................. 2 II. LEGAL BACKGROUND AND ANALYSIS ........................................... 11 A. Content/Non-Content Constitutional Distinctions & Statutory Definitions ................................................................ 12 B. What Other Scholars Have Said and Done ................................ 20 1. To Distinguish and Categorize or Not? ................................... 21 C. Third Party Doctrine Complications ......................................... 22 1. United States v. Warshak......................................................... 22 2. Miller & Smith ......................................................................... 25 III. NETWORK ARCHITECTURES ......................................................... 32 A. The Phone Network and the Internet .......................................... 34 B. An Introduction to the Network Stack ........................................ 36 C. Architectural Content ................................................................. 44 D. Defining DRAS ........................................................................... 46 IV. INTERNET SERVICES AND METADATA .......................................... 52 A. Services and Architecture ..........................................................
    [Show full text]
  • Interpreting Access and Authorization in Computer Misuse Statutes
    ARTICLES CYBERCRIME'S SCOPE: INTERPRETING "ACCESS" AND "AUTHORIZATION" IN COMPUTER MISUSE STATUTES ORIN S. KERR* The federal government, all fifty states, and dozens of foreign countries have enacted computer crime statutes that prohibit "unauthorizedaccess" to computers. No one knows what it means to "access" a computer, however, or when access becomes "unauthorized." The few courts that have construed these terms have offered widely varying interpretations. Several recent decisions suggest that any breach of contract renders an access unauthorized, broadly criminalizing contract law on the Internet. In this Article, Professor Orin Kerr explains the origins of unauthorized access statutes, and examines why the early beliefs that such statutes articulated a clear standard have proven remarkably naive. He then shows how and why the courts have construed these statutes in an overly broad manner that threatens to criminalize a surprising range of innocuous conduct involving com- puters. Finally, Professor Kerr offers a normative proposal for interpreting "access" and "authorization." Courts should reject a contract-based theory of authorization,and should limit the scope of unauthorized access statutes to circum- vention of code-based restrictions on computer privileges. This proposed interpre- tation best mediates between securing privacy and protecting the liberty interests of Internet users. It also mirrors criminal law's traditional treatment of consent defenses, and avoids possible constitutional difficulties that may arise under the broader constructions that courts have recently favored. INTRODUCTION Justice Holmes once noted that when a legislature enacts a new crime, "it is reasonable that a fair warning should be given to the world in language that the common world will understand, of what the law intends to do if a certain line is passed.
    [Show full text]
  • Orin2 SDK User's Guide Version 2.1.50
    ORiN2 SDK user's guide - 1 - ORiN2 SDK User's guide Version 2.1.50 April 28, 2020 【Remarks】 ORiN Forum DENSO WAVE Inc. ORiN2 SDK user's guide - 2 - 【Revision history】 Date Version Content 2006/02/24 1.0 First edition. 2006/08/11 1.0.1 A runtime version and sample providers (b-CAP, NS300) were added. 2006/10/02 1.0.2 Supported OS were described. 2006/12/15 1.0.3 Sample providers (Joystick, Timer, RCB-1) were added. 2007/04/20 2.0.5 Sample providers (FIT, IFS, VBP) were added. 2007/07/02 2.0.6 b-CAP provider was added also in the ‘Evaluation’ installer. 2007/11/13 2.0.7 CaoSQL was added also in the ‘Bundle’ installer. 2008/01/08 2.0.8 All binary modules were added in the ‘Runtime’ installer. 2008/03/24 2.0.9 Sample providers (VB Gateway, VPS, OpenCV) were added. 2008/06/19 2.0.10 Sample providers (Genie, AIO) were added. 2008/07/01 2.0.11 Sample providers (Dummy) were added. 2008/07/11 2.0.12 Sample providers (anyfeed, SSTCCS, SSTDN3) were added. 2009/03/12 2.1.0 Start menu and folder structures were changed. DirectShow provider was added. 2009/06/12 2.1.1 b-CAP provider was added also in the ‘Bundle’ installer. 2010/03/04 2.1.2 Sample providers (HALCON, LINX GINGA board,TAIYO servo hand) were added. 2010/09/27 2.1.3 “How to check the installation state of ORiN2 SDK” was added. Some provider samples are added.
    [Show full text]
  • Self-Driving Safety Report Our Mission
    SELF-DRIVING SAFETY REPORT OUR MISSION We believe that the next generation of transportation is autonomous. From shared and personal vehicles, to long- and short-distance travel, to delivery and logistics, autonomy will “Safety is the most important aspect of a self-driving vehicle. NVIDIA’s creation of a safe fundamentally improve the way the self-driving platform is one of our greatest world moves. At NVIDIA, our automotive endeavors, and provides a critical ingredient team’s mission is to develop self-driving for automakers to bring autonomous technology that enables safer, less vehicles to market.” congested roads and mobility for all. Jensen Huang NVIDIA founder and CEO CONTENTS INTRODUCTION 1 ON-ROAD TESTING 12 THE DRIVE FOR AUTONOMOUS VEHICLE SAFETY 13 THE FOUR PILLARS OF SAFE AUTONOMOUS DRIVING 2 CYBERSECURITY 14 DEVELOPER TRAINING AND EDUCATION 14 1. ARTIFICIAL INTELLIGENCE DESIGN AND IMPLEMENTATION PLATFORM 3 2. DEVELOPMENT INFRASTRUCTURE THAT SUPPORTS DEEP LEARNING 4 SUMMARY 15 3. DATA CENTER SOLUTION FOR ROBUST SIMULATION AND TESTING 4 4. BEST-IN-CLASS PERVASIVE SAFETY PROGRAM 5 APPENDICES 16 ARCHITECTED FOR SAFETY 7 ACRONYMS 16 REFERENCES HARDWARE 8 16 SOFTWARE 9 VEHICLES & SENSORS 9 DATA CENTER 10 MAPPING 10 SIMULATION 11 REPLAY 11 core architecture. The same strategy holds for safety. Our architecture enriches the overall INTRODUCTION system with elements that consistently improve safety. NVIDIA has created essential technologies for building robust, end-to-end systems for the research, development, and deployment of self-driving vehicles, spanning from the data center to the edge. We offer a range of hardware and software solutions, from powerful GPUs and servers to a complete AI training infrastructure and in-vehicle autonomous driving supercomputers.
    [Show full text]
  • Thoughts on First-Generation Internet Law, 57 Wash
    Washington and Lee Law Review Volume 57 | Issue 4 Article 6 Fall 9-1-2000 Are We Overprotecting Code? Thoughts on First- Generation Internet Law Orin S. Kerr Follow this and additional works at: https://scholarlycommons.law.wlu.edu/wlulr Part of the Intellectual Property Law Commons, and the Internet Law Commons Recommended Citation Orin S. Kerr, Are We Overprotecting Code? Thoughts on First-Generation Internet Law, 57 Wash. & Lee L. Rev. 1287 (2000), https://scholarlycommons.law.wlu.edu/wlulr/vol57/iss4/6 This Article is brought to you for free and open access by the Washington and Lee Law Review at Washington & Lee University School of Law Scholarly Commons. It has been accepted for inclusion in Washington and Lee Law Review by an authorized editor of Washington & Lee University School of Law Scholarly Commons. For more information, please contact [email protected]. Are We Overprotecting Code? Thoughts on First-Generation Internet Law Orin S. Kerr* This Essay argues that Internet law presently suffers from a tendency to regulate cyberspace based on form rather thanfunc- tion. In areassuch as free speech, patent law, and privacy law, judges and legislatureshave regulatedInternet code basedon what it is, rather than what it does. The result has been remarkably broad rules that extend far greater legal protection to code in cyberspace than its equivalents receive in the physical world. The author suggests that greaterfocus on function can permit more accurateapplications of traditionallegal doctrines to the Internet. I. Introduction The French artist Georges Seurat is famous for his paintings of Parisian street scenes that consist entirely of thousands of small dots.' If you view a Seurat painting from just a few inches away, every bit of canvas looks the same.
    [Show full text]
  • Computer Fraud and Abuse Act (CFAA) and the 116Th Congress
    Cybercrime and the Law: Computer Fraud and Abuse Act (CFAA) and the 116th Congress September 21, 2020 Congressional Research Service https://crsreports.congress.gov R46536 SUMMARY R46536 Cybercrime and the Law: Computer Fraud and September 21, 2020 Abuse Act (CFAA) and the 116th Congress Peter G. Berris The Computer Fraud and Abuse Act (CFAA), 18 U.S.C. § 1030, is a civil and criminal Legislative Attorney cybercrime law prohibiting a variety of computer-related conduct. Although sometimes described as an anti-hacking law, the CFAA is much broader in scope. Indeed, it prohibits seven categories of conduct including, with certain exceptions and conditions: 1. Obtaining national security information through unauthorized computer access and sharing or retaining it; 2. Obtaining certain types of information through unauthorized computer access; 3. Trespassing in a government computer; 4. Engaging in computer-based frauds through unauthorized computer access; 5. Knowingly causing damage to certain computers by transmission of a program, information, code, or command; 6. Trafficking in passwords or other means of unauthorized access to a computer; 7. Making extortionate threats to harm a computer or based on information obtained through unauthorized access to a computer. Since the original enactment of the CFAA in 1984, technology and the human relationship to it have continued to evolve. Although Congress has amended the CFAA on numerous occasions to respond to new conditions, the rapid pace of technological advancement continues to present novel legal issues under the statute. For example, with increasing computerization has come a corresponding proliferation of Terms of Service (ToS) agreements—contractual restrictions on computer use.
    [Show full text]