Peeking into Pandora's Bochs { Instrumenting a Full System Emulator to Analyse Malicious Software
|
|
|
- Asher Sullivan
- 10 years ago
- Views:
Transcription
1 { Instrumenting a Full System Emulator to Analyse Malicious Software Lutz Bohne ([email protected]) RedTeam Pentesting GmbH October, 28th, Luxembourg hack.lu 2009
2 About Myself About RedTeam Pentesting About Myself F Lutz Bohne F Graduated in 2008 from RWTH Aachen University F Now employed by RedTeam Pentesting GmbH F Talk will cover some work I did for my Diploma Thesis
3 About Myself About RedTeam Pentesting About RedTeam Pentesting F Founded 2004 in Aachen, Germany F Specialisation exclusively on penetration tests F Worldwide realisation of penetration tests F Research in the IT security eld
4 Runtime Packers
5 Runtime Packers F malware is an ever-increasing threat F example: Symantec generated more than 1.6 million new malware signatures in , a 165% increase over 2007 F automated analysis of malware a necessity due to large number of samples F also: malware often runtime-packed F lack of free and open source analysis tools 1
6 Runtime Packers Figure: PE binaries - on disk and in memory
7 Runtime Packers headers headers headers headers.text.text.text.data.data.rsrc.data stub.rsrc.rsrc.text.text.data.data.rsrc.rsrc stub stub Compression Decompression Figure: How runtime packers work
8 Runtime Packers Runtime Packers - Compression When packing a binary, F the original code and data are packed or encrypted F a small stub to unpack or decrypt the original code and data is added F the entrypoint is set to the stub's rst instruction F often, the original import information is removed
9 Runtime Packers Runtime Packers - Decompression When executing a runtime-packed binary, F rst, the stub is executed to decompress or decrypt the original code and data F second, the stub performs some tasks normally carried out by the PE loader, such as import resolution F nally, the stub transfers control to the original code, for example by jumping to the so-called Original Entry Point (OEP)
10 Runtime Packers Analysing runtime-packed executables Static analysis F code that is unpacked at runtime is typically not visible to static analysis methods F static analysis of the unpacking stub is sometimes hampered by anti-disassembly techniques Dynamic analysis F some runtime-packers employ anti-debugging techniques to hamper dynamic anlysis
11 Runtime Packers Weaknesses of typical runtime packers F CPUs can only execute \plain text" code F that code is \generated" at runtime by the unpacking stub and is at some point visible in memory F typical approach: monitor execution of the unpacking stub and dump process memory whenever new code is being executed F several projects deal with automated unpacking, but tools or source code are rarely released to the public.
12 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing
13 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing Bochs Pandora's Bochs is based on Bochs 2 F FOSS PC Emulator F written in C++ F built-in debugger F supports instrumentation 2
14 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing Pandora's Bochs Pandora's Bochs originally designed as an automatic unpacker. Challenges: F unobtrusiveness F awareness of guest-os semantics F OEP detection F termination F reconstruction of valid PE les
15 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing Bochs can instrument certain events, for example F modication of the CR3 (Page Directory Base) register F memory accesses (writes) F execution of branch instructions! ideal for monitoring the unpacking process
16 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing Boch's Facilities Bochs has many macros with inscrutable names. One might even go as far as to say that Bochs is macro infested. - Bochs Developers Guide
17 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing Bochs's Facilities Implemented as a set of macros that are used throughout the emulator source code, for example: F BX_INSTR_TLB_CNTRL(cpu_id, what, new_cr3) F BX_INSTR_CNEAR_BRANCH_TAKEN(cpu_id, new_eip) BX_INSTR_CNEAR_BRANCH_NOT_TAKEN(cpu_id) BX_INSTR_UCNEAR_BRANCH(cpu_id, what, new_eip) BX_INSTR_FAR_BRANCH(cpu_id, what, new_cs, new_eip) F BX_INSTR_LIN_ACCESS(cpu_id, lin, phy, len, rw)
18 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing I prefer Python to C++, therefore wrote a Python interface: F Bochs is linked against the Python interpreter library F Bochs provides its own \module" that allows anything running within the Python interpreter to query emulator state (for example memory, registers) F at emulation startup, a module written in Python is imported F instrumentation macros essentially call a set of functions exported by the Python module
19 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing Instrument at two dierent levels of granularity: F coarse-grained instrumentation: whenever the CR3 register is modied, determine whether the current process is of interest. Turn ne-grained instrumentation on or o accordingly. F ne-grained instrumentation: if the current process is monitored, F record memory writes F monitor branches! check whether the branch target is modied memory All processes and their corresponding PE images are logged to a database. So are (optionally) branches and writes.
20 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing Identifying Processes on x86 F Modern operating systems provide each process with its own 4-GB virtual address space F x86 memory management unit uses page directories and page tables (\two-level paging") to translate virtual to physical memory addresses F page directory base register (CR3) contains physical address of active page directory! active page directory identies active virtual address space! every process identied by unique CR3 value
21 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing Figure: Paging on the x86 architecture
22 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing Figure: Segmentation on the x86 architecture
23 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing At fs:0 (segment descriptor 0x30) in kernel-mode: KPCR 0x000 0x01c 0x020 0x120 KPRCB 0x000 0x002 0x004 0x008 0x00c NtTib SelfPcr Prcb... PrcbData MinorVersion MajorVersion CurrentThread NextThread IdleThread... ETHREAD EPROCESS 0x000 Tcb 0x000 Pcb KTHREAD 0x000 0x010 0x018 0x034 KAPC_STATE 0x000 0x010 Header MutantListHead InitialStack... ApcState ApcListHead Process KPROCESS 0x000 0x010 0x018 0x020 0x06c 0x084 0x088 0x174 0x1b0 Header ProfileListHead DirectoryTableBase LdtDescriptor... ProcessLock... UniqueProcessId ActiveProcessLinks... ImageFileName... Peb... Figure: Identifying the current process in Windows (XP)
24 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing Figure: More information about the current process
25 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing Memory Dumps Whenever a branch targets memory that was previously written to by the same process, that memory region is dumped to a database F region to dump identied by VAD tree 3. F data structure in kernel space F contains information about a processes' virtual address space! stack, heap, memory-mapped les F need to continue execution, in case there is more to unpack! memory around the current branch target is marked clean 3 See Brendan Dolan-Gavitt. The VAD tree: A process-eye view of physical memory. Digital Investigation, Volume 4, Supplement 1:62{64, September 2007.
26 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing OEP Detection Branches to modied memory regions are OEP candidates Limitations: F only the rst branch to such a memory region F only branch targets within the original process image F last candidate is the most likely! when to stop monitoring?
27 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing Termination It is undecideable whether new code will be unpacked! when to stop unpacking? F Fixed timeout can guarantee termination F Before that timeout, track \innovation". A process shows innovation, if F there are many memory writes per unique branch target F new DLLs appear in the process image F modied memory is executed F an API function not called before is called F stop emulation after a congurable number of task switches where no monitored process showed innovation
28 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing Reconstructing a valid PE le from a memory image F copy original headers to the end of the le and zero-pad them F make \PE Signature Oset" point to the copied headers F set \Entry Point" to the detected OEP F set \File Alignment" to \Section Alignment" and correct all section headers F append new section header for a new section named.pandora that contains the copied headers F reconstruct Imports
29 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing Import Reconstruction Import Address Table (IAT): F on-disk: describes which library functions to resolve F normally lled by the PE loader with of addresses of library functions F in packed executables, typically lled by the unpacker stub Reconstruction: F nd all branches from within the process image to a DLL F disassemble the branch instruction! operands of indirect jumps are potentially within an IAT F inspect potential IAT, and try to resolve symbols! reconstruct IAT and corresponding headers
30 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing API Call Tracing API Call tracing yields information about a malware sample's behaviour F branch instructions are instrumented anyway! little overhead to check if branch target is an API function F need to know API function prototype to determine stack layout for API call arguments
31 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing GCC-XML 4 There is one open-source C++ parser, the C++ front-end to GCC, which is currently able to deal with the language in its entirety. The purpose of the GCC-XML extension is to generate an XML description of a C++ program from GCC's internal representation. Since XML is easy to parse, other development tools will be able to work with C++ programs without the burden of a complicated C++ parser. 4
32 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing GCC-XML Output <Function id="_9749" name="getprocaddress" returns="_9622" context="_1" location="f2:2610" file="f2" line="2610" extern="1" attributes="dllimport stdcall "> <Argument name="hmodule" type="_8702"... /> <Argument name="lpprocname" type="_6677"... /> </Function> <Typedef id="_6677" name="lpcstr" type="_2864"... /> <PointerType id="_2864" type="_294c" size="32" align="32"/> <CvQualifiedType id="_294c" type="_294" const="1"/> <Typedef id="_294" name="char" type="_293"... /> <FundamentalType id="_293" name="char" size="8" align="8"/>
33 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing pygccxml 5 to the rescue Using pygccxml, we can use GCC-XML's output from python, to F query functions by name F inspect function prototypes F determine the stack layout for function calls Current implementation F handles character strings and integers F doesn't know anything about input and output parameters F doesn't handle return values F has basic support for handling stolen bytes 5
34 Identifying and Monitoring Processes Termination Reconstruction API Call Tracing Stolen Bytes A method employed by some executable protectors. Basic idea: F copy rst N instructions of an API function to someplace else F append a jump to the (N+1)th instruction F modify import information to call the copied bytes Basic countermeasures: F if a branch target is not an exported symbol, use the one with the next-smallest address F disassemble instruction stream from there to the branch target F keep track of and adjust for instructions that modify ESP
35 Synthetic Samples Malware Samples
36 Synthetic Samples Malware Samples - Criteria F Unpacking Time F OEP detection F Does the unpacked code match the original code (.text section) F Could a valid and executable PE image be reconstructed
37 Synthetic Samples Malware Samples - Synthetic Samples F Generated by packing two dierent binaries, Notepad (68kB) und Wget (732kB) F 30 dierent runtime packers, using their default conguration F Only 20 packed Notepad samples would execute
38 Synthetic Samples Malware Samples - Synthetic Samples F hidden code could be extracted from almost all samples F OEP detected correctly for 80% of all samples F valid, executable PE images could be reconstructed for 58% of all samples F major obstacle to reconstruction: modication of the original code by a packer F unpacking times from several minutes to an hour or more! could be somewhat improved by logging less extensively
39 Synthetic Samples Malware Samples Malware Samples F 409 samples, collected over the course of one month by the RWTH Aachen Honeynet F 379 known malware (ClamAV), 239 runtime-packed(peid) F 361 started execution and 343 executed modied memory F average run time was 7 minutes and 21 seconds F Dr. Whatson started in 152 cases F analysis indicates most of them could be unpacked correctly F need to do more real-world testing
40
41 and Future Work F plain unpacking seems to work fairly well, appears to be largely immune to anti-debugging techniques F API call tracing not heavily tested F results so far look promising! future work: track return values, output parameters F major obstacle to reconstruction of valid PE images: F executable protectors that modify the original code F examples: stolen bytes, API call/entry point obfuscation! need better, interactive tools? F emulation speed is subpar, some compatibility issues! use dierent emulator/virtualizer?! prole and optimise instrumentation code
42 Additional Information F My Thesis is available at F Git repository: F mirrors the Bochs CVS repository F Pandora's Bochs commited into a branch pandoras bochs F moving target, used more as a version-controlled backup F clone from git://0x0badc0.de/home/repo/git/bochs F Gitweb at F Slides will be made available at
43 Questions?
44 Figure: Unpacking MEW11SE 1.2
45 Figure: Unpacking Neolite 2.0
46 Figure: Unpacking npack beta
47 Figure: Unpacking PESpin 1.304
48 Figure: Unpacking telock 0.98
49 Figure: Unpacking UPX 3.01
Peeking into Pandora s Bochs. Instrumenting a Full System Emulator to Analyse Malicious Software
Instrumenting a Full System Emulator to Analyse Malicious Software Lutz Böhne ([email protected]) RedTeam Pentesting GmbH http://www.redteam-pentesting.de April 9th 2010, Paris Hackito
Fine-grained covert debugging using hypervisors and analysis via visualization
Reverse Engineering by Crayon: Game Changing Hypervisor and Visualization Analysis Fine-grained covert debugging using hypervisors and analysis via visualization Daniel A. Quist Lorie M. Liebrock Offensive
TitanMist: Your First Step to Reversing Nirvana TitanMist. mist.reversinglabs.com
TitanMist: Your First Step to Reversing Nirvana TitanMist mist.reversinglabs.com Contents Introduction to TitanEngine.. 3 Introduction to TitanMist 4 Creating an unpacker for TitanMist.. 5 References and
Attacking Obfuscated Code with IDA Pro. Chris Eagle
Attacking Obfuscated Code with IDA Pro Chris Eagle Outline Introduction Operation Demos Summary 2 First Order Of Business MOVE UP AND IN! There is plenty of room up front I can't increase the font size
VICE Catch the hookers! (Plus new rootkit techniques) Jamie Butler Greg Hoglund
VICE Catch the hookers! (Plus new rootkit techniques) Jamie Butler Greg Hoglund Agenda Introduction to Rootkits Where to Hook VICE detection Direct Kernel Object Manipulation (DKOM) No hooking required!
FATKit: A Framework for the Extraction and Analysis of Digital Forensic Data from Volatile System Memory p.1/11
FATKit: A Framework for the Extraction and Analysis of Digital Forensic Data from Volatile System Memory DFRWS 2006: Work in Progress (WIP) Aug 16, 2006 AAron Walters 4TΦ Research Nick L. Petroni Jr. University
Chapter 14 Analyzing Network Traffic. Ed Crowley
Chapter 14 Analyzing Network Traffic Ed Crowley 10 Topics Finding Network Based Evidence Network Analysis Tools Ethereal Reassembling Sessions Using Wireshark Network Monitoring Intro Once full content
Automating Linux Malware Analysis Using Limon Sandbox Monnappa K A [email protected]
Automating Linux Malware Analysis Using Limon Sandbox Monnappa K A [email protected] A number of devices are running Linux due to its flexibility and open source nature. This has made Linux platform
One-byte Modification for Breaking Memory Forensic Analysis
One-byte Modification for Breaking Memory Forensic Analysis Takahiro Haruyama / Hiroshi Suzuki Internet Initiative Japan Inc. for submission Summary Memory Forensics Overview Memory Acquisition Memory
PE Explorer. Heaventools. Malware Code Analysis Made Easy
Heaventools PE Explorer Data Sheet Malware Code Analysis Made Easy Reverse engineers within the anti-virus, vulnerability research and forensics companies face the challenge of analysing a large number
Parasitics: The Next Generation. Vitaly Zaytsev Abhishek Karnik Joshua Phillips
Parasitics: The Next Generation. Vitaly Zaytsev Abhishek Karnik Joshua Phillips Agenda Overview W32/Xpaj analysis Overview of a virtual machine Software protection trends W32/Winemmem analysis W32/Induc
for Malware Analysis Daniel Quist Lorie Liebrock New Mexico Tech Los Alamos National Laboratory
Visualizing Compiled Executables for Malware Analysis Daniel Quist Lorie Liebrock New Mexico Tech Los Alamos National Laboratory Overview Explanation of Problem Overview of Reverse Engineering Process
Reverse Engineering by Crayon: Game Changing Hypervisor and Visualization Analysis
Reverse Engineering by Crayon: Game Changing Hypervisor and Visualization Analysis Game Changing Hypervisor Based Malware Analysis and Visualization Danny Quist Lorie Liebrock New Mexico Tech Computer
Dynamic analysis of malicious code
J Comput Virol (2006) 2:67 77 DOI 10.1007/s11416-006-0012-2 ORIGINAL PAPER Dynamic analysis of malicious code Ulrich Bayer Andreas Moser Christopher Kruegel Engin Kirda Received: 13 January 2006 / Accepted:
Sandy. The Malicious Exploit Analysis. http://exploit-analysis.com/ Static Analysis and Dynamic exploit analysis. Garage4Hackers
Sandy The Malicious Exploit Analysis. http://exploit-analysis.com/ Static Analysis and Dynamic exploit analysis About Me! I work as a Researcher for a Global Threat Research firm.! Spoke at the few security
File Disinfection Framework (FDF) Striking back at polymorphic viruses
File Disinfection Framework (FDF) Striking back at polymorphic viruses 1 CONTENTS Introduction 3 File Disinfection Framework (FDF) 4 Disinfection solution development today 5 Goals 6 Target audience 6
Hypervisor-Based, Hardware-Assisted System Monitoring
Horst Görtz Institute for IT-Security, Chair for System Security VMRay GmbH Hypervisor-Based, Hardware-Assisted System Monitoring VB2013 October 2-4, 2013 Berlin Carsten Willems, Ralf Hund, Thorsten Holz
Y R O. Memory Forensics: A Volatility Primer M E M. Mariano Graziano. Security Day - Lille1 University January 2015 - Lille, France
emory Forensics: A Volatility Primer ariano Graziano Security Day - Lille1 University January 2015 - Lille, France whoami Ph.D student at urecom (France) sc from Politecnico di Torino (Italy) ain topics:
Storm Worm & Botnet Analysis
Storm Worm & Botnet Analysis Jun Zhang Security Researcher, Websense Security Labs June 2008 Introduction This month, we caught a new Worm/Trojan sample on ours labs. This worm uses email and various phishing
Detecting Malware With Memory Forensics. Hal Pomeranz SANS Institute
Detecting Malware With Memory Forensics Hal Pomeranz SANS Institute Why Memory Forensics? Everything in the OS traverses RAM Processes and threads Malware (including rootkit technologies) Network sockets,
Q-CERT Workshop. Matthew Geiger [email protected]. 2007 Carnegie Mellon University
Memory Analysis Q-CERT Workshop Matthew Geiger [email protected] 2007 Carnegie Mellon University Outline Why live system forensics? Previous techniques Drawbacks and new thinking Approaches to memory acquisition
Binary Code Extraction and Interface Identification for Security Applications
Binary Code Extraction and Interface Identification for Security Applications Juan Caballero Noah M. Johnson Stephen McCamant Dawn Song UC Berkeley Carnegie Mellon University Abstract Binary code reuse
Dynamic Spyware Analysis
Dynamic Spyware Analysis Manuel Egele, Christopher Kruegel, Engin Kirda, Heng Yin, and Dawn Song Secure Systems Lab Technical University Vienna {pizzaman,chris,ek}@seclab.tuwien.ac.at Carnegie Mellon University
LASTLINE WHITEPAPER. In-Depth Analysis of Malware
LASTLINE WHITEPAPER In-Depth Analysis of Malware Abstract Malware analysis is the process of determining the purpose and functionality of a given malware sample (such as a virus, worm, or Trojan horse).
Android Packer. facing the challenges, building solutions. Rowland YU. Senior Threat Researcher Virus Bulletin 2014
Android Packer facing the challenges, building solutions Rowland YU Senior Threat Researcher Virus Bulletin 2014 1 What is Android Packer? Android packers are able to encrypt an original classes.dex file,
Detecting the One Percent: Advanced Targeted Malware Detection
Detecting the One Percent: Advanced Targeted Malware Detection Tomer Teller Check Point Software Technologies Session ID: SP02-T19 Session Classification: Intermediate Antivirus 20 th+ Anniversary The
CAS : A FRAMEWORK OF ONLINE DETECTING ADVANCE MALWARE FAMILIES FOR CLOUD-BASED SECURITY
CAS : A FRAMEWORK OF ONLINE DETECTING ADVANCE MALWARE FAMILIES FOR CLOUD-BASED SECURITY ABHILASH SREERAMANENI DEPARTMENT OF COMPUTER SCIENCE AND ENGINEERING SEOUL NATIONAL UNIVERSITY OF SCIENCE AND TECHNOLOGY
EVTXtract. Recovering EVTX Records from Unallocated Space PRESENTED BY: Willi Ballenthin OCT 6, 2013. Mandiant Corporation. All rights reserved.
EVTXtract Recovering EVTX Records from Unallocated Space PRESENTED BY: Willi Ballenthin OCT 6, 2013 What do we have here today? A technical presentation on a novel forensic technique for recovering past
Adi Hayon Tomer Teller
Adi Hayon Tomer Teller Why are we here? (one of many reasons) A malicious program: Allocates memory in a remote process (and write to it) Executes the code in that memory region Frees the code Memory dump
Obfuscation: know your enemy
Obfuscation: know your enemy Ninon EYROLLES [email protected] Serge GUELTON [email protected] Prelude Prelude Plan 1 Introduction What is obfuscation? 2 Control flow obfuscation 3 Data flow
Managing large sound databases using Mpeg7
Max Jacob 1 1 Institut de Recherche et Coordination Acoustique/Musique (IRCAM), place Igor Stravinsky 1, 75003, Paris, France Correspondence should be addressed to Max Jacob ([email protected]) ABSTRACT
The Value of Physical Memory for Incident Response
The Value of Physical Memory for Incident Response MCSI 3604 Fair Oaks Blvd Suite 250 Sacramento, CA 95864 www.mcsi.mantech.com 2003-2015 ManTech Cyber Solutions International, All Rights Reserved. Physical
How to Sandbox IIS Automatically without 0 False Positive and Negative
How to Sandbox IIS Automatically without 0 False Positive and Negative Professor Tzi-cker Chiueh Computer Science Department Stony Brook University [email protected] 2/8/06 Blackhat Federal 2006 1 Big
SAS Drug Development Release Notes 35DRG07
SAS Drug Development Release Notes 35DRG07 SAS Drug Development (SDD) 3.5 is validated to work with/on the following technologies: MS Windows: Windows 7 and Windows XP Mac OS X: Snow Leopard (10.6) Internet
Binary Translation for Fun and Profit
Binary Translation for Fun and Profit Andy Goldstein OpenVMS Engineering [email protected] 2005 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without
From Georgia, with Love Win32/Georbot. Is someone trying to spy on Georgians?
From Georgia, with Love Win32/Georbot Is someone trying to spy on Georgians? At the beginning of the year, a curious piece of malware came to our attention. An analyst in our virus laboratory noticed that
Advanced ANDROID & ios Hands-on Exploitation
Advanced ANDROID & ios Hands-on Exploitation By Attify Trainers Aditya Gupta Prerequisite The participants are expected to have a basic knowledge of Mobile Operating Systems. Knowledge of programming languages
How To Port A Program To Dynamic C (C) (C-Based) (Program) (For A Non Portable Program) (Un Portable) (Permanent) (Non Portable) C-Based (Programs) (Powerpoint)
TN203 Porting a Program to Dynamic C Introduction Dynamic C has a number of improvements and differences compared to many other C compiler systems. This application note gives instructions and suggestions
Interpreters and virtual machines. Interpreters. Interpreters. Why interpreters? Tree-based interpreters. Text-based interpreters
Interpreters and virtual machines Michel Schinz 2007 03 23 Interpreters Interpreters Why interpreters? An interpreter is a program that executes another program, represented as some kind of data-structure.
Hotpatching and the Rise of Third-Party Patches
Hotpatching and the Rise of Third-Party Patches Alexander Sotirov [email protected] BlackHat USA 2006 Overview In the next one hour, we will cover: Third-party security patches _ recent developments
This is DEEPerent: Tracking App behaviors with (Nothing changed) phone for Evasive android malware
This is DEEPerent: Tracking App behaviors with (Nothing changed) phone for Evasive android malware What I will talk about.. Challenges we faced on android malware analysis: Fast code analysis (Reversing)
Bug hunting. Vulnerability finding methods in Windows 32 environments compared. FX of Phenoelit
Bug hunting Vulnerability finding methods in Windows 32 environments compared FX of Phenoelit The goal: 0day What we are looking for: Handles network side input Runs on a remote system Is complex enough
Harnessing Intelligence from Malware Repositories
Harnessing Intelligence from Malware Repositories Arun Lakhotia and Vivek Notani Software Research Lab University of Louisiana at Lafayette [email protected], [email protected] 7/22/2015 (C) 2015
API Monitoring System for Defeating Worms and Exploits in MS-Windows System
API Monitoring System for Defeating Worms and Exploits in MS-Windows System Hung-Min Sun, Yue-Hsun Lin, and Ming-Fung Wu Department of Computer Science National Tsing-Hua University Hsinchu, Taiwan 30013
CSCI E 98: Managed Environments for the Execution of Programs
CSCI E 98: Managed Environments for the Execution of Programs Draft Syllabus Instructor Phil McGachey, PhD Class Time: Mondays beginning Sept. 8, 5:30-7:30 pm Location: 1 Story Street, Room 304. Office
Operating Systems. 05. Threads. Paul Krzyzanowski. Rutgers University. Spring 2015
Operating Systems 05. Threads Paul Krzyzanowski Rutgers University Spring 2015 February 9, 2015 2014-2015 Paul Krzyzanowski 1 Thread of execution Single sequence of instructions Pointed to by the program
CS 377: Operating Systems. Outline. A review of what you ve learned, and how it applies to a real operating system. Lecture 25 - Linux Case Study
CS 377: Operating Systems Lecture 25 - Linux Case Study Guest Lecturer: Tim Wood Outline Linux History Design Principles System Overview Process Scheduling Memory Management File Systems A review of what
Dongwoo Kim : Hyeon-jeong Lee s Husband
2/ 32 Who we are Dongwoo Kim : Hyeon-jeong Lee s Husband Ph.D. Candidate at Chungnam National University in South Korea Majoring in Computer Communications & Security Interested in mobile hacking, digital
C Compiler Targeting the Java Virtual Machine
C Compiler Targeting the Java Virtual Machine Jack Pien Senior Honors Thesis (Advisor: Javed A. Aslam) Dartmouth College Computer Science Technical Report PCS-TR98-334 May 30, 1998 Abstract One of the
Lab 2 : Basic File Server. Introduction
Lab 2 : Basic File Server Introduction In this lab, you will start your file system implementation by getting the following FUSE operations to work: CREATE/MKNOD, LOOKUP, and READDIR SETATTR, WRITE and
Networking Best Practices Guide. Version 6.5
Networking Best Practices Guide Version 6.5 Summer 2010 Copyright: 2010, CCH, a Wolters Kluwer business. All rights reserved. Material in this publication may not be reproduced or transmitted in any form
KITES TECHNOLOGY COURSE MODULE (C, C++, DS)
KITES TECHNOLOGY 360 Degree Solution www.kitestechnology.com/academy.php [email protected] [email protected] Contact: - 8961334776 9433759247 9830639522.NET JAVA WEB DESIGN PHP SQL, PL/SQL
A Simpler Way of Finding 0day
A Simpler Way of Finding 0day Robert Graham David Maynor Errata Security Abstract: Instead of reverse engineering vulnerabilities to find 0day, hackers can now reverse security products. More and more
Migration of Process Credentials
C H A P T E R - 5 Migration of Process Credentials 5.1 Introduction 5.2 The Process Identifier 5.3 The Mechanism 5.4 Concluding Remarks 100 CHAPTER 5 Migration of Process Credentials 5.1 Introduction Every
Melde- und Analysestelle Informationssicherung MELANI Torpig/Mebroot Reverse Code Engineering (RCE)
Melde- und Analysestelle Informationssicherung MELANI Torpig/Mebroot Reverse Code Engineering (RCE) Andreas Greulich, MELANI Swiss Cyber Storm, 18 April 2009 Agenda Part 1: Introduction (~5 ) Infection
Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72. User Guide
Richmond SupportDesk Web Reports Module For Richmond SupportDesk v6.72 User Guide Contents 1 Introduction... 4 2 Requirements... 5 3 Important Note for Customers Upgrading... 5 4 Installing the Web Reports
Python, C++ and SWIG
Robin Dunn Software Craftsman O Reilly Open Source Convention July 21 25, 2008 Slides available at http://wxpython.org/oscon2008/ Python & C++ Comparisons Each is a general purpose programming language,
Automatic Logging of Operating System Effects to Guide Application-Level Architecture Simulation
Automatic Logging of Operating System Effects to Guide Application-Level Architecture Simulation Satish Narayanasamy, Cristiano Pereira, Harish Patil, Robert Cohn, and Brad Calder Computer Science and
SYLLABUS MOBILE APPLICATION SECURITY AND PENETRATION TESTING. MASPT at a glance: v1.0 (28/01/2014) 10 highly practical modules
Must have skills in any penetration tester's arsenal. MASPT at a glance: 10 highly practical modules 4 hours of video material 1200+ interactive slides 20 Applications to practice with Leads to emapt certification
Memory Forensics for QQ from a Live System
JOURNAL OF COMPUTERS, VOL. 5, NO. 4, APRIL 2010 541 Memory Forensics for QQ from a Live System Yuhang Gao, Tianjie Cao School of Computer, China University of Mining and Technology Sanhuannanlu, Xuzhou,
Bypassing Memory Protections: The Future of Exploitation
Bypassing Memory Protections: The Future of Exploitation Alexander Sotirov [email protected] About me Exploit development since 1999 Research into reliable exploitation techniques: Heap Feng Shui in JavaScript
File Server and Streams
This Lecture Examines The file system server Streams and stores 2 The File system server Known simply as the file server Handles all aspects of managing files and directories Provides a consistent interface
CopyKittens Attack Group
CopyKittens Attack Group Version 1.0 23/11/2015 All Rights Reserved To Minerva Labs LTD and ClearSky Cyber Security, 2015 Contents Executive Summary... 3 The Group Attack Cycle... 4 Step One Spear Phishing...
Efficient Program Exploration by Input Fuzzing
Efficient Program Exploration by Input Fuzzing towards a new approach in malcious code detection Guillaume Bonfante Jean-Yves Marion Ta Thanh Dinh Université de Lorraine CNRS - INRIA Nancy First Botnet
Advantages of Amanda over Proprietary Backup
Advantages of Amanda over Proprietary Backup Gregory Grant Revision 02 Abstract This white paper discusses how Amanda compares to other backup products. It will help you understand some key Amanda differences,
Gigabit Ethernet Packet Capture. User s Guide
Gigabit Ethernet Packet Capture User s Guide Copyrights Copyright 2008 CACE Technologies, Inc. All rights reserved. This document may not, in whole or part, be: copied; photocopied; reproduced; translated;
Helping you avoid stack overflow crashes!
Helping you avoid stack overflow crashes! One of the toughest (and unfortunately common) problems in embedded systems is stack overflows and the collateral corruption that it can cause. As a result, we
Table Of Contents. iii
PASSOLO Handbook Table Of Contents General... 1 Content Overview... 1 Typographic Conventions... 2 First Steps... 3 First steps... 3 The Welcome dialog... 3 User login... 4 PASSOLO Projects... 5 Overview...
Pentesting ios Apps Runtime Analysis and Manipulation. Andreas Kurtz
Pentesting ios Apps Runtime Analysis and Manipulation Andreas Kurtz About PhD candidate at the Security Research Group, Department of Computer Science, University of Erlangen-Nuremberg Security of mobile
CIT 480: Securing Computer Systems. Malware
CIT 480: Securing Computer Systems Malware Topics 1. Anti-Virus Software 2. Virus Types 3. Infection Methods 4. Rootkits 5. Malware Analysis 6. Protective Mechanisms 7. Malware Factories 8. Botnets Malware
The HTTP Plug-in. Table of contents
Table of contents 1 What's it for?... 2 2 Controlling the HTTPPlugin... 2 2.1 Levels of Control... 2 2.2 Importing the HTTPPluginControl...3 2.3 Setting HTTPClient Authorization Module... 3 2.4 Setting
Red Hat Linux Internals
Red Hat Linux Internals Learn how the Linux kernel functions and start developing modules. Red Hat Linux internals teaches you all the fundamental requirements necessary to understand and start developing
Acronis Backup & Recovery: Events in Application Event Log of Windows http://kb.acronis.com/content/38327
Acronis Backup & Recovery: Events in Application Event Log of Windows http://kb.acronis.com/content/38327 Mod ule_i D Error _Cod e Error Description 1 1 PROCESSOR_NULLREF_ERROR 1 100 ERROR_PARSE_PAIR Failed
Everything is Terrible
Everything is Terrible A deep dive into provisioning and code signing Hello and welcome to Everything is Terrible. This is a deep dive talk into the processes behind provisioning and code signing on Apple
Loophole+ with Ethical Hacking and Penetration Testing
Loophole+ with Ethical Hacking and Penetration Testing Duration Lecture and Demonstration: 15 Hours Security Challenge: 01 Hours Introduction Security can't be guaranteed. As Clint Eastwood once said,
Replication on Virtual Machines
Replication on Virtual Machines Siggi Cherem CS 717 November 23rd, 2004 Outline 1 Introduction The Java Virtual Machine 2 Napper, Alvisi, Vin - DSN 2003 Introduction JVM as state machine Addressing non-determinism
Chapter 6, The Operating System Machine Level
Chapter 6, The Operating System Machine Level 6.1 Virtual Memory 6.2 Virtual I/O Instructions 6.3 Virtual Instructions For Parallel Processing 6.4 Example Operating Systems 6.5 Summary Virtual Memory General
File Systems Management and Examples
File Systems Management and Examples Today! Efficiency, performance, recovery! Examples Next! Distributed systems Disk space management! Once decided to store a file as sequence of blocks What s the size
SIPAC. Signals and Data Identification, Processing, Analysis, and Classification
SIPAC Signals and Data Identification, Processing, Analysis, and Classification Framework for Mass Data Processing with Modules for Data Storage, Production and Configuration SIPAC key features SIPAC is
Securing Secure Browsers
Securing Secure Browsers SESSION ID: TRM-T11 Prashant Kumar Verma Sr. Consultant & Head (Security Testing) Paladion Networks @prashantverma21 Agenda Browser Threats Secure Browsers to address threats Secure
Hide and seek - how targeted attacks hide behind clean applications Szappanos Gábor
Hide and seek - how targeted attacks hide behind clean applications Szappanos Gábor Principal Malware Researcher 1 Honourable mentions: 2010. Stuxnet digitally signed drivers: stolen certificate June 2012.
Component visualization methods for large legacy software in C/C++
Annales Mathematicae et Informaticae 44 (2015) pp. 23 33 http://ami.ektf.hu Component visualization methods for large legacy software in C/C++ Máté Cserép a, Dániel Krupp b a Eötvös Loránd University [email protected]
C++ Programming Language
C++ Programming Language Lecturer: Yuri Nefedov 7th and 8th semesters Lectures: 34 hours (7th semester); 32 hours (8th semester). Seminars: 34 hours (7th semester); 32 hours (8th semester). Course abstract
Run-Time Deep Virtual Machine Introspection & Its Applications
Run-Time Deep Virtual Machine Introspection & Its Applications Jennia Hizver Computer Science Department Stony Brook University, NY, USA Tzi-cker Chiueh Cloud Computing Center Industrial Technology Research
Dynamic Spyware Analysis
Dynamic Spyware Analysis Manuel Egele, Christopher Kruegel, Engin Kirda Secure Systems Lab Technical University Vienna {pizzaman,chris,ek}@seclab.tuwien.ac.at Heng Yin Carnegie Mellon University and College
Chapter 2: Remote Procedure Call (RPC)
Chapter 2: Remote Procedure Call (RPC) Gustavo Alonso Computer Science Department Swiss Federal Institute of Technology (ETHZ) [email protected] http://www.iks.inf.ethz.ch/ Contents - Chapter 2 - RPC
Distributed Version Control with Mercurial and git
OpenStax-CNX module: m37404 1 Distributed Version Control with Mercurial and git Hannes Hirzel This work is produced by OpenStax-CNX and licensed under the Creative Commons Attribution License 3.0 Abstract
Application Note C++ Debugging
Application Note C++ Debugging TRACE32 Online Help TRACE32 Directory TRACE32 Index TRACE32 Documents... High-Level Language Debugging... Application Note C++ Debugging... 1 Sample Code used by This Application
FORBIDDEN - Ethical Hacking Workshop Duration
Workshop Course Module FORBIDDEN - Ethical Hacking Workshop Duration Lecture and Demonstration : 15 Hours Security Challenge : 01 Hours Introduction Security can't be guaranteed. As Clint Eastwood once
A Day in the Life of a Cyber Tool Developer
A Day in the Life of a Cyber Tool Developer by Jonathan Tomczak [email protected] Jonathan Tomczak ( Front Man ) Software Engineer w/ over 7 years experience working in software and web development Dave
Glossary of Object Oriented Terms
Appendix E Glossary of Object Oriented Terms abstract class: A class primarily intended to define an instance, but can not be instantiated without additional methods. abstract data type: An abstraction
Spyware Doctor Enterprise Technical Data Sheet
Spyware Doctor Enterprise Technical Data Sheet The Best of Breed Anti-Spyware Solution for Businesses Spyware Doctor Enterprise builds on the strength of the industry-leading and multi award-winning Spyware
Advanced Malware Cleaning Techniques for the IT Professional
Advanced Malware Cleaning Techniques for the IT Professional Mark Russinovich Microsoft Technical Fellow This section of the Microsoft Security Intelligence Report provides information and guidance for
Reverse Engineering and Computer Security
Reverse Engineering and Computer Security Alexander Sotirov [email protected] Introduction Security researcher at Determina, working on our LiveShield product Responsible for vulnerability analysis and
