US11205005B2 - Identifying microarchitectural security vulnerabilities using simulation comparison with modified secret data - Google Patents
Identifying microarchitectural security vulnerabilities using simulation comparison with modified secret data Download PDFInfo
- Publication number
- US11205005B2 US11205005B2 US16/578,739 US201916578739A US11205005B2 US 11205005 B2 US11205005 B2 US 11205005B2 US 201916578739 A US201916578739 A US 201916578739A US 11205005 B2 US11205005 B2 US 11205005B2
- Authority
- US
- United States
- Prior art keywords
- output
- simulation
- piece
- secret data
- microarchitecture
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Active, expires
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F21/00—Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F21/50—Monitoring users, programs or devices to maintain the integrity of platforms, e.g. of processors, firmware or operating systems
- G06F21/57—Certifying or maintaining trusted computer platforms, e.g. secure boots or power-downs, version controls, system software checks, secure updates or assessing vulnerabilities
- G06F21/577—Assessing vulnerabilities and evaluating computer system security
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F21/00—Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F21/70—Protecting specific internal or peripheral components, in which the protection of a component leads to protection of the entire computer
- G06F21/82—Protecting input, output or interconnection devices
- G06F21/85—Protecting input, output or interconnection devices interconnection devices, e.g. bus-connected or in-line devices
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F2221/00—Indexing scheme relating to security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
- G06F2221/03—Indexing scheme relating to G06F21/50, monitoring users, programs or devices to maintain the integrity of platforms
- G06F2221/034—Test or assess a computer or a system
Definitions
- the present invention generally relates to microarchitectural security and more specifically, to identifying microarchitectural security vulnerabilities using simulation comparison with modified secret data.
- Embodiments of the present invention are directed to a computer-implemented method for detecting vulnerabilities in microarchitectures.
- a non-limiting example of the computer-implemented method includes creating a simulation for execution on a model of a microarchitecture, the simulation including a set of instructions and a placeholder for holding a piece of secret data.
- the computer-implemented method executes the simulation a first time on the model of the microarchitecture with a first piece of secret data stored in the placeholder and stores a first output of the first executed simulation.
- the computer-implemented method executes the simulation a second time on the model of the microarchitecture with a second piece of secret data stored in the placeholder and stores a second output of the second executed simulation.
- the computer-implemented method compares the first output with the second output and provides an indication of a microarchitecture vulnerability when there is a difference between the first output and the second output.
- Embodiments of the present invention are directed to a system for detecting vulnerabilities in a microarchitecture.
- a non-limiting example of the system includes a processor and memory coupled to the processor.
- the memory has stored therein instructions that when executed cause the processor to create a simulation for execution on a model of a microarchitecture, the simulation including a set of instructions and a placeholder for holding a piece of secret data.
- the processor executes the simulation a first time on the model of the microarchitecture with a first piece of secret data stored in the placeholder and stores a first output of the first executed simulation.
- the processor executes the simulation a second time on the model of the microarchitecture with a second piece of secret data stored in the placeholder and stores a second output of the second executed simulation.
- the processor compares the first output with the second output and provides an indication of a microarchitecture vulnerability when there is a difference between the first output and the second output.
- Embodiments of the invention are directed to a computer program product for detecting vulnerabilities in a microarchitecture, the computer program product comprising a computer readable storage medium having program instructions embodied therewith.
- the program instructions are executable by a processor to cause the processor to perform a method.
- a non-limiting example of the method includes creating a simulation for execution on a model of a microarchitecture, the simulation including a set of instructions and a placeholder for holding a piece of secret data.
- the method executes the simulation a first time on the model of the microarchitecture with a first piece of secret data stored in the placeholder and stores a first output of the first executed simulation.
- the method executes the simulation a second time on the model of the microarchitecture with a second piece of secret data stored in the placeholder and stores a second output of the second executed simulation.
- the method compares the first output with the second output and provides an indication of a microarchitecture vulnerability when there is a difference between the first output and the second output.
- FIG. 1 depicts a flowchart of a first computer-implemented vulnerability testing method according to embodiments of the invention
- FIG. 2 depicts a flowchart of a second computer-implemented vulnerability testing method according to embodiments of the invention.
- FIG. 3 depicts a high-level block diagram computer system, which can be used to implement one or more aspects of the present invention.
- compositions comprising, “comprising,” “includes,” “including,” “has,” “having,” “contains” or “containing,” or any other variation thereof, are intended to cover a non-exclusive inclusion.
- a composition, a mixture, process, method, article, or apparatus that comprises a list of elements is not necessarily limited to only those elements but can include other elements not expressly listed or inherent to such composition, mixture, process, method, article, or apparatus.
- exemplary is used herein to mean “serving as an example, instance or illustration.” Any embodiment or design described herein as “exemplary” is not necessarily to be construed as preferred or advantageous over other embodiments or designs.
- the terms “at least one” and “one or more” may be understood to include any integer number greater than or equal to one, i.e. one, two, three, four, etc.
- the terms “a plurality” may be understood to include any integer number greater than or equal to two, i.e. two, three, four, five, etc.
- connection may include both an indirect “connection” and a direct “connection.”
- microprocessors can have critical vulnerabilities that allow malicious programs to steal data being processed on computers having these microprocessors.
- Programs are typically not allowed to read data from other programs, but malicious, speculative execution attacks, such as Meltdown and Spectre, can exploit microprocessor vulnerabilities to take secrets stored in the memory of other running programs.
- Meltdown and Spectre introduced the world to the idea of leveraging speculative execution to extract secrets from processors. Identifying these exploits took months for a multinational team of security researchers. Meltdown breaks down the isolation between user applications and an operating system. The attack permits a program to access memory of other programs and the operating system. Spectre breaks down the isolation between different user applications. It allows an attacker to trick programs into leaking secrets.
- one or more embodiments of the invention address the above-described shortcomings of the prior art by providing multiple simulations with the same stimulus but changing a secret piece of data that should not be accessible. Any difference in the execution of those simulations must be the product of observing the unobservable, secret piece of data.
- the embodiments of the invention are described with respect to running two simulations with different secret pieces of secret data and comparing the results, but alternative embodiments of the invention may run n-simulations with the same stimulus but using n different, respective secret data.
- FIG. 1 depicts a flowchart of a first computer-implemented vulnerability testing method according to embodiments of the invention.
- a simulation is initially created with a placeholder, or memory location, for containing secret data that should not be accessible or observable. (Stage 110 ).
- the simulation will properly select an address or addresses for secret data and avoid them everywhere in the simulation, except when using them knowing that the access will be protected. Additionally, a simulation generator will properly mark the secret data addresses for the simulation to use.
- the simulation is designed to be executed on a model of a processor architecture. The model may be hosted on a computer as described in FIG.
- the simulation includes a set of stimuli, along with the secret data, that will yield some output when executed on the model.
- the simulation is executed with a first piece of secret data stored at the placeholder.
- the first piece of secret data can be generated at either test initialization time or when the simulation is initially generated.
- the secret data should be chosen at one of these times because it should be consistent throughout the entire simulation or it's likely the simulation will encounter consistency fails unrelated to actual security problems.
- Executing the simulation generates an output or result that should be independent of the secret data. In other words, the output should only depend on the stimuli of the simulation exclusive of the secret data.
- the simulation is executed again with a second piece of secret data stored at the placeholder. (Stage 130 ). This simulation, too, should have an output or result that is independent of the secret data.
- the computer-implemented method can detect if the output of the simulations is the same or different. If the outputs are not the same between different executions of the simulations having different secret data, this indicates that a vulnerability is present in the microarchitecture. This observable execution difference is a much lower bar for detecting a vulnerability than requiring proof that there is an exploit.
- the embodiments of the invention are described with respect to running two simulations with different secret pieces of secret data and comparing the results, but alternative embodiments of the invention may run n-simulations with the same stimulus but using n different, respective secret data.
- a comparison is made of the outputs of the two simulations.
- An output of the comparison may be filtered to remove unwanted noise stemming from the differences in the secret data used in the first and second execution of the simulation. If the outputs are not the same, an indication is given that vulnerabilities or exploits have been detected. (Stage 150 ). If the outputs are the same, then vulnerabilities or exploits have not been detected. (Stage 160 ).
- FIG. 2 depicts a flowchart of a second computer-implemented vulnerability testing method according to embodiments of the invention.
- a test case is generated with an instruction list to be executed on a model of as microarchitecture. (Stage 210 ).
- the test case will properly select an address or addresses for secret data and avoid them everywhere in the simulation, except when using them knowing that the access will be protected. Additionally, a test case generator will properly mark the secret data addresses for the simulation to use.
- the test case is designed to be executed on a model of a processor architecture.
- the test case may be hosted on a computer as described in FIG.
- the test case includes a set of stimuli, along with the secret data, that will yield some output when executed on the model.
- the test case is a simulation with initial state information and an expected result.
- An instruction being executed in the simulation that is expected to take a security-related exception has memory and data associated with it that form secret data.
- the secret data is marked as secret data in the test case at the time of test case generation. (Stage 220 ).
- the test case is executed on the model with a first piece of secret data that is randomly generated (Stage 225 ) by the computer-implemented method and used instead of the secret data that was marked during test case generation, and the output of the test case is stored. (Stage 230 ).
- the first piece of secret data should be chosen at this time because it should be consistent throughout the entire simulation, or it's likely the simulation will encounter consistency fails unrelated to actual security problems.
- the test case is executed an nth time on the model with a second piece of secret data that is randomly generated by the computer-implemented method (Stage 235 ) and used instead of the secret data that was marked during test case generation, and the output of the test case is again stored.
- Stage 240 The nth piece of secret data should be chosen at this time because it should be consistent throughout the entire simulation, or it's likely the simulation will encounter consistency fails unrelated to actual security problems.
- Stages 235 and 240 can be repeated n number of times, where n is greater than or equal to one.
- the computer-implemented method compares the output of the first test case execution with the output of the n test cases executed.
- An output of the comparison may be filtered to remove unwanted noise stemming from the differences in the secret data used in the first and nth execution of the simulation.
- One filtering method identifies the start and end of each speculation event, compares the output at the start of the event, and uses any differences as a mask against the differences at the end of the event. If the outputs are not the same, vulnerabilities or exploits have been detected, and an indication of vulnerabilities is given by the computer-implemented method.
- Stage 260 If the outputs are the same, then vulnerabilities or exploits have not been detected, and an indication of no vulnerabilities found is given by the method.
- Stage 270 If the outputs are the same, then vulnerabilities or exploits have not been detected, and an indication of no vulnerabilities found is given by the method.
- FIG. 3 depicts a high-level block diagram computer system 300 , which can be used to implement one or more aspects of the present invention. More specifically, computer system 300 can be used to implement some hardware components of embodiments of the present invention. Although one exemplary computer system 300 is shown, computer system 300 includes a communication path 355 , which connects computer system 300 to additional systems (not depicted) and can include one or more wide area networks (WANs) and/or local area networks (LANs) such as the Internet, intranet(s), and/or wireless communication network(s). Computer system 300 and additional system are in communication via communication path 355 , e.g., to communicate data between them.
- WANs wide area networks
- LANs local area networks
- Computer system 300 and additional system are in communication via communication path 355 , e.g., to communicate data between them.
- Computer system 300 includes one or more processors, such as processor 305 .
- Processor 305 is connected to a communication infrastructure 360 (e.g., a communications bus, cross-over bar, or network).
- Computer system 300 can include a display interface 315 that forwards graphics, text, and other data from communication infrastructure 360 (or from a frame buffer not shown) for display on a display unit 325 .
- Computer system 300 also includes a main memory 310 , preferably random access memory (RAM), and can also include a secondary memory 365 .
- Secondary memory 365 can include, for example, a hard disk drive 320 and/or a removable storage drive 330 , representing, for example, a floppy disk drive, a magnetic tape drive, or an optical disk drive.
- Removable storage drive 330 reads from and/or writes to a removable storage unit 340 in a manner well known to those having ordinary skill in the art.
- Removable storage unit 340 represents, for example, a floppy disk, a compact disc, a magnetic tape, or an optical disk, etc. which is read by and written to by removable storage drive 330 .
- removable storage unit 340 includes a computer readable medium having stored therein computer software and/or data.
- secondary memory 365 can include other similar means for allowing computer programs or other instructions to be loaded into the computer system.
- Such means can include, for example, a removable storage unit 345 and an interface 335 .
- Examples of such means can include a program package and package interface (such as that found in video game devices), a removable memory chip (such as an EPROM, or PROM) and associated socket, and other removable storage units 345 and interfaces 335 which allow software and data to be transferred from the removable storage unit 345 to computer system 300 .
- Computer system 300 can also include a communications interface 350 .
- Communications interface 350 allows software and data to be transferred between the computer system and external devices. Examples of communications interface 350 can include a modem, a network interface (such as an Ethernet card), a communications port, or a PCM-CIA slot and card, etcetera.
- Software and data transferred via communications interface 350 are in the form of signals which can be, for example, electronic, electromagnetic, optical, or other signals capable of being received by communications interface 350 . These signals are provided to communications interface 350 via communication path (i.e., channel) 355 .
- Communication path 355 carries signals and can be implemented using wire or cable, fiber optics, a phone line, a cellular phone link, an RF link, and/or other communications channels.
- computer program medium In the present description, the terms “computer program medium,” “computer usable medium,” and “computer readable medium” are used to generally refer to media such as main memory 310 and secondary memory 365 , removable storage drive 330 , and a hard disk installed in hard disk drive 320 .
- Computer programs also called computer control logic
- Such computer programs when run, enable the computer system to perform the features of the present invention as discussed herein.
- the computer programs when run, enable processor 305 to perform the features of the computer system. Accordingly, such computer programs represent controllers of the computer system.
- modules can be implemented as a hardware circuit comprising custom VLSI circuits or gate arrays, off-the-shelf semiconductors such as logic chips, transistors, or other discrete components.
- a module can also be implemented in programmable hardware devices such as field programmable gate arrays, programmable array logic, programmable logic devices or the like.
- Modules can also be implemented in software for execution by various types of processors.
- An identified module of executable code can, for instance, include one or more physical or logical blocks of computer instructions which can, for instance, be organized as an object, procedure, or function. Nevertheless, the executables of an identified module need not be physically located together, but can include disparate instructions stored in different locations which, when joined logically together, comprise the module and achieve the stated purpose for the module.
- the present invention may be a system, a method, and/or a computer program product.
- the computer program product may include a computer readable storage medium (or media) having computer readable program instructions thereon for causing a processor to carry out aspects of the present invention.
- the computer readable storage medium can be a tangible device that can retain and store instructions for use by an instruction execution device.
- the computer readable storage medium may be, for example, but is not limited to, an electronic storage device, a magnetic storage device, an optical storage device, an electromagnetic storage device, a semiconductor storage device, or any suitable combination of the foregoing.
- a non-exhaustive list of more specific examples of the computer readable storage medium includes the following: a portable computer diskette, a hard disk, a random access memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or Flash memory), a static random access memory (SRAM), a portable compact disc read-only memory (CD-ROM), a digital versatile disk (DVD), a memory stick, a floppy disk, a mechanically encoded device such as punch-cards or raised structures in a groove having instructions recorded thereon, and any suitable combination of the foregoing.
- RAM random access memory
- ROM read-only memory
- EPROM or Flash memory erasable programmable read-only memory
- SRAM static random access memory
- CD-ROM compact disc read-only memory
- DVD digital versatile disk
- memory stick a floppy disk
- a mechanically encoded device such as punch-cards or raised structures in a groove having instructions recorded thereon
- a computer readable storage medium is not to be construed as being transitory signals per se, such as radio waves or other freely propagating electromagnetic waves, electromagnetic waves propagating through a waveguide or other transmission media (e.g., light pulses passing through a fiber-optic cable), or electrical signals transmitted through a wire.
- Computer readable program instructions described herein can be downloaded to respective computing/processing devices from a computer readable storage medium or to an external computer or external storage device via a network, for example, the Internet, a local area network, a wide area network and/or a wireless network.
- the network may comprise copper transmission cables, optical transmission fibers, wireless transmission, routers, firewalls, switches, gateway computers and/or edge servers.
- a network adapter card or network interface in each computing/processing device receives computer readable program instructions from the network and forwards the computer readable program instructions for storage in a computer readable storage medium within the respective computing/processing device.
- Computer readable program instructions for carrying out operations of the present invention may be assembler instructions, instruction-set-architecture (ISA) instructions, machine instructions, machine dependent instructions, microcode, firmware instructions, state-setting data, or either source code or object code written in any combination of one or more programming languages, including an object oriented programming language such as Smalltalk, C++ or the like, and conventional procedural programming languages, such as the “C” programming language or similar programming languages.
- the computer readable program instructions may execute entirely on the user's computer, partly on the user's computer, as a stand-alone software package, partly on the user's computer and partly on a remote computer or entirely on the remote computer or server.
- the remote computer may be connected to the user's computer through any type of network, including a local area network (LAN) or a wide area network (WAN), or the connection may be made to an external computer (for example, through the Internet using an Internet Service Provider).
- electronic circuitry including, for example, programmable logic circuitry, field-programmable gate arrays (FPGA), or programmable logic arrays (PLA) may execute the computer readable program instructions by utilizing state information of the computer readable program instructions to personalize the electronic circuitry, in order to perform aspects of the present invention.
- These computer readable program instructions may be provided to a processor of a general purpose computer, special purpose computer, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks.
- These computer readable program instructions may also be stored in a computer readable storage medium that can direct a computer, a programmable data processing apparatus, and/or other devices to function in a particular manner, such that the computer readable storage medium having instructions stored therein comprises an article of manufacture including instructions which implement aspects of the function/act specified in the flowchart and/or block diagram block or blocks.
- the computer readable program instructions may also be loaded onto a computer, other programmable data processing apparatus, or other device to cause a series of operational steps to be performed on the computer, other programmable apparatus or other device to produce a computer implemented process, such that the instructions which execute on the computer, other programmable apparatus, or other device implement the functions/acts specified in the flowchart and/or block diagram block or blocks.
- each block in the flowchart or block diagrams may represent a module, segment, or portion of instructions, which comprises one or more executable instructions for implementing the specified logical function(s).
- the functions noted in the blocks may occur out of the order noted in the Figures.
- two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved.
Landscapes
- Engineering & Computer Science (AREA)
- Computer Hardware Design (AREA)
- Computer Security & Cryptography (AREA)
- General Engineering & Computer Science (AREA)
- Theoretical Computer Science (AREA)
- Software Systems (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Computing Systems (AREA)
- Debugging And Monitoring (AREA)
- Management, Administration, Business Operations System, And Electronic Commerce (AREA)
Abstract
Description
Claims (20)
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US16/578,739 US11205005B2 (en) | 2019-09-23 | 2019-09-23 | Identifying microarchitectural security vulnerabilities using simulation comparison with modified secret data |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US16/578,739 US11205005B2 (en) | 2019-09-23 | 2019-09-23 | Identifying microarchitectural security vulnerabilities using simulation comparison with modified secret data |
Publications (2)
Publication Number | Publication Date |
---|---|
US20210089659A1 US20210089659A1 (en) | 2021-03-25 |
US11205005B2 true US11205005B2 (en) | 2021-12-21 |
Family
ID=74882074
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US16/578,739 Active 2040-02-24 US11205005B2 (en) | 2019-09-23 | 2019-09-23 | Identifying microarchitectural security vulnerabilities using simulation comparison with modified secret data |
Country Status (1)
Country | Link |
---|---|
US (1) | US11205005B2 (en) |
Citations (19)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20020184613A1 (en) | 2001-01-24 | 2002-12-05 | Kuzemchak Edward P. | Method and tool for verification of algorithms ported from one instruction set architecture to another |
US20040111594A1 (en) | 2002-12-05 | 2004-06-10 | International Business Machines Corporation | Multithreading recycle and dispatch mechanism |
US20090204384A1 (en) | 2008-02-12 | 2009-08-13 | Kabushiki Kaisha Toshiba | Debugging device, debugging method and hardware emulator |
US20100250497A1 (en) * | 2007-01-05 | 2010-09-30 | Redlich Ron M | Electromagnetic pulse (EMP) hardened information infrastructure with extractor, cloud dispersal, secure storage, content analysis and classification and method therefor |
US20110191854A1 (en) | 2010-01-29 | 2011-08-04 | Anastasios Giakouminakis | Methods and systems for testing and analyzing vulnerabilities of computing systems based on exploits of the vulnerabilities |
US20130013283A1 (en) | 2011-07-06 | 2013-01-10 | Ari Gam | Distributed multi-pass microarchitecture simulation |
US8683583B2 (en) | 2010-12-02 | 2014-03-25 | Microsoft Corporation | Using virtual table protections to prevent the exploitation of object corruption vulnerabilities |
US20140201843A1 (en) | 2013-01-15 | 2014-07-17 | Beyondtrust Software, Inc. | Systems and methods for identifying and reporting application and file vulnerabilities |
US20140310814A1 (en) | 2013-04-10 | 2014-10-16 | International Business Machines Corporation | Identifying security vulnerabilities related to inter-process communications |
US9189617B2 (en) | 2013-09-27 | 2015-11-17 | Intel Corporation | Apparatus and method for implementing zero-knowledge proof security techniques on a computing platform |
US9262170B2 (en) | 2012-07-26 | 2016-02-16 | International Business Machines Corporation | Out-of-order checkpoint reclamation in a checkpoint processing and recovery core microarchitecture |
US20160232084A1 (en) * | 2015-02-09 | 2016-08-11 | Mentor Graphics Corporation | Class object handle tracking |
US20170019422A1 (en) | 2015-07-13 | 2017-01-19 | Narf Industries, LLC | System and Method for Identifying and Preventing Vulnerability Exploitation Using Symbolic Constraints |
US9665674B2 (en) | 2015-05-29 | 2017-05-30 | International Business Machines Corporation | Automating a microarchitecture design exploration environment |
US20170351318A1 (en) | 2016-06-02 | 2017-12-07 | Northwestern University | System and method for associative power and clock management with instruction governed operation for power efficient computing |
US9891926B2 (en) | 2015-09-30 | 2018-02-13 | International Business Machines Corporation | Heterogeneous core microarchitecture |
US9934341B2 (en) | 2015-11-11 | 2018-04-03 | International Business Machines Corporation | Simulation of modifications to microprocessor design |
US20180241548A1 (en) | 2015-02-25 | 2018-08-23 | Secret Double Octopus Ltd | Method and system for authenticating and preserving the integrity of communication, secured by secret sharing |
US20210264027A1 (en) * | 2020-02-20 | 2021-08-26 | The George Washington University | Reuse-trap: re-purposing cache reuse distance to defend against side channel leakage |
-
2019
- 2019-09-23 US US16/578,739 patent/US11205005B2/en active Active
Patent Citations (19)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20020184613A1 (en) | 2001-01-24 | 2002-12-05 | Kuzemchak Edward P. | Method and tool for verification of algorithms ported from one instruction set architecture to another |
US20040111594A1 (en) | 2002-12-05 | 2004-06-10 | International Business Machines Corporation | Multithreading recycle and dispatch mechanism |
US20100250497A1 (en) * | 2007-01-05 | 2010-09-30 | Redlich Ron M | Electromagnetic pulse (EMP) hardened information infrastructure with extractor, cloud dispersal, secure storage, content analysis and classification and method therefor |
US20090204384A1 (en) | 2008-02-12 | 2009-08-13 | Kabushiki Kaisha Toshiba | Debugging device, debugging method and hardware emulator |
US20110191854A1 (en) | 2010-01-29 | 2011-08-04 | Anastasios Giakouminakis | Methods and systems for testing and analyzing vulnerabilities of computing systems based on exploits of the vulnerabilities |
US8683583B2 (en) | 2010-12-02 | 2014-03-25 | Microsoft Corporation | Using virtual table protections to prevent the exploitation of object corruption vulnerabilities |
US20130013283A1 (en) | 2011-07-06 | 2013-01-10 | Ari Gam | Distributed multi-pass microarchitecture simulation |
US9262170B2 (en) | 2012-07-26 | 2016-02-16 | International Business Machines Corporation | Out-of-order checkpoint reclamation in a checkpoint processing and recovery core microarchitecture |
US20140201843A1 (en) | 2013-01-15 | 2014-07-17 | Beyondtrust Software, Inc. | Systems and methods for identifying and reporting application and file vulnerabilities |
US20140310814A1 (en) | 2013-04-10 | 2014-10-16 | International Business Machines Corporation | Identifying security vulnerabilities related to inter-process communications |
US9189617B2 (en) | 2013-09-27 | 2015-11-17 | Intel Corporation | Apparatus and method for implementing zero-knowledge proof security techniques on a computing platform |
US20160232084A1 (en) * | 2015-02-09 | 2016-08-11 | Mentor Graphics Corporation | Class object handle tracking |
US20180241548A1 (en) | 2015-02-25 | 2018-08-23 | Secret Double Octopus Ltd | Method and system for authenticating and preserving the integrity of communication, secured by secret sharing |
US9665674B2 (en) | 2015-05-29 | 2017-05-30 | International Business Machines Corporation | Automating a microarchitecture design exploration environment |
US20170019422A1 (en) | 2015-07-13 | 2017-01-19 | Narf Industries, LLC | System and Method for Identifying and Preventing Vulnerability Exploitation Using Symbolic Constraints |
US9891926B2 (en) | 2015-09-30 | 2018-02-13 | International Business Machines Corporation | Heterogeneous core microarchitecture |
US9934341B2 (en) | 2015-11-11 | 2018-04-03 | International Business Machines Corporation | Simulation of modifications to microprocessor design |
US20170351318A1 (en) | 2016-06-02 | 2017-12-07 | Northwestern University | System and method for associative power and clock management with instruction governed operation for power efficient computing |
US20210264027A1 (en) * | 2020-02-20 | 2021-08-26 | The George Washington University | Reuse-trap: re-purposing cache reuse distance to defend against side channel leakage |
Non-Patent Citations (9)
Title |
---|
Chen et al.; "SGXPECTRE Attacks: Stealing Intel Secrets from SGX Enclaves via Speculative Execution"; The Ohio State University; arXiv:1802.09085v3 [cs.CR]; Jun. 3, 2018; 16 pages. |
Hendrickson et al.; "Targeted Very Long Delay for Increasing Speculative Execution Progression"; U.S. Appl. No. 16/578,741, filed Sep. 23, 2019. |
Kocher et al.; "Spectre Attacks: Exploiting Speculative Execution"; Cornell University, Cite As: arXiv:1801.01203; Jan. 3, 2018; 16 pages. |
Lipp et al.; "Meltdown"; Cornell University, Cited As: arXiv:1801.01207; Jan. 3, 2018; 16 pages. |
List of IBM Patents or Patent Applications Treated as Related; Date Filed: Sep. 24, 2019, 2 pages. |
Transmittal Form PTO/SB/21, signed Mar. 17, 2020. |
Walcott et al.; "Dynamic Prediction of Architectural Vulnerability from Microarchitectural State"; ISCA'07 34th ACM Annual Inter. Symp. On; Jun. 9-13, 2007; 12 pages. |
Wu et al.; "Eliminating Timing Side-Channel Leaks using Program Repair"; ISSTA'18 27th ACM SIGSOFT International Symposium On; arXiv:1806.02444v2 [cs.CR]; Jul. 21, 2018; 12 pages. |
Zhang et al.; "Identifying Security Critical Properties for the Dynamic Verification of a Processor"; ASPLOS'17 22nd ACM Inter. Conf. On; Apr. 8-12, 2017; 14 pages. |
Also Published As
Publication number | Publication date |
---|---|
US20210089659A1 (en) | 2021-03-25 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US11270002B2 (en) | Hardware trojan detection through information flow security verification | |
Contreras et al. | Security vulnerability analysis of design-for-test exploits for asset protection in SoCs | |
Lee et al. | Design and implementation of the secure compiler and virtual machine for developing secure IoT services | |
CN107408176A (en) | The execution of malicious objects dissects detection | |
Mahmoud et al. | Electrical-level attacks on CPUs, FPGAs, and GPUs: Survey and implications in the heterogeneous era | |
Saß et al. | Oops..! I Glitched It Again! How to {Multi-Glitch} the {Glitching-Protections} on {ARM}{TrustZone-M} | |
US10417112B2 (en) | Code coverage through overlay hooks | |
Dabrowski et al. | Towards a hardware Trojan detection cycle | |
US20130007529A1 (en) | Static analysis based on observed string values during execution of a computer-based software application | |
Lyu et al. | System-on-chip security assertions | |
Villalón-Huerta et al. | A taxonomy for threat actors’ persistence techniques | |
US11205005B2 (en) | Identifying microarchitectural security vulnerabilities using simulation comparison with modified secret data | |
US11416623B2 (en) | Automatic penetration testing enablement of regression buckets | |
US11443044B2 (en) | Targeted very long delay for increasing speculative execution progression | |
Kitsos et al. | Ring oscillators and hardware Trojan detection | |
López-Morales et al. | SoK: Security of Programmable Logic Controllers | |
KR100985071B1 (en) | Method and Apparatus for detection and prevention malicious code using script languages for computer system | |
US11822673B2 (en) | Guided micro-fuzzing through hybrid program analysis | |
Nahiyan et al. | Security rule check | |
Weber et al. | Sovereignty in information technology | |
US11657159B2 (en) | Identifying security vulnerabilities using modeled attribute propagation | |
Alshaer | Cross-Layer Fault Analysis for Microprocessor Architectures (CLAM) | |
Nep et al. | A research on countering virtual machine evasion techniques of malware in dynamic analysis | |
Feldtkeller et al. | Challenges and opportunities of security-aware EDA | |
Khairallah et al. | Differential fault attack resistant hardware design automation |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
AS | Assignment |
Owner name: INTERNATIONAL BUSINESS MACHINES CORPORATION, NEW YORK Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:PARDINI, MATTHEW MICHAEL GARCIA;ALEXANDER, GREGORY WILLIAM;HSIEH, JONATHAN TING;AND OTHERS;SIGNING DATES FROM 20190905 TO 20190923;REEL/FRAME:050460/0190 |
|
FEPP | Fee payment procedure |
Free format text: ENTITY STATUS SET TO UNDISCOUNTED (ORIGINAL EVENT CODE: BIG.); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: NON FINAL ACTION MAILED |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: RESPONSE TO NON-FINAL OFFICE ACTION ENTERED AND FORWARDED TO EXAMINER |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: NOTICE OF ALLOWANCE MAILED -- APPLICATION RECEIVED IN OFFICE OF PUBLICATIONS |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: AWAITING TC RESP., ISSUE FEE NOT PAID |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: NOTICE OF ALLOWANCE MAILED -- APPLICATION RECEIVED IN OFFICE OF PUBLICATIONS |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: PUBLICATIONS -- ISSUE FEE PAYMENT RECEIVED |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: PUBLICATIONS -- ISSUE FEE PAYMENT VERIFIED |
|
STCF | Information on status: patent grant |
Free format text: PATENTED CASE |