Information about Reverse Engineering

Reverse engineering (RE) is the process of discovering the technological principles of a device or object or system through analysis of its structure, function and operation. It often involves taking something (e.g. a mechanical device, an electronic component, a software program) apart and analyzing its workings in detail, usually to try to make a new device or program that does the same thing without copying anything from the original.

In the United States and many other countries, even if an artifact or process is protected by trade secrets, reverse-engineering the artifact or process is often lawful as long as it is obtained legitimately. Patents, on the other hand, need a public disclosure of an invention, and therefore patented items do not necessarily have to be reverse engineered to be studied. One common motivation of reverse engineers is to determine whether a competitor's product contains patent infringements or copyright infringements.

Types and applications of reverse engineering

As computer-aided design has become more popular, reverse engineering has become a viable method to create a 3D virtual model of an existing physical part for use in 3D CAD, CAM, CAE and other software. The reverse engineering process involves measuring an object and then reconstructing it as a 3D model. The physical object can be measured using 3D scanning technologies like CMMs, laser scanners, structured light digitizers or computed tomography. The measured data alone, usually represented as a point cloud, lacks topological information and is therefore often processed and modeled into a more usable format such as a triangular faced mesh, a set of NURBS surfaces or a CAD model. Applications like Imageware, PolyWorks, Rapidform or Geomagic are used to process the point clouds themselves into formats usable in other applications such as 3D CAD, CAM, CAE or visualization.

Reverse engineering is often used by military in order to copy other nations' technology, devices or information, or parts of which, have been obtained by regular troops in the fields or by intelligence operations. It was often used during the Second World War and the Cold War. Well-known examples from WWII include:
  • Jerry can: British and American forces noticed that the Germans had gasoline cans with an excellent design. They reverse engineered copies of those cans. The cans were popularly known as Jerry cans.
  • Tupolev Tu-4: Three American B-29 bombers on missions over Japan were forced to land in the USSR. The Soviets, who did not have a similar strategic bomber, decided to copy the B-29. Within a few years they had developed the Tu-4, a near perfect copy.
  • V2 Rocket: Technical documents for the V2 and related technologies were captured by the Western Allies at the end of the war. Soviet and captured German engineers had to reproduce technical documents and plans, working from captured hardware, in order to make their clone of the rocket, the R-1, which began the postwar Soviet rocket program that led to the R-7 and the beginning of the space race.
Reverse engineering software or hardware systems which is done for the purposes of interoperability (for example, to support undocumented file formats or undocumented hardware peripherals), is mostly believed to be legal, though patent owners often contest this and attempt to stifle any reverse engineering of their products for any reason.

On a related note, black box testing in software engineering has a lot in common with reverse-engineering. The tester usually has the API, but his goals are to find bugs and undocumented features by bashing the product from outside.

Other purposes of reverse engineering include security auditing, removal of copy protection ("cracking"), circumvention of access restrictions often present in consumer electronics, customization of embedded systems (such as engine management systems), in-house repairs or retrofits, enabling of additional features on low-cost "crippled" hardware (such as some graphics card chipsets), or even mere satisfaction of curiosity.

Reverse engineering is also used by businesses to bring existing physical geometry into digital product development environments, to make a digital 3D record of their own products or assess competitors' products. It is used to analyze, for instance, how a product works, what it does, what components it consists of, estimate costs, identify potential patent infringement, etc.

Value engineering is a related activity also used by business. It involves deconstructing and analysing products, but the objective is to find opportunities for cost cutting.

Finally, reverse engineering often is done because the documentation of a particular device has been lost (or was never written), and the person who built the thing is no longer working at the company. Integrated circuits often seem to have been designed on obsolete, proprietary systems, which means that the only way to incorporate the functionality into new technology is to reverse-engineer the existing chip and then re-design it.

Reverse engineering of software

The term "reverse engineering" as applied to software means different things to different people, prompting Chikofsky and Cross to write a paper researching the various uses and defining a taxonomy. From their paper:
Reverse engineering is the process of analyzing a subject system to create representations of the system at a higher level of abstraction.[1] It can also be seen as "going backwards through the development cycle".[2] In this model, the output of the implementation phase (in source code form) is reverse engineered back to the analysis phase, in an inversion of the traditional waterfall model. Reverse engineering is a process of examination only: the software system under consideration is not modified (which would make it reengineering). Software anti-tamper technology is used to deter both reverse engineering and reengineering of proprietary software and software-powered systems. In practice, two main types of reverse engineering emerge. In the first case, source code is already available for the software, but higher level aspects of the program, perhaps poorly documented or documented but no longer valid, are discovered. In the second case, there is no source code available for the software, and any efforts towards discovering one possible source code for the software are regarded as reverse engineering. This second usage of the term is the one most people are familiar with. Reverse engineering of software can make use of the clean room design technique to avoid infringing copyrights.

Binary software

This process is sometimes termed Reverse Code Engineering or RCE.[3] As an example, decompilation of binaries for the Java platform can be accomplished using Jad. One famous case of reverse engineering was the first non-IBM implementation of the PC BIOS which launched the historic IBM PC compatible industry that has been the overwhelmingly dominant computer hardware platform for many years. An example of a group that reverse engineers software for enjoyment is CORE which stands for "Challenges Of Reverse Engineering". In the United States, the Digital Millennium Copyright Act exempts from the circumvention ban some acts of reverse engineering aimed at interoperability of file formats and protocols, but judges in key cases have ignored this law, since it is acceptable to circumvent restrictions for use, but not for access.[4] Aside from restrictions on circumvention, reverse engineering of software is protected in the U.S. by the fair use exception in copyright law.[5] The Samba software, which allows systems that are not running Microsoft Windows systems to share files with systems that are, is a classic example of software reverse engineering, since the Samba project had to reverse-engineer unpublished information about how Windows file sharing worked, so that non-Windows computers could emulate it. The Wine project does the same thing for the Windows API, and OpenOffice.org is one party doing this for the Microsoft Office file formats. The ReactOS project is even more ambitious in its goals as it strives to provide binary (ABI and API) compatibility with the current Windows OSes of the NT branch, allowing software and drivers written for Windows to run on a clean room reverse engineered GPL open source counterpart.

Binary software techniques

Reverse engineering of software can be accomplished by various methods. The three main groups of software reverse engineering are
  1. Analysis through observation of information exchange, most prevalent in protocol reverse engineering, which involves using bus analyzers and packet sniffers, for example, for accessing a computer bus or computer network connection and revealing the traffic data thereon. Bus or network behavior can then be analyzed to produce a stand-alone implementation that mimics that behavior. This is especially useful for reverse engineering device drivers. Sometimes reverse-engineering on embedded systems is greatly assisted by tools deliberately introduced by the manufacturer, such as JTAG ports or other debugging means. In Microsoft Windows, low-level debuggers such as SoftICE are popular.
  2. Disassembly using a disassembler, meaning the raw machine language of the program is read and understood in its own terms, only with the aid of machine language mnemonics. This works on any computer program but can take quite some time, especially for someone not used to machine code. The Interactive Disassembler is a particularly popular tool.
  3. Decompilation using a decompiler, a process that tries, with varying result, to recreate the source code in some high level language for a program only available in machine code or bytecode.

Notes

1. ^ Chikofsky, E.J.; J.H. Cross II (January 1990). "Reverse Engineering and Design Recovery: A Taxonomy in IEEE Software". IEEE Computer Society: 13–17. 
2. ^ Warden, R. (1992). Software Reuse and Reverse Engineering in Practice. London, England: Chapman & Hall, 283–305. 
3. ^ Chuvakin, Anton; Cyrus Peikari (January 2004). Security Warrior, 1st ed., O'Reilly. Retrieved on 2006-05-25. 
4. ^ hr>000-.html US Code: Title 17,1201. Circumvention of copyright protection systems. Retrieved on 2006-05-25.
5. ^ See Pamela Samuelson and Suzanne Scotchmer, "The Law and Economics of Reverse Engineering", 111 Yale Law Journal 1575-1663 (May 2002).

See also

External links

machine (derived from the latin machina) is any device that transmits or modifies . In common usage, the meaning is restricted to devices having rigid moving parts that perform or assist in performing some work.
..... Click the link for more information.
An electronic component is a basic electronic element usually packaged in a discrete form with two or more connecting leads or metallic pads. Components are intended to be connected together, usually by soldering to a printed circuit board, to create an electronic circuit
..... Click the link for more information.
Computer software is a general term used to describe a collection of computer programs, procedures and documentation that perform some task on a computer system. [1]
..... Click the link for more information.
trade secret is a formula, practice, process, design, instrument, pattern, or compilation of information used by a business to obtain an advantage over competitors or customers. In some jurisdictions, such secrets are referred to as "confidential information".
..... Click the link for more information.
patent is a set of exclusive rights granted by a state to a patentee for a fixed period of time in exchange for a disclosure of an invention.

The procedure for granting patents, the requirements placed on the patentee and the extent of the exclusive rights vary widely
..... Click the link for more information.


An invention is an object, process, or technique which displays an element of novelty. An invention may sometimes be based on earlier developments, collaborations or ideas, and the process of invention requires at least
..... Click the link for more information.
infringe that patent.

Elements of patent infringement

Any party that manufactures, uses, sells, or offers for sale patented technology, during the term of the patent and within the country that issued the patent, is considered to infringe the patent.
..... Click the link for more information.
Copyright infringement (or copyright violation) is the unauthorized use of material which is covered by copyright law, in a manner that violates one of the original copyright owner's exclusive rights, such as the right to reproduce or perform the copyrighted work, or to make
..... Click the link for more information.
Computer-aided design (CAD) is use of a wide range of computerbased tools that assist engineers, architects and other design professions in their design activities. It is the main geometry authoring tool within the Product Lifecycle Management process and involves both
..... Click the link for more information.
Computer-aided design (CAD) is use of a wide range of computerbased tools that assist engineers, architects and other design professions in their design activities. It is the main geometry authoring tool within the Product Lifecycle Management process and involves both
..... Click the link for more information.
Typical areas of concern:
  • High Speed Machining, including streamlining of tool paths
  • Multi-function Machining
  • 5 Axis Machining
  • Ease of Use

Machining process


..... Click the link for more information.
Computer-aided engineering (often referred to as CAE) is the use of information technology for supporting engineers in tasks such as analysis, simulation, design, manufacture, planning, diagnosis and repair.
..... Click the link for more information.
A 3D scanner is a device that analyzes a real-world object or environment to collect data on its shape and possibly its appearance (i.e. color). The collected data can then be used to construct digital, three dimensional models useful for a wide variety of applications.
..... Click the link for more information.
A coordinate-measuring machine (CMM) is a device for dimensional measuring. It is a mechanical system designed to move a measuring probe to determine the coordinates of points on the surface of a workpiece.
..... Click the link for more information.
Computed tomography (CT), originally known as computed axial tomography (CAT or CT scan) and body section roentgenography, is a medical imaging method employing tomography where digital geometry processing is used to generate a three-dimensional image of the
..... Click the link for more information.
In computer science, a point cloud is a set of three-dimensional points describing the outlines or surface features of an object, such as that produced by a 3D digitizer.
..... Click the link for more information.
non-uniform, rational B-spline (NURBS) is a mathematical model commonly used in computer graphics for generating and representing curves and surfaces.

History


..... Click the link for more information.
Military has two broad meanings. In its first sense, it refers to soldiers and soldiering. In its second sense, it refers to armed forces as a whole. Over the years, military units have come in all shapes and sizes.
..... Click the link for more information.
Editing of this page by unregistered or newly registered users is currently disabled due to vandalism.
If you are prevented from editing this page, and you wish to make a change, please discuss changes on the talk page, request unprotection, log in, or .
..... Click the link for more information.
Military intelligence (abbreviated MI, int. Commonwealth, or intel. U.S.), is a military discipline that focuses on the gathering, analysis, protection, and dissemination of information about the enemy, terrain, and weather in an area of operations or area of interest.
..... Click the link for more information.
Allied powers:
 Soviet Union
 United States
 United Kingdom
 China
 France
...et al. Axis powers:
 Germany
 Japan
 Italy
...et al.
..... Click the link for more information.
The Cold War was the period of conflict, tension and competition between the United States and the Soviet Union and their respective allies from the mid-1940s until the early 1990s.
..... Click the link for more information.
A jerrycan or jerrican or jerry can is a robust fuel container made from pressed steel. It was designed to hold 20 litres of fuel.

The jerrycan was invented by the Germans during a secret project ordered by Hitler.
..... Click the link for more information.
Type Strategic bomber
Manufacturer Tupolev
Maiden flight 19 May 1947
Introduction 1949
Retired mid 1960s
Primary users Soviet Air Force
PLA Air Force
Produced 1949-1952
Number built 847

..... Click the link for more information.
Type Strategic bomber
Manufacturer Boeing
Maiden flight September 21, 1942
Introduced May 8, 1944
Primary users United States Army Air Forces
Royal Air Force
Royal Australian Air Force
Produced 1943 – 1945

..... Click the link for more information.
Editing of this page by unregistered or newly registered users is currently disabled due to vandalism.
If you are prevented from editing this page, and you wish to make a change, please discuss changes on the talk page, request unprotection, log in, or .
..... Click the link for more information.
Union of Soviet Socialist Republics (abbreviated USSR, Russian: ; tr.
..... Click the link for more information.
Function single stage ballistic missile (area bombing)
Manufacturer Mittelwerk GmbH (development by Army Research Center Peenemünde)
Unit cost 100,000 RM January 1944, 50,000 RM March 1945[1]
Entered service 1944
..... Click the link for more information.
The R-1 rocket (NATO reporting name SS-1 Scunner) (and its evolved version R-2 or SS-2 Sibling) was a copy of the German V-2 rocket manufactured by the Soviet Union.
..... Click the link for more information.
R-7 Semyorka (Russian: Р-7 "Семёрка") was the world's first intercontinental ballistic missile and was deployed by the Soviet Union during the Cold War from 1959 to 1968.
..... Click the link for more information.


This article is copied from an article on Wikipedia.org - the free encyclopedia created and edited by online user community. The text was not checked or edited by anyone on our staff. Although the vast majority of the wikipedia encyclopedia articles provide accurate and timely information please do not assume the accuracy of any particular article. This article is distributed under the terms of GNU Free Documentation License.
Herod_Archelaus


page counter