...Forensicc studies volatility 1. List the processes that were running on the victim’s machine. Which process was most likely responsible for the initial exploit? Figure 1 seeking the profile As shown in figure one, when the command “vol imageinfo –f /root/Desktop/BF.vmem” is applied, the result shows the suggested profile which is WinXPSP2x86 and WinXPSP3x86.With that we can able to identify the profile victim is using. Figure 2 Result of Pslist By using the “Pslist” command, we are able to trace the process running in the victim and based on the scenario provided, the user was emailed a link to a suspicious PDF by a co-worker. The chaos happened after the PDF file is opened. As shown in figure 2, “AcroRd32.exe” with PID 1752 is most likely responsible for the exploit. The PPID (parent PID) of AcroRd32.exe is 888 which indicate firefox.exe. 2. List the sockets that were open on the victim’s machine during infection. Are there any suspicious processes that have sockets open? Figure 3 Result of listing Sockets Figure 3 shows the list of socket that were opened on the victim’s machine during the exploitation Figure 4 Result of Connection The figure above shows the list of connection found in victim’s machine and the most suspicious connection to external website is the AcroRd32.exe (PID 1752) and svchost.exe (PID 880). These application caught our attention because it does not have any outbound HTTP connections. Figure 5 Information of IP After finding...
Words: 1584 - Pages: 7
...Logistics Information System (LO-LIS) Release 4.6C HELP.LOLIS Logistics Information System (LO-LIS) SAP AG Copyright © Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP AG. The information contained herein may be changed without prior notice. Some software products marketed by SAP AG and its distributors contain proprietary software components of other software vendors. Microsoft , WINDOWS , NT , EXCEL , Word , PowerPoint and SQL Server are registered trademarks of Microsoft Corporation. IBM , DB2 , OS/2 , DB2/6000 , Parallel Sysplex , MVS/ESA , RS/6000 , AIX , S/390 , ® ® ® AS/400 , OS/390 , and OS/400 are registered trademarks of IBM Corporation. ORACLE is a registered trademark of ORACLE Corporation. INFORMIX -OnLine for SAP and Informix Dynamic Server Informix Software Incorporated. ® ® ® ® ® ® TM ® ® ® ® ® ® ® ® ® ® ® ® ® ® ® ® ® are registered trademarks of UNIX , X/Open , OSF/1 , and Motif are registered trademarks of the Open Group. HTML, DHTML, XML, XHTML are trademarks or registered trademarks of W3C , World Wide Web Consortium, Massachusetts Institute of Technology. JAVA is a registered trademark of Sun Microsystems, Inc. JAVASCRIPT is a registered trademark of Sun Microsystems, Inc., used under license for technology invented and implemented by Netscape. SAP, SAP Logo, R/2, RIVA, R/3, ABAP, SAP ArchiveLink, SAP Business...
Words: 51862 - Pages: 208
...www.qyresearchreports.com Global and China Functional beverages Industry 2013 Market Research Report The report firstly introduced Functional beverages basic information included Functional beverages definition classification application industry chain structure industry overview; international market analysis, China domestic market analysis, Macroeconomic environment and economic situation analysis and influence, Functional beverages industry policy and plan, Functional beverages product specification, manufacturing process, product cost structure etc. then statistics Global and China key manufacturers Functional beverages capacity production cost price profit production value gross margin etc details information, at the same time, statistics these manufacturers Functional beverages products customers application capacity market position Activationontact information etc company related information, then collect all these manufacturers data and listed Global and China Functional beverages capacity production capacity market share production market share supply demand shortage import export consumption etc data statistics, and then introduced Global and China Functional beverages 2009-2013 capacity production price cost profit production value gross margin etc information. And also listed Functional beverages upstream raw materials equipments and down stream clients survey analysis and Functional beverages marketing channels industry development trend and proposals. In the...
Words: 1973 - Pages: 8
...16907@ggnindia.dronacharya.info Abstract-Arrays and linked lists are two basic data structures used to store information. We may wish to search, insert or delete records in a database based on a key value. This section examines the performance of these operations on arrays and linked lists. In this research paper we studied about the sorting and types of sorting. This is followed by techniques for implementing dictionaries, structures that allow efficient search, insert, and delete operations. We have also illustrated algorithms that sort data and implement dictionaries for very large files Keywords-insertion sort, quick sort, sort ,binary search tree, skip list. 1. Introduction Arrays and linked lists are two basic data structures used to store information. We may wish to search, insert or delete records in a database based on a key value. This section examines the performance of these operations on arrays and linked lists. 1.1 Arrays Figure 1-1 shows an array, seven elements long, containing numeric values. To search the array sequentially, we may use the algorithm in Figure 1-2. The maximum number of comparisons is 7, and occurs when the key we are searching for is in A[6]. Figure 1-1: An Array int function SequentialSearch(Array A , int Lb, int Ub, int Key ); begin for i= Lbto Ub do if A [ i ]= Key then return i ; return –1; end; | Figure 1-2: Sequential Search If the data is sorted,...
Words: 2248 - Pages: 9
...definition Regarding the Industry Mentor as a Member of the Examination Committee: The Principal/ Director of every Degree Engineering College/ Institute may invite the industry mentor of a project to be the third member of the Examination Committee. Note: The University will pay the Travelling Allowance as per the University norms to the industry mentor, when he works as the examiner. SEMINAR/PROJECT REPORT FOR B.E. 7TH /8TH SEMESTER 1. ARRANGEMENT OF CONTENTS: The sequence in which the project report material should be arranged and bound should be as follows: 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. Cover Page & Title Page Certificate Acknowledgement Abstract List of Tables List of Figures List of Symbols, Abbreviations and Nomenclature Table of Contents Chapters Appendices References The table and figures shall be introduced in the appropriate places. 2. PAGE DIMENSION AND BINDING SPECIFICATIONS: The dimension of the project report should be in A4 size. The project report should be bound using flexible cover of the thick white art paper. The cover should be printed in...
Words: 1462 - Pages: 6
...a sequence is so fundamental to programming that I’ve had a very hard time avoiding it so far. And as you, alert and perky, have noticed, I actually haven’t, since I involuntarily had to introduce sequences in Section 4.4 when talking about the for loop. In Python, the word “sequence” covers several phenomena. Strings are sequences of characters, and you heard about those in Chapter 3. In the coming sections, you’ll hear about the two other basic types of sequence supported by Python: Lists and tuples. Later in this chapter, we’ll get around to talking about sets and dictionaries. Strings and integers represent concrete data objects; a string or a number represents true data in itself.1 Lists, tuples and dictionaries are designed to organize other data, to impose structure upon it; they do not necessarily represent true data in their own right. For this reason, they are also called abstract data structures. 6.1 Lists and tuples — mutable vs. immutable As I mentioned back in Section 4.4, lists and tuples are indexed just like strings: The first item of a sequence of length l has index 0, and the last has index l-1. You can get the length of a sequence with the built-in function len. You may use negative indices (e.g. −1 for the last item in the sequence),...
Words: 18297 - Pages: 74
...2014 Market Research Report on Global and China Tire Industry 中国市场报告网 www.360baogao.com 报告简介 |【名 称】 |2014 Market Research Report on Global and China Tire Industry | |【编 号】 |13A9370 | |【版 本】 |2014年2月 | |【价 格】 |纸质版:14000元 电子版:14000元 纸质+电子版:15000元 | |【优惠价】 |¥ 12600 元 | |【电 话】 |400 612 8668、010-66181099、010-66182099 传真:010-66183099 | |【邮 箱】 |Kf@360baogao.com | |【网 址】 |http://www.360BaoGao.com/2014-02/2014_Market_Research_Report_on_Global_and_China_Tire_Industry/ | |【提 示】 |如需中文、日文等其他语言版本报告,请向客服咨询。 | was professional and depth research report on Global and China Tire industry. The report firstly introduced Specialty Tire basic information included Tire definition classification application industry chain structure industry overview; ...
Words: 1798 - Pages: 8
... A report submitted in partial fulfillment of the requirements for ME 000 Some Course Department of Mechanical Engineering Fictitious Institute of Technology 01 January 9999 ABSTRACT Mechanics of writing a technical report is explained in a pseudo report format. The purpose of this pseudo report is to explain the contents of a typical engineering report. It can also be used as a template for an actual engineering report. With some adaptation, the format can be extended to other type of technical writings as well. TABLE OF CONTENTS ABSTRACT ................................................................................................................................i LIST OF FIGURES AND TABLES ......................................................................................... iii LIST OF SYMBOLS .................................................................................................................iv ACKNOWLEDGEMENTS ........................................................................................................v INTRODUCTION ......................................................................................................................1 EXPERIMENTAL DETAILS.....................................................................................................1 RESULTS AND DISCUSSIONS................................................................................................2 SECTION DESCRIPTIONS ..........................................
Words: 3413 - Pages: 14
...Dissertation will demonstrate effective communication skills. It is the responsibility of the student that the Dissertation demonstrates clarity, correctness, and organization. Characteristics that a Dissertation will demonstrate are: The establishment of a historical context for the presentation of an innovative and creative approach to the problem analysis and solution. A clear understanding of the problem area as revealed by analysis and synthesis of a broad literature base. A well-defined research design. Clarity in composition and careful documentation. Students should consult the most recent edition of the Publication Manual of the American Psychological Association for complete style information (reference format, table and figure layout, special language, numbers, abbreviations, etc.). PRINT REQUIREMENTS 1. Text must be set in 12-point Times New Roman. 2. All Dissertations must be clean and carefully produced; pages that are crooked or that have grey edges, streaks, or spots are not acceptable. 3. All type must be sharp, clear, and unbroken. Visible differences in quality or contrast of print resulting from a faulty or worn out printer are unacceptable. 4. The Dissertation report needs to be submitted in hard cover binding. They may follow the Guidelines given in respect of font size, colour scheme, sequence in the report, declaration certificates duly signed by the faculty guide, acknowledgement, contents and preparation of references etc. Page 3 of 18 ...
Words: 3342 - Pages: 14
...2014 Market Research Report on Global and China Smartphone Industry 中国市场报告网 www.360baogao.com 报告简介 |【名 称】 |2014 Market Research Report on Global and China Smartphone Industry | |【编 号】 |13500A1 | |【版 本】 |2014年2月 | |【价 格】 |纸质版:14000元 电子版:14000元 纸质+电子版:15000元 | |【优惠价】 |¥ 12600 元 | |【电 话】 |400 612 8668、010-66181099、010-66182099 传真:010-66183099 | |【邮 箱】 |Kf@360baogao.com | |【网 址】 |http://www.360BaoGao.com/2014-02/2014_Market_Research_Report_on_Global_and_China_Smartphone_Industry/ | |【提 示】 |如需中文、日文等其他语言版本报告,请向客服咨询。 | "2014 Market Research Report on Global and China Smartphone Industry" was professional and depth research report on Global and China Smartphone industry. The report firstly introduced Smartphone basic information included Smartphone definition classification...
Words: 1799 - Pages: 8
...Case Study Best-Book-Buy Online Bookstore Requirements Specification Document (By Henrique Paques, Leo Mark and Shamkant B. Navathe) 1. Introduction The purpose of this case study is to present a data-intensive application for which a database can be designed. It is described with sufficient degree of detail so that the application can be implemented in languages like Java or C using ODBC or JDBC connectivity to the relational database. This case study is an illustration of the typical project we have been using to teach an undergraduate class in database design that covers essentially the first 16 chapters of the textbook at Georgia Tech. The user interface is defined in screen format – these screens can be implemented using Visual Basic or Java as needed, or a simpler version of the interface using simple text menus may be implemented. There are a few reports included in the application specification. They are for illustrative purposes and may be modified as well. The methodology to be followed uses conceptual design in the Entity Relationship Model (Chapter 3), followed by a mapping of the ER schema into the relational schema (Chapter 7). The application is broken into a number of tasks and the inputs and outputs are related to the tasks by means of an Information Flow Diagram. Students should use Chapter 12 to understand the overall process of database design used for design of large databases. A design methodology is developed during the discussion of this...
Words: 5909 - Pages: 24
...La Consolacion College Manila THESIS WRITING GUIDE 2011 (Undergraduate) LA CONSOLACION COLLEGE MANILA 8 Mendiola St., Malacañang Complex, Manila Telephone Nos.: 736-0235 / 313-0513 / Fax: 313-0602 Website: http://www.lccm.edu.ph Thesis Writing Guide June 2011 Prepared by: Dr. Jennifer S. Florida Director, Research and Publications Center La Consolacion College Manila Venancio N. Santos, Jr. Staff, Research and Publications Center La Consolacion College Manila All rights reserved. Published by: Research and Publications Center 231 Gregor Mendel Science Center La Consolacion College Manila 8 Mendiola St., San Miguel, Manila 1005 Telephone: 736 - 0235 (loc 173), 313 - 0509 URL: http://www.lccm.edu.ph Layout: Venancio N. Santos, Jr. La Consolacion College Manila Vision – Mission Statement Vision La Consolacion College Manila is a Catholic educational institution that is inspired by St. Augustine’s vision of the academe that is founded on the primacy of love. It understands the academic community to be above all else, a scholarly fellowship of friends. As an institution of higher learning, La Consolacion College Manila envisions herself to become truly an innovative higher education institution in the Asia-Pacific Rim. Within this decade 2010-2020, LCCM is projected to be veritably influenced by research-oriented instruction that is richly complemented with technology-driven holistic education for lifelong learning, and with strong community...
Words: 7027 - Pages: 29
...01 558366 ch01.qxd 11/24/03 10:15 AM Page 1 C H A P T E R Getting Started ou’ll find that Fedora is remarkably friendly and easy to use for work, play, or for just surfing the Internet. This chapter helps you to get logged in and use the friendly Fedora Bluecurve desktop and demonstrates how to log out and shut down the computer. You also learn how to configure the date, time, and your time zone, how to set up any printer you may have connected to your computer, and how to get your computer connected to the Internet. Even if you are eager and able to start using the many powerful applications with little or no help, please take the time to familiarize yourself with the terms and important concepts contained in this chapter, especially the information about users and security in the section “Before You Log In.” 1 ✦ ✦ Y ✦ ✦ Introductory Terms When you learn about a new operating system, you also need to learn new terminology. Here are a few basic terms you should learn to use Fedora. You will see these terms often throughout this book: ✦ Graphical User Interface (GUI) — A screen with icons, menus, and panels for the user to click on to initiate actions such as starting applications and opening files. ✦ Point and click — You move the mouse to point to something on the screen, and then click one of the mouse buttons to perform a task. By default, you click the left mouse button to do most tasks, but very often you can get a custom menu of options when...
Words: 7515 - Pages: 31
...CYAN MAGENTA YELLOW BLACK PANTONE 123 C BOOKS FOR PROFESSIONALS BY PROFESSIONALS ® Companion eBook Available Beginning Drupal 7 Beginning Dear Reader, • How to configure the different elements of a Drupal 7 site • How to make your site truly interactive • How to customize the look of your site using themes • How to securely administer your Drupal 7 site In my 35-year career in the IT industry there have been very few technologies that have excited me as much as Drupal. I decided to write this book because my clients frequently ask how they could quickly get up to speed on the Drupal platform so that they could begin building rich and sometimes complex solutions. To address the need, I’ve taken all of my experiences of helping dozens of clients through the Drupal learning process and have embedded that knowledge and experience into this book. I hope you’ll walk with me as I take you through the journey of learning how to build rich and powerful web sites using Drupal 7. You’ll learn everything from installing Drupal to managing your site once you’ve completed it. If you stick with me along the path you’ll walk away with enough experience under your belt to quickly and easily create functionally rich and beautifully designed Drupal 7 sites on your own. Companion eBook Drupal 7 Drupal is one of the fastest-growing web development frameworks. It’s extremely powerful, capable of hosting high-traffic, high-security sites like whitehouse...
Words: 85710 - Pages: 343
...the order in which the computer will execute the statements. The computer will interpret the statements in a left to right, top to bottom fashion. Consider the following: Calculate-Average Module DO Get Two Numbers Calculate Sum Determine Average Print Average ENDDO The sequence for the above module is straightforward. You get the two numbers, calculate the sum, determine the average and print out the result. If the statements are not in that sequence, the result obtained will not be the answer intended! Figure 4-1: Simple sequence The Calculate Average module is not a separate module away from the rest of the four modules below it. But it actually contains all the four modules. Each process (a rectangle) represents a component with their function/action stated in the function list. If the component does not contain or form other constructs (i.e. other sequences, selections or iterations), it is regarded as an elementary component. The diagram should be interpreted in a top-down, left to right manner. The Calculate-Average Module has four elementary components. Each time it is activated, it will activate the Input Number module, Calculate...
Words: 2186 - Pages: 9