Method of obfuscating computer instruction streams
21 claims: 7 independent, 14 dependent
- 1A method of obfuscating computer instruction streams comprising:breaking (419, 429, 512, 522) each of at least two operative instruction streams (A, B, 414, 424, 610, 620, 630, 710, 720, 810, 820, 1150, 1140, 951, 952, 941, 942, 921, 922) into a plurality of parts (410, 420, 612, 614, 622, 624, 632, 634, 711, 713, 722, 724, 812, 814, 826, 828, 1152, 1141);and interleaving (431, 532) the parts into a new instruction stream (430, 640, 730, 830, 1170, 956);wherein the parts are interleaved without causing interference between parts from different instruction streams;local variables of different operative instruction streams in the new instruction stream being different, and an instruction which was reachable in one of the two operative instruction streams being reachable in the new instruction stream.
- 7A method as claimed in any preceding claim, wherein a second part of a second one of the at least two operative instruction streams is interleaved between two first parts of a first one of the at least two operative instruction streams so that when the two first parts are executed, the second part will also be executed.
- 15A digital processing system as claimed in any of claims 9 to 14, configured so that a second part of a second one of the at least two operative instruction streams is interleaved between two first parts of a first one of the at least two operative instruction streams in such a manner that when the two first parts are executed, the second part will also be executed.
- 17A method as claimed in any of claims to 1 to 8 further comprising the step of storing the obfuscated stream on machine readable media.
- 18A method as claimed in any of claims to 1 to 8 further comprising the step of transmitting the obfuscated stream through a network.
- 19A computer-program product (1110) in the form of machine readable media having stored thereon instructions which when executed on a digital processing system will cause the digital processing system to obfuscate computer instruction streams by carrying out the steps of the method claimed in any of claims 1 to 8.
- 20A method comprising the steps of storing on a digital processing system an obfuscated computer instruction stream (430, 640, 730, 830, 1170, 956) that has been obfuscated by a method as claimed in any of claims 1 to 8, which when run on a data-processing system reveals parts (410, 420, 612, 614, 622, 624, 632, 634, 711, 713, 722, 724, 812, 814, 826, 828, 1152, 1141) which are interleaved, said parts having been taken from at least two operative instruction streams (A, B, 414, 424, 610, 620, 630, 710, 720, 810, 820, 1150, 1140, 951, 952, 941, 942, 921, 922), and executing the stored obfuscated computer instruction stream.
Independent claims7
41 paragraphs, as filed
The present invention relates to the field of computer science, and more particularly to a method and apparatus for obfuscating computer instruction streams.
Some modern compilers, most notably the Java compiler from Sun Microsystems, are designed to compile source code (e. g. Java Programs or Java Applets) into sequences of instructions to be executed on a stack-based virtual machine. A key benefit of compiling source code for execution on a virtual machine is that any processor that can be programmed to implement a virtual machine, regardless of the processors internal architecture, may execute the compiled code.
When a human readable unit of source code is compiled into a stream of instructions for a virtual machine by a typical compiler, the mechanically compiled virtual machine instructions can be deterministically transformed back into a version of the human readable source code. This process of de- compilation of instructions for a virtual machine into a version of the human readable source code enables reverse engineering of the intellectual properties embedded in the source code. After spending a large amount of time and resources developing a software program, developers do not want to place their applications in the public domain in a form that gives away their efforts.
Obfuscation is the process of transforming a stream of computer instructions into another stream of instructions that executes the same set of logical operations as that in the original stream so that it is more difficult to be transformer back into a version of the human readable source code.
<figref idref="f0001">Figure 1</figref> shows one example of an obfuscation method according to one embodiment of the prior art. In operation 341 a typical compiler converts a unit of human readable source code 302 into a virtual machine instruction stream 304 which can be easily de-compiled into a version of the human readable source code. To obfuscate the virtual machine instruction stream 304, operation 343 breaks the stream 304 into a set of parts 310. These parts are transformed and padded with dummy instructions in operation 345. For example, part 316 is transformed into part 324, which is padded with dummy instructions 322. The transformations in operation 345 may include reversing loops, expanding loops, flow transformation, renaming identifiers, etc. After the transformation and padding, operation 347 assembles the set of transformed and padded parts 320 into a new instruction stream 330. The new instruction stream is obfuscated and more difficult to be de-compiled into a version of the human readable source code than the mechanically compiled instruction stream 304.
Dummy instructions 322 are not intended to be executed by a virtual machine for efficiency. For example, null instructions may be used as the dummy instructions to change the patterns of mechanically compiled instruction streams in order to prevent some software programs from de-compiling the instruction stream into a version of the human readable source code.
<figref idref="f0002">Figure 2</figref> shows a block diagram of an obfuscation method according to one example of the prior art. Operation 202, corresponding to the operation 343 in <figref idref="f0001">Figure 1</figref>, breaks a virtual machine instruction stream into parts. Operation 204 transforms the parts; operation 206 pads the transformed parts with dummy instructions. Operations 204 and 206 correspond to the operation 345 in <figref idref="f0001">Figure 1</figref>. Operation 208, corresponding to operation 347 in <figref idref="f0001">Figure 1</figref>, assembles the padded and transformed parts into a new instruction stream.
However, the obfuscation methods as in <figref idref="f0001">Figures 1</figref> and <figref idref="f0002">2</figref> are subject to attack. The distinct characteristics of the parts, which are taken from a logically cohesive source, and the dummy instructions, which do not perform any logical operation, make it possible to filter out the dummy instructions from the obfuscated instruction stream. Just as chaff can be separated from wheat because of the different physical characteristics, so can be the dummy instructions when an obfuscated instruction stream is compared to an instruction stream that is from a logically cohesive source. The chaff can be seen and removed. The dummy instructions may be shown to be garbage or not producible from a valid source, and thus be detected and removed.
Since in operation 204 the transformations applied to the parts are chosen from a transformation library, a large pool of obfuscated virtual machine instruction streams may be processed to derive the transformation library. With a derived transformation library, an obfuscated instruction stream produced according to the methods in <figref idref="f0001">Figures 1</figref> and <figref idref="f0002">2</figref> can be transformed back into a version of a human readable source code once the dummy instruction are removed.
"<nplcit id="ncit0001" npl-type="s"><text>A Taxonomy of obfuscating transformations", Collberg et al, Technical report department of Computer Science, University of Auckland, no. 148, July 1997 (1997-07</text></nplcit>) discloses a number of different obfuscation techniques. In particular, it discloses an obfuscation technique wherein two methods of the same class are interleaved by merging the bodies and parameter lists of the methods and adding an extra parameter to discriminate between calls to individual methods.
Methods and apparatuses for obfuscating computer instruction streams to prevent reverse engineering of the human readable source codes of the instruction streams are described here.
According to a first aspect, the present invention provides a method of obfuscating computer instruction streams comprising: breaking each of at least two operative instruction streams into a plurality of parts; and interleaving the parts into a new instruction stream; wherein the parts are interleaved without causing interference between parts from different instruction streams; local variables of different operative instruction streams in the new instruction stream being different, and an instruction which was reachable in one of the two operative instruction streams being reachable in the new instruction stream.
In one embodiment, the method further comprises inserting into the new instruction stream an obfuscation code to prevent the reversal of interleaving. Preferably, the parts are interleaved with obfuscation codes into a new instruction stream. The obfuscation codes interrelate the parts from different instruction streams to prevent reversal of interleaving.
In one embodiment, the obfuscation method comprises both transforming and interleaving the parts into a new instruction stream. In one example, the parts are transformed so that the new instruction stream performs at least the same logical operations of one of the operative instruction streams.
The present invention includes a data processing system which is configured to performs the above obfuscating method, comprising: means for breaking each of at least two operative instruction streams into a plurality of parts; and means for interleaving the parts into a new instruction stream, wherein the parts are interleaved without causing interference between parts from different instruction streams, local variables of different operative instruction streams in the new instruction stream being different, and an instruction which was reachable in one of the two operative instruction streams being reachable in the new instruction stream.
The invention also includes machine readable media carrying instructions which when executed on a data processing system will cause the systems to perform the above obfuscating method.
The invention further provides a software product in the form of machine readable media having stored thereon an obfuscated computer instruction stream which has been obfuscated by the above method.
The invention also provides a method of executing an obfuscated computer instruction stream which has been obfuscated by the above method.
Preferred embodiments of the present invention will now be described by way of example only and with reference to the accompanying drawings, in which: <ul id="ul0001" list-style="none" compact="compact"><li><figref idref="f0001">Figure 1</figref> shows a method of obfuscating a computer instruction stream according to one example of the prior art,</li><li><figref idref="f0002">Figure 2</figref> shows a block diagram of an obfuscation method according to one example of the prior art,</li><li><figref idref="f0003">Figure 3</figref> shows a block diagram example of a data processing system which may be used with the present invention,</li><li><figref idref="f0004">Figure 4</figref> shows a method of obfuscating computer instruction streams' according to one embodiment of the present invention,</li><li><figref idref="f0005">Figure 5</figref> shows a block diagram of an obfuscation method according to one embodiment of the present invention,</li><li><figref idref="f0006">Figure 6</figref> shows another example of obfuscating computer instruction streams according to the present invention,</li><li><figref idref="f0007">Figure 7</figref> shows a detailed example of interleaving parts from two computer instruction streams into an obfuscated stream.</li><li><figref idref="f0008">Figure 8</figref> shows an example of obfuscating computer instruction streams according to the present invention where transformed and interleaved parts from two streams of instructions are interrelated.</li><li><figref idref="f0009">Figure 9</figref> shows examples of executing computer instruction streams obfuscated using various methods of the present invention.</li><li><figref idref="f0010">Figure 10</figref> shows a block diagram example of executing a combined computer instruction stream.</li><li><figref idref="f0011">Figure 11</figref> shows an example of a machine readable media, which may be used to store software and data which when executed by a data processor system causes the system to perform various methods of the present invention.</li></ul>
The subject invention will be described with reference to numerous details set forth below, and the accompanying drawings will illustrate the invention. The following description and drawings are illustrative of the invention and are not to be construed as limiting the invention. Numerous specific details are described to provide a thorough understanding of the present invention. However, in certain instances, well known or conventional details are not described in order not to unnecessarily obscure the present invention in detail.
<figref idref="f0003">Figure 3</figref> shows one example of a typical computer system which may be used with the present invention. Note that while <figref idref="f0003">Figure 3</figref> illustrates various components of a computer system, it is not intended to represent any particular architecture or manner of interconnecting the components as such details are not germane to the present invention. It will also be appreciated that network computers and other data processing systems which have fewer components or perhaps more components may also be used with the present invention. The computer system of <figref idref="f0003">Figure 3</figref> may, for example, be an Apple Macintosh computer.
As shown in <figref idref="f0003">Figure 3</figref>, the computer system 101, which is a form of a data processing system, includes a bus 102 which is coupled to a microprocessor 103 and a ROM 107 and volatile RAM 105 and a non-volatile memory 106. The microprocessor 103, which may be a G3 or G4 microprocessor from Motorola, Inc. or IBM is coupled to cache memory 104 as shown in the example of <figref idref="f0003">Figure 3</figref>. The bus 102 interconnects these various components together and also interconnects these components 103, 107, 105, and 106 to a display controller and display device 108 and to peripheral devices such as input/output (I/O) devices which may be mice, keyboards, modems, network interfaces, printers and other devices which are well known in the art. Typically, the input/output devices 110 are coupled to the system through input/output controllers 109. The volatile RAM 105 is typically implemented as dynamic RAM (DRAM) which requires power continually in order to refresh or maintain the data in the memory. The non-volatile memory 106 is typically a magnetic hard drive or a magnetic optical drive or an optical drive or a DVD RAM or other type of memory systems which maintain data even after power is removed from the system. Typically, the non-volatile memory will also be a random access memory although this is not required. While <figref idref="f0003">Figure 3</figref> shows that the non-volatile memory is a local device coupled directly to the rest of the components in the data processing system, it will be appreciated that the present invention may utilize a non-volatile memory which is remote from the system, such as a network storage device which is coupled to the data processing system through a network interface such as a modem or Ethernet interface. The bus 102 may include one or more buses connected to each other through various bridges, controllers and/or adapters as is well known in the art. In one embodiment the I/O controller 109 includes a USB (Universal Serial Bus) adapter for controlling USB peripherals.
It will be apparent from this description that aspects of the present invention may be embodied, at least in part, in software. That is, the techniques may be carried out in a computer system or other data processing system in response to its processor, such as a microprocessor, executing sequences of instructions contained in a memory, such as ROM 107, volatile RAM 105, non-volatile memory 106, cache 104 or a remote storage device. In various embodiments, hardwired circuitry may be used in combination with software instructions to implement the present invention. Thus, the techniques are not limited to any specific combination of hardware circuitry and software nor to any particular source for the instructions executed by the data processing system. In addition, throughout this description, various functions and operations are described as being performed by or caused by software code to simplify description. However, those skilled in the art will recognize what is meant by such expressions is that the functions result from execution of the code by a processor, such as the microprocessor 103.
At least one embodiment of the present invention seeks to produce obfuscated streams of virtual machine instructions that are not reversible into a version of human readable source codes. According to the present invention, parts of a number of operative instruction streams are interleaved to produce a combined instruction stream. The combined instruction stream is obfuscated so that it cannot be de-compiled into a version of the human readable source code. Since parts of operative instruction streams are interleaved, each part of the obfuscated stream is a logically cohesive part of an instruction stream. No part of the obfuscated instruction stream can be shown to be garbage or not producible from a valid source. For simplicity, an operative instruction stream will be understood to be a series of instructions corresponding to a method in a source code (e.g., a method in a class, a function, or a subroutine).
In one embodiment of the present invention, stack-based instruction streams, such as instruction streams for a Java virtual machine, are broken into a number of stack-balanced blocks. Stack-balanced blocks are instruction sequences that, after execution, leave the stack in the same state as before execution. More specifically, a stack-balanced block is a sequence of instructions that, when executed, causes an equal number of stack push and pop operations to take place in an order such that, throughout execution of the sequence of instructions, the number of completed stack pop operations does not exceed the number of completed stack push operations. Thus, it is perfectly legal for instructions within a stack-balanced block to push-values-onto the stack, but the values must be popped off the stack by the end of stack-balanced block so that the stack is unchanged.
When a block of stack-balanced instructions is inserted into an instruction stream, the stack operations caused by the block of stack-balanced instructions do not interfere with the stack operations of the original instruction stream. The local variables used by the block of stack-balanced instructions may be changed so that the operation of the block of stack-balanced instructions has no side effect on the local variables used by the original instruction stream. The local variables and values on the stack may also be transformed within these blocks via functions which, when executed over the course of the entire method in series with the intended function of the method, equal the identity function applied to the intended function of the method. In some embodiments of the present invention, side effects may be intentionally preserved so that the inserted block of stack-balanced instructions enriches the functionality of the original instruction stream. Access to a non-local variable by the block of stack-balanced instructions may be substituted by access to a variable of the same type, which is accessible to the original instruction stream.
<figref idref="f0004">Figure 4</figref> shows a method of obfuscating computer instruction streams according to one embodiment of the present invention. In operations 417 and 427 human readable source codes 412 and 422 are mechanically compiled into instruction streams 414 and 424, which can be easily de-compiled into a version of human readable source codes. To obfuscate them, the instruction streams 414 and 424 are broken into parts. The instruction stream 414 is broken into a set of parts 410; the instruction stream 424 is broken into a set of parts 420.
After the instruction streams 414 and 424 are broken into parts, operation 431 interleaves these parts into a new instruction stream 430. For example, parts 426 and 428 taken from the instruction stream 424 are inserted between parts 416 and 418 taken from the instruction stream 414. As a result, in the obfuscated instruction stream 430, parts 446 and 448, which correspond to parts 426 and 428 from the instruction stream 424, are located between parts 436 and 438, which correspond to parts 416 and 418 from the instruction stream 414.
<figref idref="f0005">Figure 5</figref> shows a block diagram of an obfuscation method according to one embodiment of the present invention. Operations 512 and 522, corresponding to operations 419 and 429 in <figref idref="f0004">Figure 4</figref>, break the operative instruction streams into parts. After the instruction streams are broken into parts, the parts are optionally transformed in operations 514 or 524. The optional transformations may involve reversing loops, expanding loops, flow transformation, renaming identifiers, changing the usage of variables, eliminating or substituting instructions, etc. Finally, the optionally transformed parts are interleaved into a new obfuscated instruction stream in operation 532. In other embodiments of the present invention, optional transformations may also take place before the virtual machine instruction streams are broken into parts.
While <figref idref="f0005">Figure 5</figref> shows an example of interleaving two instruction streams into an obfuscated stream, multiple instructions streams can be interleaved into a single obfuscated instructions stream according to the present invention. <figref idref="f0006">Figure 6</figref> shows an example where three streams of computer instructions are interleaved.
The order of the parts in an interleaved stream may be different from the order of the corresponding parts in the original stream. <figref idref="f0006">Figure 6</figref> shows such an example. Parts from an important stream 610 and unimportant streams 620 and 630 are transformed and interleaved into a new combined stream 640. In <figref idref="f0006">Figure 6</figref> it is assumed that part 614 does not depend on part 612. Thus, part 614 can be moved before part 612. In the original instruction stream 610, part 612 is located before part 614. Part 612 is transformed into part 642 in the combined stream 640, and part 614 is transformed into part 644. In the combined stream 640, part 642 is placed after part 644. Parts 652 and 662, which are transformed from part 622 of stream 620 and part 632 of stream 630, are inserted between the parts 644 and 642 in the combined stream 640.
In <figref idref="f0006">Figure 6</figref> the combined stream 640 contains the parts from the important stream 610, as well as the parts from the unimportant stream 620 and 630. Since the parts from the unimportant streams can also be executed by the virtual machine to perform useful tasks, they don't have to be codes just for the purpose of obfuscation. The unimportant stream 620 and 630 can be compiled from computer programs which perform certain related tasks. These computer programs may be a part of an application.
<figref idref="f0007">Figure 7</figref> shows a detailed example of interleaving parts from two streams into an obfuscated stream. Stream 710, which shows a stream of byte codes for a method of a Java class, is the stream to be obfuscated. Stream 720 is a stream of byte codes for the purpose of obfuscation. Stream 720 may be a stream of byte codes for another method of the same class, or a stream of byte codes for a method of another class, or simply a copy of the stream 710 itself. Stream 710 can be broken into parts 711, 713, 715 and 717. Similarly, stream 720 can be broken into parts 722, 724, 726, and 728. The parts from streams 710 and 720 are interleaved into a stream 730, which performs the same logical operations as the stream 710. To prevent the parts from stream 720 from interfering the operation of the parts from stream 710, a number of transformations are performed. For example, part 722 is transformed into part 732 so that part 732 does not operate on the local variable used by part 731 which is taken from the stream to be obfuscated. Similarly, other parts from streams 710 and 720 are also transformed to avoid interference with each other. If part 728 is placed before part 737, the execution of part 728 makes part 737 not reachable, which is not a desirable side effect. However, if part 728 is placed after part 737, it will not be reachable due to part 737. Therefore, part 728 is discarded.
In one embodiment of the present invention, references to non-local variables in the parts taken from the stream for obfuscation purpose are substituted with references to variables of the same type in the stream to be obfuscated in order to avoid violating any access restriction imposed by a Java Virtual Machine. Calls to methods that invoke GUI (Graphical User Interface) operations are discarded or substituted with calls to methods that do not create noticeable effects. Some instructions in the parts from the stream for obfuscation purpose may cause control flow changes that may interfere with the proper execution of the stream to be obfuscated. Therefore, these instructions are discarded or substituted with other instructions that have no adverse effects on the proper execution of the stream to be obfuscated. From the above illustration, those skilled in the art can see that various transformations may be applied to the parts to ensure the resulting obfuscated stream is functionally equivalent to the stream to be obfuscated.
<figref idref="f0008">Figure 8</figref> shows an example of obfuscating computer instruction streams where transformed and interleaved parts from two streams of instructions are interrelated by obfuscation codes. Obfuscation codes are inserted into the obfuscated stream to relate the parts from different streams to prevent the reversal of interleaving. For example, obfuscation codes 842 and 848 in <figref idref="f0008">Figure 8</figref> are inserted into the obfuscated stream 830 to relate the parts from the instruction streams 810 and 820. Parts 812 and 826 are transformed into parts 832 and 836 in the obfuscated stream 830. Obfuscation code 842 is inserted to relate the part 832 from the stream 810 and the part 836 from the stream 820. An obfuscation code may access the variables used by different parts to interrelate them.
<figref idref="f0009">Figure 9</figref> shows examples of executing computer streams obfuscated using various methods of the present invention. <figref idref="f0009">Figure 9</figref> shows a number of computers, including servers 910, 930, 950 and clients 920, 940, 960. In one scenario, a combined and obfuscated stream, generated according to one of the methods of the present invention, is transferred from one computer for execution on a virtual machine. For example, the server 950 has mechanically complied computer instruction streams 951 and 952. The parts of the instruction streams 951 and 952 are interleaved into an obfuscated stream 956. The client 960 downloads the obfuscated stream 956 from server 950 to execute on a virtual machine 967. For instance, server 950 is a web server. The obfuscated stream 956 is a Java application or a Java applet. The client 960 runs a web browser, which downloads the Java application or applet for execution on a virtual machine.
In another scenario, mechanically compiled instruction streams are transferred from a number of computers to a client before a combined and obfuscated stream is produced according to one of the method of the present invention. For example, servers 910 and 930 have instruction streams 911 and 932. The downloaded streams 921 and 922 on client 920 correspond to the streams 911 and 932 on the servers 910 and 930. After the obfuscation process 924, streams 921 and 922 are interleaved into a combined stream, which is executed on a virtual machine 927 on client 920.
In another scenario, mechanically compiled instruction streams, as well as the program which when executed causes a processor to carry to one of the method of the present invention to produce a combined and obfuscated stream, are transferred from a number of computers to a client before the parts from the transferred stream are interleaved into a combined and obfuscated stream. For example, the client 940 downloads an obfuscation program 933 from the server 930, in addition to downloading the streams 911 and 932. Having the downloaded instruction streams 941, 942 and the downloaded obfuscation program 943, client 940 executes the obfuscation program to carry out obfuscation process 944, which interleaves the parts from the instruction streams 941 and 942 into an obfuscated stream for execution on a virtual machine 947.
<figref idref="f0010">Figure 10</figref> shows a block diagram example of executing a combined instruction stream. After receiving from another system a combined stream generated using various methods of the prevent invention, a computer executes the combined stream. Although <figref idref="f0009">Figure 9</figref> or <figref idref="f0010">Figure 10</figref> suggests that the client computer receives the obfuscated stream through a network, other media may be used to facilitate the transfer. For example, floppy diskettes, ROM or other removable media may be used to transfer or distribute the combined instruction stream.
<figref idref="f0011">Figure 11</figref> shows an example of a machine readable media, which may be used to store software and data which when executed by a data processor systems causes the system to perform various methods of the present invention. As noted above, this executable software and data may be stored in various places including for example the ROM 107, the volatile RAM 105, the non-volatile memory 106 and/or the cache 104. Portions of this software and/or data may be stored in any one of these storage devices. The media 1110 for example may be primarily the volatile RAM 105 and the non-volatile memory 106 in one embodiment. The OS 1160 represents an operating system. Instruction streams 1150 and 1140 represent mechanically compiled virtual machine instruction streams. The obfuscated stream 1170 represents the combined stream with parts taken from instruction streams 1150 and 1140. Obfuscation program 1120 represents the computer instructions which when executed by the digital processing system cause the processing system to interleave the parts from operative instruction streams into a combined stream. For example, the parts 1152, 1154 and 1156 of the instruction stream 1150 and the parts 1141, 1143 and 1145 of the instruction stream 1140 are interleaved into an obfuscated stream 1170 which has parts 1172, 1174, 1176, 1171, 1173 and 1175. The virtual machine 1130 represents the instructions that implement a virtual machine on the processing system. The combined stream 1170 when executed on the virtual machine 1130 may perform the same set of logical operations as the instruction stream 1150.
In the foregoing specification, the invention has been describe with reference to specific exemplary embodiments thereof. It will be evident that various modifications may be made thereto without departing from the broader scope of the invention as set forth in the following claims. The specification and drawings are, accordingly, to be regarded in an illustrative sense rather than a restrictive sense.
11 sheets
Sheet 1 Sheet 2 Sheet 3 Sheet 4 Sheet 5 Sheet 6 Sheet 7 Sheet 8 Sheet 9 Sheet 10 Sheet 11
Every citation, both waysCites: the store holds 2 of 3
| Document | Relation | Office |
|---|---|---|
| WO9901815A | Cites | World Intellectual Property Organization (WIPO) |
| US5892899A | Cites | United States of America |
| COLLBERG C ET AL: "A Taxonomy of Obfuscating Transformations" TECHNICAL REPORT DEPARTMENT OF COMPUTER SCIENCE UNIVERSITY OF AUCKLAND, XX, XX, no. 148, July 1997 (1997-07), pages 1-36, XP002140038 | Non-patent | – |
| SPENCER RUGABER, KURT STIREWALT, LINDA M. WILLS: "The Interleaving Problem in Program Understanding" WCRE '95: PROCEEDINGS OF THE SECOND WORKING CONFERENCE ON REVERSE ENGINEERING, [Online] 14 - 16 July 1995, pages 1-10, XP002220287 Toronto, Ontario Retrieved from the Internet: <URL:http://citeseer.nj.nec.com/rugaber95i nterleaving.html> [retrieved on 2002-11-11] | Non-patent | – |
11 members in 4 offices
Priority claims7
| Document | Office | Kind | Date |
|---|---|---|---|
| 915827 | United States of America | – | |
| 91582701 | United States of America | A | |
| 0223605 | United States of America | W | |
| 915827 | – | – | – |
| US20010915827 | – | – | – |
| US2002023605 | – | – | – |
| WO2002US23605 | – | – | – |
Members11
| Document | Office | Kind | |
|---|---|---|---|
| US2003023859A1 | United States of America | A1 | |
| WO03010660A1 | World Intellectual Property Organization (WIPO) | A1 | |
| US6694435B2 | United States of America | B2 | |
| EP1410182A1 | European Patent Office (EPO) | A1 | |
| US2004151306A1 | United States of America | A1 | |
| US7322045B2 | United States of America | B2 | |
| EP1975784A1 | European Patent Office (EPO) | A1 | |
| EP1410182B1This record | European Patent Office (EPO) | B1 | |
| DE60230419D1 | Germany | D1 | |
| EP1975784B1 | European Patent Office (EPO) | B1 | |
| DE60236119D1 | Germany | D1 |
30 legal events, as 5 offices reported them to INPADOC
Over the term
Point at a mark for the eventEvents
| Event | Code | Office | |
|---|---|---|---|
| Lapsed in a contracting state [announced via postgrant information from national office to epo]LapsedPG25 | PG25 | EP | |
| Patent expired after termination of 20 yearsExpiredPE20 | PE20 | GB | |
| Expiry of rightR071 | R071 | DE | |
| Annual fee paid to national office [announced via postgrant information from national office to epo]GrantedPGFP | PGFP | EP | |
| Annual fee paid to national office [announced via postgrant information from national office to epo]GrantedPGFP | PGFP | EP | |
| Annual fee paid to national office [announced via postgrant information from national office to epo]GrantedPGFP | PGFP | EP | |
| Change of representativeR082 | R082 | DE | |
| Fee paymentPLFP | PLFP | FR | |
| Fee paymentPLFP | PLFP | FR | |
| Fee paymentPLFP | PLFP | FR | |
| No opposition filedOpposition26N | 26N | EP | |
| No opposition filed within time limitOppositionORIGINAL CODE: 0009261PLBE | PLBE | EP | |
| Information on the status of an ep patent application or granted ep patentGrantedSTATUS: NO OPPOSITION FILED WITHIN TIME LIMITSTAA | STAA | EP | |
| Standard patents granted in hong kongGrantedGR | GR | HK | |
| Party data changed (patent owner data changed or rights of a patent transferred)RAP2 | RAP2 | EP | |
| Corresponds to:REF | REF | EP | |
| Designated contracting statesAK | AK | EP | |
| European patent grantedGrantedFG4D | FG4D | GB | |
| (expected) grantORIGINAL CODE: 0009210GRAA | GRAA | EP | |
| Grant fee paidORIGINAL CODE: EPIDOSNIGR3GRAS | GRAS | EP | |
| Party data changed (applicant data changed or rights of an application transferred)RAP1 | RAP1 | EP | |
| Designated contracting states (corrected)RBV | RBV | EP | |
| Despatch of communication of intention to grant a patentORIGINAL CODE: EPIDOSNIGR1GRAP | GRAP | EP | |
| First examination report despatched17Q | 17Q | EP | |
| First examination report despatched17Q | 17Q | EP | |
| Requests to designate patent in hong kongDE | DE | HK | |
| Request for examination filed17P | 17P | EP | |
| Designated contracting statesAK | AK | EP | |
| Request for extension of the european patentAX | AX | EP | |
| Public reference made under article 153(3) epc to a published international application that has entered the european phaseORIGINAL CODE: 0009012PUAI | PUAI | EP |
Numbers
- Publication
- 1410182
- Publication, DOCDB
- 1410182
- Publication, EPODOC
- EP1410182
- Application
- 2750295
- Application, DOCDB
- 02750295
- Application, EPODOC
- EP20020750295
Titles3
- German
- METHODE ZUM VERSCHLEIERN VON COMPUTER-BEFEHLSSEQUENZEN
- English
- METHOD OF OBFUSCATING COMPUTER INSTRUCTION STREAMS
- French
- PROCEDE DE DISSIMULATION DE FLOTS D'INSTRUCTIONS INFORMATIQUES
Classification
- CPC, 1
- G06F21/14
- IPC, 3
- G06F9 44
- G06F1 00
- G06F21 00
Designated states1
- Contracting states, 1
- United Kingdom
