Linux Memory Analysis Workshop Session 1 Andrew Case
|
|
|
- Merry Davidson
- 9 years ago
- Views:
Transcription
1 Linux Memory Analysis Workshop Session 1 Andrew Case
2 Who Am I? Security Analyst at Digital Forensics Solutions Also perform wide ranging forensics investigations Volatility Developer Former Blackhat, SOURCE, and DFRWS speaker Computer Science degree from UNO GIAC Certified Forensics Analyst (GCFA) 2
3 Format of this Workshop I will be presenting the Linux kernel memory analysis capabilities of Volatility Along the way we will be seeing numerous examples of Linux kernel source code as well as Volatility s plugins source code Following along with me while I use Volatility to recover data will get you the most out of this workshop 3
4 Setting up Your Environment 4
5 Agenda for Today s Workshop 1. Recovering Vital Runtime Information 2. Investigating Live CDs (Memory Analysis) 3. Detecting Kernel Rootkits 5
6 Agenda for This Hour Memory Forensics Introduction Recovering Runtime Information Will discuss kernel internals necessary to recover processes, memory maps, loaded modules, etc Will discuss how these are useful/relevant to forensics & IR We will be recovering data with Volatility as we go Q&A / Comments 6
7 Memory Forensics Introduction 7
8 Introduction Memory analysis is the process of taking a memory capture (a copy of RAM) and producing higher-level objects that are useful for an investigation A memory capture has the entire state of the operating system as well as running applications Including all the related data structures, variables, etc 8
9 The Goal of Memory Analysis The higher level objects we are interested in are in-memory representations of C structures, custom data structures, and other variables used by the operating system With these we can recover processes listings, filesystem information, networking data, etc This is what we will be talking about throughout the workshop 9
10 Information Needed for Analysis The ability to: 1. Locate needed data structures in memory 2. Model those data structures offline 3. Report their contents 10
11 Locating Data Structures To locate static data structures, we use the System.map file Contains the name and address of every static data structure used in the kernel Created in the kernel build process by using nm on the compiled vmlinux file 11
12 Model Data Structures The parts of the Linux kernel we care about are written in C All data structures boil down to C structures These have a very simple in-memory representation (next slide) 12
13 C Structures in Memory Source Code: struct blah { int i; char c; short s; }; struct blah *b = malloc( ); In Memory: Lets say we have an instance of b at 0x0 Then: b->i goes from 0x0 to 0x4 b->c goes from 0x4 to 0x5 b->s goes from 0x5 to 0x7 13
14 Modeling Structures During analysis we want to automatically model each C structure of interest To do this, we use Volatility s dwarfparse.py: Builds a profile of C structures along with members, types, and byte offsets Records offsets of global variables Example structure definition 'ClassObject': [ 0xa0, { 'obj': [0x0, ['Object']], Class name and size member name, offset, and type 14
15 Introducing Volatility 15
16 Volatility Most popular memory analysis framework Written in Python Open Source Supports Windows {XP, Vista, 7, 2003, 2008} Support Linux to 2.6.3x on Intel and ARM Allows for analysis plugins to be easily written Used daily in real forensics investigations Will be the framework used in this workshop 16
17 Volatility Object Manager Once we have a model of a kernel s data structures (profiles) we can then just rely on Volatility Its object manager takes care of parsing the struct definitions, including types, and then providing them as requested Example on next slide 17
18 Example Plugin Code Accessing a structure is as simple as knowing the type and offset intval = obj.object( int, offset=intoffset,..) Volatility code to access descriptor of an Object : o = obj.object("object", offset=objectaddress,..) c = obj.object("classobject", offset=o.clazz, ) desc = linux_common.get_string(c.descriptor) 18
19 Volatility Address Spaces Address spaces are used to translate virtual addresses to offsets within a memory capture Same process used to translate to physical addresses on a running OS Plugin developers simply need to pass the given address space to functions that need it Manual change only required to access userland (will see an example in a bit) 19
20 Current Address Spaces x86 / x64 Arm (Android) Firewire Windows Hibernation Files Crash Dumps EWF Files 20
21 Recovering Runtime Information 21
22 Runtime Information This rest of this session is focused on orderly recovery of data that was active at the time of the memory capture We will be discussing how to find key pieces of information and then use Volatility to recover them 22
23 Information to be Recovered Processes Memory Maps Open Files Network Connections Network Data Loaded Kernel Modules 23
24 Recovering Process Information Each process is represented by a task_struct Once a task_struct is located, all information about a process can be quickly retrieved Possible to do it through other methods, but much more convoluted 24
25 Locating Processes Method 1 init_task is the symbol for the task_struct of swapper, the PID 0 process Statically initialized, will be useful in a few slides task_struct->tasks holds a linked list of all active processes NOT threads! (more on this later) Simply walking the list gives us a process listing 25
26 Locating Processes Method 2 pid_hash 26
27 Wanted Per-Process Information Name and Command Line Arguments UID/GID/PID Starting/Running Time Parent & Child Processes Memory Maps & Executable File Open Files Networking Information 27
28 Needed task_struct Members Name char comm[task_comm_len]; // 16 Command line arguments in later slides User ID / Group ID Before uid and gid Since struct cred *cred; cred->uid and cred->gid 28
29 task_struct Members Cont. Parent Process struct task_struct *real_parent; Child processes struct list_head children; /* list of my children */ Process times FIX THIS - utime, stime, start_time, real_starttm 29
30 Option 1: Recovery with Volatility In: volatility/plugins/linux_task_list_ps.py Walks the task_struct->tasks list Option 2: In: volatility/plugins/linux_task_list_psaux.py Reads command line invocation from userland Will cover algorithm after discussing memory management structures 30
31 Process Gathering Demo/Hands On Will be using: linux_task_list_ps linux_task_list_psaux linux_pid_cache 31
32 Process Memory Maps Viewed on a running system within /proc/<pid>/maps Lists all mappings within a process including: Mapped file, if any Address range Permissions 32
33 Accessing the Mappings Each mapping is stored as a vm_area_struct Stored in two places: task_struct->mm->mm_rb Red black tree of mappings task_struct->mm->mmap List of mappings ordered by starting address 33
34 Needed Members of vm_area_struct unsigned long vm_start, vm_end The starting and ending addresses of the mapping vm_area_struct vm_next The next vma for the process (linked list from mm->mmap) struct file vm_file If not NULL, points to the mapped file (shared library, open file, main executable, etc) 34
35 Recovery with Volatility Listing mappings implemented in volatility/plugins/linux_proc_maps.py Analyzing specific mappings implemented in volatility/plugins/linux_dump_maps.py Can specify by PID or address 35
36 # switch pgd Using ->mm to get **argv tmp_dtb = self.addr_space.vtop(task.mm.pgd) # create new address space proc_as = self.addr_space. class (self.addr_space.base, self.addr_space.get_config(), dtb = tmp_dtb) # read in command line argument buffer argv = proc_as.read(task.mm.arg_start, task.mm.arg_end - task.mm.arg_start) 36
37 Gathering Open Files Want to emulate /proc/<pid>/fd task_struct->files->fdt->fd is array of file structures Each array index is the file descriptor number If an index is non-null then it holds an open file Use max_fds of the fdt table to determine array size 37
38 Information Per-File Path information stored in the f_dentry and f_vfsmnt members To get full path, need to emulate d_path function Inode information stored in f_dentry structure Contains size, owner, MAC times, and other metadata Recovering file contents in-memory requires use of the f_mapping member Come back for session 2! 38
39 Memory Maps and Open Files Demo Memory Maps Listing process mappings Acquiring the stack and heap from interesting processes Open Files Lists open files with their file descriptor number 39
40 Networking Information The kernel contains a wealth of useful information related to network activity This info is immensely helpful in a number of forensics and incident response scenarios 40
41 Netstat Plugin Used to emulate the netstat command This information is found on a running machine found in these /proc/net/ files: tcp/tcp6 udp/udp6 unix 41
42 Volatility s linux_netstat.py openfiles = lof.linux_list_open_files.calculate(self) # for every open file for (task, filp, _i, _addr_space) in openfiles: d = filp.get_dentry() # the files dentry if filp.f_op == self.smap["socket_file_ops"] or filp.d.d_op == self.smap["sockfs_dentry_operations"]: # it is a socket, can get the protocol information iaddr = d.d_inode skt = self.socket_i(iaddr) inet_sock = obj.object("inet_sock", offset = skt.sk, ) 42
43 Emulates arp -a ARP Cache The ARP cache stores recently discovered IP and MAC address pairs It is what facilities ARP poisoning Recovery of this cache provides information on other machines the target machine was communicating with 43
44 Recovering the ARP Cache Implemented in linux_arp.py This code walks the neigh_tables and their respective hash_buckets to recover neighbor structures These contain the device name, mac address, and corresponding IP address for each entry 44
45 Emulates route -n Routing Table The routing table stores routing information for every known gateway device and its corresponding subnet The linux_route plugin recovers this information 45
46 Emulates route C Routing Cache This cache stores recently determined source IP and gateway stores A great resource to determine recent network activity on a computer 46
47 Network Recovery Demo/Hands On Many plugins! 47
48 Dmesg The simplest plugin in all of Volatility Simply locates and prints the kernel debug buffer 48
49 Dmesg Plugin Code ptr_addr = self.smap["log_buf"] # the buffer log_buf_addr = obj.object("long", offset = ptr_addr, vm = self.addr_space) # its length log_buf_len = obj.object("int", self.smap["log_buf_len"], vm = self.addr_space) # read in the buffer yield linux_common.get_string(log_buf_addr, self.addr_space, log_buf_len) 49
50 Loaded Kernel Modules Want to emulate the lsmod command Each module is represented by a struct module Each active module is kept in the modules list We can simply walk the list to recover all needed information 50
51 Information Per Module char name[module_name_len] The name of the module void module_init.text +.data of init functions void module_core.text +.data of core functions symtab/strtab Symbol and string tables struct list_head list Entry within the list of loaded modules 51
52 Recovery with Volatility In: volatility/plugins/linux_lsmod.py Volatility code: mods_addr = self.smap["modules"] modules = obj.object("list_head",offset=mods_addr,) for module in linux_common.walk_list_head("module", "list", modules, ): yield module 52
53 Questions/Comments? Please fill out the feedback forms! 53
54 Linux Memory Analysis Workshop Session 2 Andrew Case
55 Who Am I? Security Analyst at Digital Forensics Solutions Also perform wide ranging forensics investigations Volatility Developer Former Blackhat, SOURCE, and DFRWS speaker Computer Science degree from UNO GIAC Certified Forensics Analyst (GCFA) 55
56 Format of this Workshop I will be presenting the Linux kernel memory analysis capabilities of Volatility Along the way we will be seeing numerous examples of Linux kernel source code as well as Volatility s plugins source code Following along with me while I use Volatility to recover data will get you the most out of this workshop 56
57 Setting up Your Environment 57
58 Agenda for Today s Workshop 1. Recovering Vital Runtime Information 2. Investigating Live CDs Through Memory Analysis 3. Detecting Kernel Rootkits 58
59 Agenda for This Hour Discuss Live CDs and how they disrupt the normal forensics process Present research that enables traditional investigative techniques against live CDs We will be recovering files and data as we go along Q&A / Comments 59
60 Live CD Introduction 60
61 Normal Forensics Process Obtain Hard Drive Acquire Disk Image Verify Image Process Image Perform Investigation 61
62 Traditional Analysis Techniques Timelining of activity based on MAC times Hashing of files Indexing and searching of files and unallocated space Recovery of deleted files Application specific analysis Web activity from cache, history, and cookies activity from local stores (PST, Mbox, ) 62
63 Problem of Live CDs Live CDs allow users to run an operating system and all applications entirely in RAM This makes traditional digital forensics (examination of disk images) impossible All the previously listed analysis techniques cannot be performed 63
64 The Problem Illustrated Obtain Hard Drive Acquire Disk Image Verify Image Process Image Perform Investigation 64
65 No Disks or Files, Now What? All we can obtain is a memory capture With this, an investigator is left with very limited and crude analysis techniques Can still search, but can t map to files or dates No context, hard to present coherently File carving becomes useless Next slide Good luck in court 65
66 People Have Caught On The Amnesic Incognito Live System (TAILS) [1] No trace is left on local storage devices unless explicitly asked. All outgoing connections to the Internet are forced to go through the Tor network Backtrack [2] ability to perform assessments in a purely native environment dedicated to hacking. 66
67 What It Really Means Investigators without deep kernel internals knowledge and programming skill are basically hopeless It is well known that the use of live CDs is going to defeat most investigations Main motivation for this work Plenty anecdotal evidence of this can be found through Google searches 67
68 What is the Solution? Memory Analysis! It is the only method we have available This Analysis gives us: The complete file system structure including file contents and metadata Deleted Files (Maybe) Userland process memory and file system information 68
69 Recovering the Filesystem 69
70 Goal 1: Recovering the File System Steps needed to achieve this goal: 1. Understand the in-memory filesystem 2. Develop an algorithm that can enumerate directory and files 3. Recover metadata to enable timelining and other investigative techniques 70
71 The In-Memory Filesystem AUFS (AnotherUnionFS) Used by TAILS, Backtrack, Ubuntu installer, and a number of other Live CDs Not included in the vanilla kernel, loaded as an external module 71
72 Stackable filesystem AUFS Internals Presents a multilayer filesystem as a single one to users This allows for files created after system boot to be transparently merged on top of read only CD Each layer is termed a branch In the live CD case, one branch for the CD, and one for all other files made or changed since boot 72
73 Look on running system? 73
74 AUFS Userland View of TAILS # cat /proc/mounts aufs / aufs rw,relatime,si=4ef94245,noxino /dev/loop0 /filesystem.squashfs squashfs tmpfs /live/cow tmpfs tmpfs /live tmpfs rw,relatime # cat /sys/fs/aufs/si_4ef94245/br0 /live/cow=rw # cat /sys/fs/aufs/si_4ef94245/br1 /filesystem.squashfs=rr Mount points relevant to AUFS The mount point of each AUFS branch 74
75 Forensics Approach No real need to copy files from the read-only branch Just image the CD On the other hand, the writable branch contains every file that was created or modified since boot Including metadata No deleted ones though, more on that later 75
76 Linux Internals 76
77 Needed Structures struct dentry Represents a directory entry (directory, file, ) Contains the name of the directory entry and a pointer to its inode structure struct inode FS generic, in-memory representation of a disk inode Contains address_space structure that links an inode to its file s pages struct address_space Links physical pages together into something useful Holds the search tree of pages for a file 77
78 Page Cache Linux Internals Overview II Used to store struct page structures that correspond to physical pages address_space structures contain linkage into the page cache that allows for ordered enumeration of all physical pages pertaining to an inode Tmpfs In-memory filesystem Used by TAILS to hold the writable branch 78
79 Enumerating Directories Once we can enumerate directories, we can recover the whole filesystem Not as simple as recursively walking the children of the file system s root directory AUFS creates hidden dentrys and inodes in order to mask branches of the stacked filesystem Need to carefully interact between AUFS and tmpfs structures 79
80 Directory Enumeration Algorithm 1) Walk the super blocks list until the aufs filesystem is found This contains a pointer to the root dentry 2) For each child dentry, test if it represents a directory If the child is a directory: Obtain the hidden directory entry (next slide) Record metadata and recurse into directory If the child is a regular file: Obtain the hidden inode and record metadata 80
81 Obtaining a Hidden Directory Each kernel dentry stores a pointer to an au_dinfo structure inside its d_fsdata member The di_hdentry member of au_dinfo is an array of au_hdentry structures that embed regular kernel dentrys struct dentry { d_inode d_name d_subdirs d_fsdata } struct au_dinfo { au_hdentry } Branch Dentry 0 Pointer 1 Pointer 81
82 Obtaining Metadata All useful metadata such as MAC times, file size, file owner, etc is contained in the hidden inode This information is used to fill the stat command and istat functionality of the Sleuthkit Timelining becomes possible again 82
83 Obtaining a Hidden Inode Each aufs controlled inode gets embedded in an aufs_icntnr This structure also embeds an array of au_hinode structures which can be indexed by branch number to find the hidden inode of an exposed inode struct aufs_icntnr { iinfo inode } struct au_iinfo { ii_hinode } Branch struct inode 0 Pointer 1 Pointer 83
84 Goal 2: Recovering File Contents The size of a file is kept in its inode s i_size member An inode s page_tree member is the root of the radix tree of its physical pages In order to recover file contents this tree needs to be searched for each page of a file The lookup function returns a struct page which leads to the backing physical page 84
85 Recovering File Contents Cont. Indexing the tree in order and gathering of each page will lead to accurate recovery of a whole file This algorithm assumes that swap isn t being used Using swap would defeat much of the purpose of anonymous live CDs Tmpfs analysis is useful for every distribution Many distros mount /tmp using tmpfs, shmem, etc 85
86 Goal 3: Recovering Deleted Info Discussion: 1. Formulate Approach 2. Discuss the kmem_cache and how it relates to recovery 3. Attempt to recover previously deleted file and directory names, metadata, and file contents 86
87 Approach We want orderly recovery To accomplish this, information about deleted files and directories needs to be found in a non-standard way All regular lists, hash tables, and so on lose track of structures as they are deleted Need a way to gather these structures in an orderly manner kmem_cache analysis to the rescue! 87
88 Recovery though kmem_cache analysis A kmem_cache holds all structures of the same type in an organized manner Allows for instant allocations & deallocations Used for handling of process, memory mappings, open files, and many other structures Implementation controlled by allocator in use SLAB and SLUB are the two main ones 88
89 kmem_cache Internals Both allocators keep track of allocated and previously de-allocated objects on three lists: full, in which all objects are allocated partial, a mix of allocated and de-allocated objects free, previously freed objects* The free lists are cleared in an allocator dependent manner SLAB leaves free lists in-tact for long periods of time SLUB is more aggressive 89
90 kmem_cache Illustrated /proc/slabinfo contains information about each current kmem_cache Example output: # name <active_objs> <num_objs> task_struct mm_struct filp The difference between num_objs and active_objs is how many free objects are being tracked by the kernel 90
91 Recovery Using kmem_cache Analysis Enumeration of the lists with free entries reveals previous objects still being tracked by the kernel The kernel does not clear the memory of these objects Our previous work has demonstrated that much previously de-allocated, forensically interesting information can be leveraged from these caches [4] 91
92 Recovering Deleted Filesystem Structure Both Linux kernel and aufs directory entries are backed by the kmem_cache Recovery of these structures reveals names of previous files and directories If d_parent member is still in-tact, can place entries within file system 92
93 Recovering Previous Metadata Inodes are also backed by the kmem_cache Recovery means we can timeline again Also, the dentry list of the AUFS inodes still have entries (strange) This allows us to link inodes and dentrys together Now we can reconstruct previously deleted file information with not only file names & paths, but also MAC times, sizes, inode numbers, and more 93
94 Recovering File Contents Bad News Again, inodes are kept in the kmem_cache Unfortunately, page cache entries are removed upon deallocation, making lookup impossible A large number of pointers would need to stay intact for this to work This removes the ability to recover file contents in an orderly manner Other ways may be possible, but will require more research 94
95 Summary of File System Analysis Can completely recover the in-memory filesystem, its associated metadata, and all file contents Ordered, partial recovery of deleted file names and their metadata is also possible Traditional forensics techniques can be made possible against live CDs Making such analysis accessible to all investigators 95
96 Implementation Recovery code was originally written as loadable kernel modules Allowed for rapid development and testing of ideas 2nd implementation was developed for Volatility Vmware workstation snapshots were used to avoid rebooting of the live CD and reinstallation of software TAILs doesn t include development tools/headers This saved days of research time 96
97 Testing Output was compared to known data sets Directories and files with scripted contents Metadata was compared to the stat command File contents were compared to scripted contents Deleted information was analyzed through previously allocated structures While a file was still allocated, its dentry, inode, etc pointers were saved File was deleted and these addresses were examined for previous data 97
98 Questions/Comments? Please fill out the feedback forms! 98
99 Linux Memory Analysis Workshop Session 3 Andrew Case
100 Who Am I? Security Analyst at Digital Forensics Solutions Also perform wide ranging forensics investigations Volatility Developer Former Blackhat, SOURCE, and DFRWS speaker Computer Science degree from UNO GIAC Certified Forensics Analyst (GCFA) 100
101 Format of this Workshop I will be presenting the Linux kernel memory analysis capabilities of Volatility Along the way we will be seeing numerous examples of Linux kernel source code as well as Volatility s plugins source code Following along with me while I use Volatility to recover data will get you the most out of this workshop 101
102 Setting up Your Environment 102
103 Agenda for Today s Workshop 1. Recovering Vital Runtime Information 2. Investigating Live CDs Through Memory Analysis 3. Detecting Kernel Rootkits 103
104 Agenda for This Hour This session will be a walkthrough of kernelmode rootkits under Linux We will discussing the techniques used by rootkits to stay hidden and how the Volatility modules uncover them I will also be presenting previously never disclosed rootkit techniques developed for this workshop Q&A / Comments 104
105 Linux Kernel-Mode Rootkits 105
106 Introduction I promise not to bore you with information from ~2002 Phrack articles Rootkits target two types of data: 1. Static 2. Dynamic Easy to implement and easy to detect Harder to implement and harder to detect 106
107 Static-Data Altering Rootkits These rootkits target data structures that are easy to modify, but are also effective at hiding activity Common technique types include: Directly overwriting instructions in memory (.text) Overwriting the system call & interrupt descriptor tables Overwriting members of global data structures 107
108 Type 1: Overwriting.text Very popular as its easy to implement and makes hiding data easy Rootkits alter running instructions for a few reasons: To gain control flow To filter data (add, modify, delete) to stay hidden To implement triggers so that userland code can make requests 108
109 Detecting Code Overwrites The compiled code of the kernel is static One exception is covered next The compiled kernel (vmlinux) is an ELF file All functions, including their name, instructions, and size can be gathered from debug information This information can then be compared to what is in memory Any alteration points to malicious (or broken) software 109
110 SMP Alternatives There is one circumstance when runtime modifications happen in the Linux kernel When the computer first boots and only one processor is active, all multi-core synchronization primitives are NOP ed out When more than one CPU comes online, the kernel then has to rewrite these instructions with their SMP-safe counterparts to maintain concurrency 110
111 SMP Alts. Cont. These alternative instructions are kept for performance reasons No reason to get, set, and check SMP locks if only one CPU is active The alternative instructions and their target location are stored within the vmlinux file We can gather this information and use it for accurate.text modification checking 111
112 Type 2: System Call & IDT Overwriting To avoid being detected when overwriting.text, rootkits started modifying the tables used to service system calls and interrupts This allows for a rootkit s code to easily filter the data received and returned by native kernel functions 112
113 Attack Examples Overwrite the read system call and filter out the rootkit s logging data unless a specific register contains a magic value Overwrite the stat system call to hide files from userland anti-rootkit applications Many more possibilities 113
114 Detecting These Attacks The IDT and the system call table are simply C arrays They can be copied from the clean vmlinux file and then compared to the values in memory Will easily detect that the table has been altered and which entries were modified 114
115 Type 3: Overwriting Data Structures Popularized by the adore[1] rootkit, this attack overwrites function pointers of global data structures to filter information Adore overwrites the readdir member of the file_operations structure for the proc and root filesystems The replacement function filters out files on a pattern used by the rootkit, effectively hiding them from userland 115
116 Other Common Attacks Overwriting structure members used to display information through /proc Info files in /proc use the seq_operations interface Hijacking the show member of this structure allows for trivial filtering of information Possible targets Loaded modules list Networking connections (netstat) Open files (lsof) 116
117 Detecting these Attacks We take a generic approach During the profile creation stage, we filter for a number of commonly targeted structure types For variables found, we then copy the statically set values of each member that may be hijacked This ensures that all instances of those structures are checked for malicious tampering 117
118 Targeted Structure Types UPDATE THIS 118
119 Hands On We will look at a memory image infected with a rootkit that uses a number of static-data altering techniques Volatility will show us the exact data structures infected 119
120 Dynamic-Data Modification Rootkits Rootkits that modify dynamic data are much more interesting than those that alter static data Require more skill on part of the rootkit developer Require more complicated analysis and detection capabilities on the detector Cannot be detected by using System.map or vmlinux Need deep parsing of in-kernel data structures 120
121 Attacks & Defenses The rest of this session will cover attacks and defense related to dynamic data altering Most of these attacks are new (developed for this workshop) to highlight the stealth ability of these types of attacks But first, we need to learn about the kmem_cache Will be used extensively by our detection mechanims 121
122 The kmem_cache The kmem_cache is a facility that provides a consistent and fast interface to allocate/deallocate objects (C structures) of the same size The implementation of each cache is provided by the system allocator SLAB and SLUB are the two main ones 122
123 kmem_cache Internals Both allocators keep track of allocated and previously de-allocated objects on three lists: full, in which all objects are allocated partial, a mix of allocated and de-allocated objects free, previously freed objects* The free lists are cleared in an allocator dependent manner SLAB leaves free lists in-tact for long periods of time SLUB is more aggressive 123
124 kmem_cache Illustrated /proc/slabinfo contains information about each current kmem_cache Example output: # name <active_objs> <num_objs> task_struct mm_struct filp The difference between num_objs and active_objs is how many free objects are being tracked by the kernel 124
125 Utilizing the kmem_cache All of the allocated objects backed by a particular cache can be found on the full and partial lists The one caveat is SLUB without debugging on Every distro checked enables SLUB debugging Might be possible to find all references even with debugging off 125
126 The Idea Behind the Detection Dynamic-data rootkit methods work by removing structures from lists, hash tables, and other data structures To detect this tampering, we can take a particular cache instance and use this as a cross-reference to other stores Any structure in the kmem_cache list, but not in another, is hidden Inverse holds as well
127 Why the Detection Works All instances of a structure must be backed by the caches These caches work similar to an immutable store: Structures of the specific type cannot be hidden from it A few possible attack scenarios exist, but will not work undetected
128 Detection Subversion Scenarios 1. Allocating outside the cache Will be detected by the inverse comparisons 2. Allocating in the cache and then removing from it Very difficult to do and will result in detection as with scenario #1 3. Allocating in the cache and then setting the entry as free The structure will be overwritten on next allocation
129 Our First New Attack The first developed attack was hiding processes from /proc A number of rootkit detection systems work by trying to enumerate /proc/[ ] and then compare the output to ps The numbered proc directories are backed by their respective PID namespace and number 129
130 Process Background!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Task_struct_cachep 130
131 The Attack As simple as removing from the namespace Code, where p is the task_struct we want to hide: pid = p->pids[pidtype_pid].pid; // get the pid ref detach_pid(p, PIDTYPE_PID); // take out of PID // group The process will no longer show up in /proc/<pid> lookups 131
132 Detection We gather processes from a number of places before comparing to those in the cache Implemented in XXXXYYYYY 1) Each task_struct holds a pointer into the tasks list 2) The run queue, where scheduled processes wait to execute 3) The PID cache, where we just removed our process from 132
133 Hands-on/Demo We will now investigate hidden processes and look at the corresponding Volatility detection code 133
134 Next Attack: Memory Maps The next attack hides memory maps from /proc/<pid>/maps This file is used to list every mapped address range in a process Each mapping is represented by a vm_area_struct and they are kept in two places: The mmap list of the processes mm_struct The mm_rb tree of the mm_struct 134
135 MM BG!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 135
136 The Attack Inspection of a maps file makes attacks such as shared library injection very noticeable The full path of the mapped binary plus its data and code sections will be visible To hide maps, we need to: Remove the vma from the mm_rb and mmap lists Fixup the structures that account for paging This will hide the map and allow for the targeted process to exit cleanly 136
137 Implemented in: Detection The first step is to gather all active VMAs for a process so they can be compared against those in the cache The problem is that the VMAs are anonymous No immediate linkage to a specific process 137
138 Detection Cont. To work around this, we rely on the fact that vmas keep a back pointer to their owning mm_struct in the vm_mm member Using this, we can gather all the vmas for a specific process and then compare against the cache Can you think of a bypass in this detection? 138
139 Preventing Malware Tampering Since we rely on vm_mm, malware could try to avoid this detection by changing vm_mm Possible attempts: 1. Set vm_mm to some invalid value (NULL, etc) 2. Set vm_mm to another processes s mm_struct Will still be detected: All mm_structs are also in a kmem_cache Comparing the list of vm_mm values to this cache will reveal avoidance attempts 139
140 Next Attack: Open files The /proc/<pid>/fd directory contains a symlink per open file The symlink name is the file descriptor number Used by a number of utilities (lsof) and antirootkit applications to detect files being accessed To remain stealthy, this directory listing needs to be filtered 140
141 The Attack A processes file descriptors are stored in an array of file structures indexed by file descriptor number All non-null indexes are treated as open files NULL entries are skipped 141
142 The Hiding Code idx = loop_counter; // the file desc to test file = p->files->fdt->fd[idx]; // the file struct if (file) { fn = d_path( ); // get the full path of file if(!is_err(fn) && strcmp(fn,"/tmp/hidefile.txt")) fdt->fd[i] = NULL; } 142
143 Detection As with the process detection algo, finding all open files requires gathering from a number of sources: The (non-hidden) open files per-process The vm_file structures used to memory map files All swap files We then compare these against the filp_cachep kmem_cache 143
144 Next Attack: Netfilter NAT Table Netfilter is used to implement NAT on Linux systems It keeps a table of active translations and these are shown in the /proc/net/nf_conntrack file This is obviously a good source of forensics information 144
145 The Attack Netfilter stores the connection tuple in the nf_conntrack_hash data structure Attack code works by enumerating the hash table nodes and removing entries related to the rootkit 145
146 Detection Connection information is stored in the nf_conntrack_cachep kmem_cache We walk this cache and compare against those in the nf_conntrack_hash structure Attackers cannot remove the connection from the cache complete or Netfilter will stop tracking it Breaking the NAT translation 146
147 Demo 147
148 Questions/Comments? Please fill out the feedback forms! 148
149 References [1] 149
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
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
Virtual Servers. Virtual machines. Virtualization. Design of IBM s VM. Virtual machine systems can give everyone the OS (and hardware) that they want.
Virtual machines Virtual machine systems can give everyone the OS (and hardware) that they want. IBM s VM provided an exact copy of the hardware to the user. Virtual Servers Virtual machines are very widespread.
Where is the memory going? Memory usage in the 2.6 kernel
Where is the memory going? Memory usage in the 2.6 kernel Sep 2006 Andi Kleen, SUSE Labs [email protected] Why save memory Weaker reasons "I ve got 1GB of memory. Why should I care about memory?" Old machines
COS 318: Operating Systems
COS 318: Operating Systems File Performance and Reliability Andy Bavier Computer Science Department Princeton University http://www.cs.princeton.edu/courses/archive/fall10/cos318/ Topics File buffer cache
CHAD TILBURY. [email protected]. http://forensicmethods.com @chadtilbury
CHAD TILBURY [email protected] 0 Former: Special Agent with US Air Force Office of Special Investigations 0 Current: Incident Response and Computer Forensics Consultant 0 Over 12 years in the trenches
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
File-system Intrusion Detection by preserving MAC DTS: A Loadable Kernel Module based approach for LINUX Kernel 2.6.x
File-system Intrusion Detection by preserving MAC DTS: A Loadable Kernel Module based approach for LINUX Kernel 2.6.x Suvrojit Das +91-9734294105 [email protected] Arijit Chattopadhayay +91-9474910685
ELEC 377. Operating Systems. Week 1 Class 3
Operating Systems Week 1 Class 3 Last Class! Computer System Structure, Controllers! Interrupts & Traps! I/O structure and device queues.! Storage Structure & Caching! Hardware Protection! Dual Mode Operation
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
Unix/Linux Forensics 1
Unix/Linux Forensics 1 Simple Linux Commands date display the date ls list the files in the current directory more display files one screen at a time cat display the contents of a file wc displays lines,
Carnegie Mellon Virtual Memory of a Linux Process Process-specific data structs (ptables, Different for
Outline CS 6V81-05: System Security and Malicious Code Analysis Understanding the Implementation of Virtual Memory 1 Zhiqiang Lin Department of Computer Science University of Texas at Dallas February 29
Example of Standard API
16 Example of Standard API System Call Implementation Typically, a number associated with each system call System call interface maintains a table indexed according to these numbers The system call interface
Linux Kernel Architecture
Linux Kernel Architecture Amir Hossein Payberah [email protected] Contents What is Kernel? Kernel Architecture Overview User Space Kernel Space Kernel Functional Overview File System Process Management
tmpfs: A Virtual Memory File System
tmpfs: A Virtual Memory File System Peter Snyder Sun Microsystems Inc. 2550 Garcia Avenue Mountain View, CA 94043 ABSTRACT This paper describes tmpfs, a memory-based file system that uses resources and
Linux Driver Devices. Why, When, Which, How?
Bertrand Mermet Sylvain Ract Linux Driver Devices. Why, When, Which, How? Since its creation in the early 1990 s Linux has been installed on millions of computers or embedded systems. These systems may
Virtual Private Systems for FreeBSD
Virtual Private Systems for FreeBSD Klaus P. Ohrhallinger 06. June 2010 Abstract Virtual Private Systems for FreeBSD (VPS) is a novel virtualization implementation which is based on the operating system
The Linux Virtual Filesystem
Lecture Overview Linux filesystem Linux virtual filesystem (VFS) overview Common file model Superblock, inode, file, dentry Object-oriented Ext2 filesystem Disk data structures Superblock, block group,
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
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,
Chapter 11: File System Implementation. Operating System Concepts with Java 8 th Edition
Chapter 11: File System Implementation 11.1 Silberschatz, Galvin and Gagne 2009 Chapter 11: File System Implementation File-System Structure File-System Implementation Directory Implementation Allocation
VM Architecture. Jun-Chiao Wang, 15 Apr. 2002 NCTU CIS Operating System lab. 2002 Linux kernel trace seminar
VM Architecture Jun-Chiao Wang, 15 Apr. 2002 NCTU CIS Operating System lab. 2002 Linux kernel trace seminar Outline Introduction What is VM? Segmentation & Paging in Linux Memory Management Page Frame
Redline Users Guide. Version 1.12
Redline Users Guide Version 1.12 Contents Contents 1 About Redline 5 Timeline 5 Malware Risk Index (MRI) Score 5 Indicators of Compromise (IOCs) 5 Whitelists 5 Installation 6 System Requirements 6 Install
Review from last time. CS 537 Lecture 3 OS Structure. OS structure. What you should learn from this lecture
Review from last time CS 537 Lecture 3 OS Structure What HW structures are used by the OS? What is a system call? Michael Swift Remzi Arpaci-Dussea, Michael Swift 1 Remzi Arpaci-Dussea, Michael Swift 2
COS 318: Operating Systems. File Layout and Directories. Topics. File System Components. Steps to Open A File
Topics COS 318: Operating Systems File Layout and Directories File system structure Disk allocation and i-nodes Directory and link implementations Physical layout for performance 2 File System Components
We mean.network File System
We mean.network File System Introduction: Remote File-systems When networking became widely available users wanting to share files had to log in across the net to a central machine This central machine
Defining Digital Forensic Examination and Analysis Tools Using Abstraction Layers
Defining Digital Forensic Examination and Analysis Tools Using Abstraction Layers Brian Carrier Research Scientist @stake Abstract This paper uses the theory of abstraction layers to describe the purpose
A Hypervisor IPS based on Hardware assisted Virtualization Technology
A Hypervisor IPS based on Hardware assisted Virtualization Technology 1. Introduction Junichi Murakami ([email protected]) Fourteenforty Research Institute, Inc. Recently malware has become more
Toasterkit - A NetBSD Rootkit. Anthony Martinez Thomas Bowen http://mrtheplague.net/toasterkit/
Toasterkit - A NetBSD Rootkit Anthony Martinez Thomas Bowen http://mrtheplague.net/toasterkit/ Toasterkit - A NetBSD Rootkit 1. Who we are 2. What is NetBSD? Why NetBSD? 3. Rootkits on NetBSD 4. Architectural
Safety measures in Linux
S a f e t y m e a s u r e s i n L i n u x Safety measures in Linux Krzysztof Lichota [email protected] A g e n d a Standard Unix security measures: permissions, capabilities, ACLs, chroot Linux kernel
A Comparative Study on Vega-HTTP & Popular Open-source Web-servers
A Comparative Study on Vega-HTTP & Popular Open-source Web-servers Happiest People. Happiest Customers Contents Abstract... 3 Introduction... 3 Performance Comparison... 4 Architecture... 5 Diagram...
VMware Server 2.0 Essentials. Virtualization Deployment and Management
VMware Server 2.0 Essentials Virtualization Deployment and Management . This PDF is provided for personal use only. Unauthorized use, reproduction and/or distribution strictly prohibited. All rights reserved.
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
Practical Online Filesystem Checking and Repair
Practical Online Filesystem Checking and Repair Daniel Phillips Samsung Research America (Silicon Valley) [email protected] 1 2013 SAMSUNG Electronics Co. Why we want online checking: Fsck
Mac Memory Analysis with Volatility. Andrew Case / @attrc Digital Forensics Researcher Terremark
Mac Memory Analysis with Volatility Andrew Case / @attrc Digital Forensics Researcher Terremark Who Am I? Digital Forensics Researcher @ Terremark Volatility Developer & Registry Decoder Co- Developer
Virtual Memory. How is it possible for each process to have contiguous addresses and so many of them? A System Using Virtual Addressing
How is it possible for each process to have contiguous addresses and so many of them? Computer Systems Organization (Spring ) CSCI-UA, Section Instructor: Joanna Klukowska Teaching Assistants: Paige Connelly
Last Class: OS and Computer Architecture. Last Class: OS and Computer Architecture
Last Class: OS and Computer Architecture System bus Network card CPU, memory, I/O devices, network card, system bus Lecture 3, page 1 Last Class: OS and Computer Architecture OS Service Protection Interrupts
Eugene Tsyrklevich. Ozone HIPS: Unbreakable Windows
Eugene Tsyrklevich Eugene Tsyrklevich has an extensive security background ranging from designing and implementing Host Intrusion Prevention Systems to training people in research, corporate, and military
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
Audit Trail Administration
Audit Trail Administration 0890431-030 August 2003 Copyright 2003 by Concurrent Computer Corporation. All rights reserved. This publication or any part thereof is intended for use with Concurrent Computer
Survey of Filesystems for Embedded Linux. Presented by Gene Sally CELF
Survey of Filesystems for Embedded Linux Presented by Gene Sally CELF Presentation Filesystems In Summary What is a filesystem Kernel and User space filesystems Picking a root filesystem Filesystem Round-up
Chapter 3 Operating-System Structures
Contents 1. Introduction 2. Computer-System Structures 3. Operating-System Structures 4. Processes 5. Threads 6. CPU Scheduling 7. Process Synchronization 8. Deadlocks 9. Memory Management 10. Virtual
Forensics source: Edward Fjellskål, NorCERT, Nasjonal sikkerhetsmyndighet (NSM)
s Unix Definition of : Computer Coherent application of a methodical investigatory techniques to solve crime cases. Forensics source: Edward Fjellskål, NorCERT, Nasjonal sikkerhetsmyndighet (NSM) s Unix
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
Operating Systems. Design and Implementation. Andrew S. Tanenbaum Melanie Rieback Arno Bakker. Vrije Universiteit Amsterdam
Operating Systems Design and Implementation Andrew S. Tanenbaum Melanie Rieback Arno Bakker Vrije Universiteit Amsterdam Operating Systems - Winter 2012 Outline Introduction What is an OS? Concepts Processes
Outline. Operating Systems Design and Implementation. Chap 1 - Overview. What is an OS? 28/10/2014. Introduction
Operating Systems Design and Implementation Andrew S. Tanenbaum Melanie Rieback Arno Bakker Outline Introduction What is an OS? Concepts Processes and Threads Memory Management File Systems Vrije Universiteit
CS 416: Opera-ng Systems Design
Question 1 Explain the major difference between a file system that supports journaling (e.g., Linux ext4) versus a log-structured file system (e.g., YAFFS2). Operating Systems 2015 Exam 3 Review Paul Krzyzanowski
Oak Ridge National Laboratory Computing and Computational Sciences Directorate. Lustre Crash Dumps And Log Files
Oak Ridge National Laboratory Computing and Computational Sciences Directorate Lustre Crash Dumps And Log Files Jesse Hanley Rick Mohr Sarp Oral Michael Brim Nathan Grodowitz Gregory Koenig Jason Hill
Detecting the Presence of Virtual Machines Using the Local Data Table
Detecting the Presence of Virtual Machines Using the Local Data Table Abstract Danny Quist {[email protected]} Val Smith {[email protected]} Offensive Computing http://www.offensivecomputing.net/
Virtuozzo Virtualization SDK
Virtuozzo Virtualization SDK Programmer's Guide February 18, 2016 Copyright 1999-2016 Parallels IP Holdings GmbH and its affiliates. All rights reserved. Parallels IP Holdings GmbH Vordergasse 59 8200
Department of Electrical Engineering and Computer Science MASSACHUSETTS INSTITUTE OF TECHNOLOGY. 6.828 Operating System Engineering: Fall 2005
Department of Electrical Engineering and Computer Science MASSACHUSETTS INSTITUTE OF TECHNOLOGY 6.828 Operating System Engineering: Fall 2005 Quiz II Solutions Average 84, median 83, standard deviation
ZooKeeper. Table of contents
by Table of contents 1 ZooKeeper: A Distributed Coordination Service for Distributed Applications... 2 1.1 Design Goals...2 1.2 Data model and the hierarchical namespace...3 1.3 Nodes and ephemeral nodes...
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
Storage Management. in a Hybrid SSD/HDD File system
Project 2 Storage Management Part 2 in a Hybrid SSD/HDD File system Part 1 746, Spring 2011, Greg Ganger and Garth Gibson 1 Project due on April 11 th (11.59 EST) Start early Milestone1: finish part 1
ProTrack: A Simple Provenance-tracking Filesystem
ProTrack: A Simple Provenance-tracking Filesystem Somak Das Department of Electrical Engineering and Computer Science Massachusetts Institute of Technology [email protected] Abstract Provenance describes a file
Chapter 3: Operating-System Structures. Common System Components
Chapter 3: Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual Machines System Design and Implementation System Generation 3.1
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
Operating System Components
Lecture Overview Operating system software introduction OS components OS services OS structure Operating Systems - April 24, 2001 Operating System Components Process management Memory management Secondary
Computer Forensics using Open Source Tools
Computer Forensics using Open Source Tools COMP 5350/6350 Digital Forensics Professor: Dr. Anthony Skjellum TA: Ananya Ravipati Presenter: Rodrigo Sardinas Overview Use case explanation Useful Linux Commands
Ryusuke KONISHI NTT Cyberspace Laboratories NTT Corporation
Ryusuke KONISHI NTT Cyberspace Laboratories NTT Corporation NILFS Introduction FileSystem Design Development Status Wished features & Challenges Copyright (C) 2009 NTT Corporation 2 NILFS is the Linux
The Lagopus SDN Software Switch. 3.1 SDN and OpenFlow. 3. Cloud Computing Technology
3. The Lagopus SDN Software Switch Here we explain the capabilities of the new Lagopus software switch in detail, starting with the basics of SDN and OpenFlow. 3.1 SDN and OpenFlow Those engaged in network-related
Linux Distributed Security Module 1
Linux Distributed Security Module 1 By Miroslaw Zakrzewski and Ibrahim Haddad This article describes the implementation of Mandatory Access Control through a Linux kernel module that is targeted for Linux
Full System Emulation:
Full System Emulation: Achieving Successful Automated Dynamic Analysis of Evasive Malware Christopher Kruegel Lastline, Inc. [email protected] 1 Introduction Automated malware analysis systems (or sandboxes)
Attacking Host Intrusion Prevention Systems. Eugene Tsyrklevich [email protected]
Attacking Host Intrusion Prevention Systems Eugene Tsyrklevich [email protected] Agenda Introduction to HIPS Buffer Overflow Protection Operating System Protection Conclusions Demonstration
Network File System (NFS) Pradipta De [email protected]
Network File System (NFS) Pradipta De [email protected] Today s Topic Network File System Type of Distributed file system NFS protocol NFS cache consistency issue CSE506: Ext Filesystem 2 NFS
Professional Xen Visualization
Professional Xen Visualization William von Hagen WILEY Wiley Publishing, Inc. Acknowledgments Introduction ix xix Chapter 1: Overview of Virtualization : 1 What Is Virtualization? 2 Application Virtualization
Leak Check Version 2.1 for Linux TM
Leak Check Version 2.1 for Linux TM User s Guide Including Leak Analyzer For x86 Servers Document Number DLC20-L-021-1 Copyright 2003-2009 Dynamic Memory Solutions LLC www.dynamic-memory.com Notices Information
Objectives. Chapter 2: Operating-System Structures. Operating System Services (Cont.) Operating System Services. Operating System Services (Cont.
Objectives To describe the services an operating system provides to users, processes, and other systems To discuss the various ways of structuring an operating system Chapter 2: Operating-System Structures
SkyRecon Cryptographic Module (SCM)
SkyRecon Cryptographic Module (SCM) FIPS 140-2 Documentation: Security Policy Abstract This document specifies the security policy for the SkyRecon Cryptographic Module (SCM) as described in FIPS PUB 140-2.
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
Storage and File Systems. Chester Rebeiro IIT Madras
Storage and File Systems Chester Rebeiro IIT Madras 1 Two views of a file system system calls protection rwx attributes Application View Look & Feel File system Hardware view 2 Magnetic Disks Chester Rebeiro
The Native AFS Client on Windows The Road to a Functional Design. Jeffrey Altman, President Your File System Inc.
The Native AFS Client on Windows The Road to a Functional Design Jeffrey Altman, President Your File System Inc. 14 September 2010 The Team Peter Scott Principal Consultant and founding partner at Kernel
Code Injection From the Hypervisor: Removing the need for in-guest agents. Matt Conover & Tzi-cker Chiueh Core Research Group, Symantec Research Labs
Code Injection From the Hypervisor: Removing the need for in-guest agents Matt Conover & Tzi-cker Chiueh Core Research Group, Symantec Research Labs SADE: SteAlthy Deployment and Execution Introduction
McAfee Web Gateway 7.4.1
Release Notes Revision B McAfee Web Gateway 7.4.1 Contents About this release New features and enhancements Resolved issues Installation instructions Known issues Find product documentation About this
CimTrak Technical Summary. DETECT All changes across your IT environment. NOTIFY Receive instant notification that a change has occurred
DETECT All changes across your IT environment With coverage for your servers, network devices, critical workstations, point of sale systems, and more, CimTrak has your infrastructure covered. CimTrak provides
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
CS3600 SYSTEMS AND NETWORKS
CS3600 SYSTEMS AND NETWORKS NORTHEASTERN UNIVERSITY Lecture 2: Operating System Structures Prof. Alan Mislove ([email protected]) Operating System Services Operating systems provide an environment for
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!
Advanced Registry Forensics with Registry Decoder. Dr. Vico Marziale Sleuth Kit and Open Source Digital Forensics Conference 2012 10/03/2012
Advanced Registry Forensics with Registry Decoder Dr. Vico Marziale Sleuth Kit and Open Source Digital Forensics Conference 2012 10/03/2012 Who am I? Senior Security Researcher @ DFS Published Researcher
Forensic Imaging and Artifacts analysis of Linux & Mac (EXT & HFS+)
Copyright: The development of this document is funded by Higher Education of Academy. Permission is granted to copy, distribute and /or modify this document under a license compliant with the Creative
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
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
Intel P6 Systemprogrammering 2007 Föreläsning 5 P6/Linux Memory System
Intel P6 Systemprogrammering 07 Föreläsning 5 P6/Linux ory System Topics P6 address translation Linux memory management Linux page fault handling memory mapping Internal Designation for Successor to Pentium
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
1 File Management. 1.1 Naming. COMP 242 Class Notes Section 6: File Management
COMP 242 Class Notes Section 6: File Management 1 File Management We shall now examine how an operating system provides file management. We shall define a file to be a collection of permanent data with
Incident Response. Six Best Practices for Managing Cyber Breaches. www.encase.com
Incident Response Six Best Practices for Managing Cyber Breaches www.encase.com What We ll Cover Your Challenges in Incident Response Six Best Practices for Managing a Cyber Breach In Depth: Best Practices
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
Peach Fuzzer Platform
Fuzzing is a software testing technique that introduces invalid, malformed, or random data to parts of a computer system, such as files, network packets, environment variables, or memory. How the tested
UNIX File Management (continued)
UNIX File Management (continued) OS storage stack (recap) Application FD table OF table VFS FS Buffer cache Disk scheduler Device driver 2 Virtual File System (VFS) Application FD table OF table VFS FS
Secure Web Application Coding Team Introductory Meeting December 1, 2005 1:00 2:00PM Bits & Pieces Room, Sansom West Room 306 Agenda
Secure Web Application Coding Team Introductory Meeting December 1, 2005 1:00 2:00PM Bits & Pieces Room, Sansom West Room 306 Agenda 1. Introductions for new members (5 minutes) 2. Name of group 3. Current
Chapter 3: Operating-System Structures. System Components Operating System Services System Calls System Programs System Structure Virtual Machines
Chapter 3: Operating-System Structures System Components Operating System Services System Calls System Programs System Structure Virtual Machines Operating System Concepts 3.1 Common System Components
Enterprise Manager Performance Tips
Enterprise Manager Performance Tips + The tips below are related to common situations customers experience when their Enterprise Manager(s) are not performing consistent with performance goals. If you
QEMU-KVM + D-System Monitor Setup Manual
DEOS-FY2014-QK-02E 2013-2014 Japan Science and Technology Agency QEMU-KVM + D-System Monitor Setup Manual Version E1.2 2014/02/01 Edited by DEOS R&D Center DEOS Project JST-CREST Research Area Dependable
Chapter 13 File and Database Systems
Chapter 13 File and Database Systems Outline 13.1 Introduction 13.2 Data Hierarchy 13.3 Files 13.4 File Systems 13.4.1 Directories 13.4. Metadata 13.4. Mounting 13.5 File Organization 13.6 File Allocation
Chapter 13 File and Database Systems
Chapter 13 File and Database Systems Outline 13.1 Introduction 13.2 Data Hierarchy 13.3 Files 13.4 File Systems 13.4.1 Directories 13.4. Metadata 13.4. Mounting 13.5 File Organization 13.6 File Allocation
