General IT Controls (GITC) Risk and Impact November 2018 Risk Advisory
Total Page:16
File Type:pdf, Size:1020Kb
Load more
Recommended publications
-
Oracle Solaris: the Carrier-Grade Operating System Technical Brief
An Oracle White Paper February 2011 Oracle Solaris: The Carrier-Grade Operating System Oracle White Paper—Oracle Solaris: The Carrier-Grade OS Executive Summary.............................................................................1 ® Powering Communication—The Oracle Solaris Ecosystem..............3 Integrated and Optimized Stack ......................................................5 End-to-End Security ........................................................................5 Unparalleled Performance and Scalability.......................................6 Increased Reliability ........................................................................7 Unmatched Flexibility ......................................................................7 SCOPE Alliance ..............................................................................7 Security................................................................................................8 Security Hardening and Monitoring .................................................8 Process and User Rights Management...........................................9 Network Security and Encrypted Communications .......................10 Virtualization ......................................................................................13 Oracle VM Server for SPARC .......................................................13 Oracle Solaris Zones .....................................................................14 Virtualized Networking...................................................................15 -
The Wine Industry Audit Technique Guide
The Wine Industry Audit Technique Guide NOTE: This document is not an official pronouncement of the law or the position of the Service and cannot be used, cited, or relied upon as such. This guide is current through the publication date. Since changes may have occurred after the publication date that would affect the accuracy of this document, no guarantees are made concerning the technical accuracy after the publication date. Publication Date: March 2011 Table of Contents Introduction .............................................................................................................................................. 2 Chapter 1 - Overview of Winery/Vineyard Operations ............................................................................ 3 Farming ................................................................................................................................................. 3 Winery (Manufacturing) ....................................................................................................................... 4 Marketing/Sales .................................................................................................................................... 6 Chapter 2 - Pre-Audit Information Gathering ........................................................................................... 8 Information Sources .............................................................................................................................. 8 Chapter 3 - Audit Considerations ............................................................................................................. -
Capital/Fixed Assets Depreciation Schedule Updated: February 2021
Kentucky Department of Education Munis Guide Capital/Fixed Assets Depreciation Schedule Updated: February 2021 Capital/Fixed Assets Depreciation Schedule Office of Education Technology: Division of School Technology Services Questions?: [email protected] 1 | P a g e Kentucky Department of Education Munis Guide Capital/Fixed Assets Depreciation Schedule Updated: February 2021 OVERVIEW The Fixed Assets Depreciation Schedule provides a listing of asset details that were depreciated for the report year as posted from the Fixed Asset module for the report year. Asset descriptions and depreciation details are included such as estimated life, number of periods taken for the year, first and last year periods of depreciation and acquisition cost; all to assist auditors in verifying the depreciation calculation and amounts. The report also includes assets that have been fully depreciated but have a balance remaining of Life-To-Date accumulated depreciation for the reported year. The asset amounts are reported as posted from the Fixed Asset history detail records generated from the Fixed Asset module and does NOT include amounts generated from General Journal Entries. The Depreciation Schedule pulls from two different Fixed Asset sources: 1. Fixed Asset Master File Maintenance 2. Fixed Asset history records The Fixed Asset Master File Maintenance or Asset Inquiry is where the actual asset master records reside; where assets are added and maintained. Key fields and amounts such as the asset Acquisition cost field, Asset Type (Governmental or Proprietary), Class and Sub-class codes are pulled from the asset master file for the Depreciation Schedule. It is vital that these key fields are accurate and tie to the fixed asset history records. -
14. Calculating Total Cash Flows
Chapter 2 Lecture Problems 14. Calculating Total Cash Flows. Greene Co. shows the following information on its 2008 income statement: Sales = $138,000 Costs = $71,500 Other expenses = $4,100 Depreciation expense = $10,100 Interest expense = $7,900 Taxes = $17,760 Dividends = $5,400. In addition, you're told that the firm issued $2,500 in new equity during 2008, and redeemed $3,800 in outstanding long-term debt. a. What is the 2008 operating cash flow? b. What is the 2008 cash flow to creditors? c. What is the 2008 cash flow to stockholders? d. If net fixed assets increased by $17,400 during the year, what was the addition to NWC? a. To calculate the OCF, we first need to construct an income statement. The income statement starts with revenues and subtracts costs to arrive at EBIT. We then subtract out interest to get taxable income, and then subtract taxes to arrive at net income. Doing so, we get: Income Statement Sales $138,000 Costs 71,500 Other Expenses 4,100 Depreciation 10,100 EBIT $52,300 Interest 7,900 Taxable income $44,400 Taxes 17,760 Net income $26,640 Dividends $5,400 Addition to retained earnings 21,240 Page 1 Chapter 2 Lecture Problems Dividends paid plus addition to retained earnings must equal net income, so: Net income = Dividends + Addition to retained earnings Addition to retained earnings = $26,640 – 5,400 Addition to retained earnings = $21,240 So, the operating cash flow is: OCF = EBIT + Depreciation – Taxes OCF = $52,300 + 10,100 – 17,760 OCF = $44,640 b. -
Introduction to Unix
Introduction to Unix Rob Funk <[email protected]> University Technology Services Workstation Support http://wks.uts.ohio-state.edu/ University Technology Services Course Objectives • basic background in Unix structure • knowledge of getting started • directory navigation and control • file maintenance and display commands • shells • Unix features • text processing University Technology Services Course Objectives Useful commands • working with files • system resources • printing • vi editor University Technology Services In the Introduction to UNIX document 3 • shell programming • Unix command summary tables • short Unix bibliography (also see web site) We will not, however, be covering these topics in the lecture. Numbers on slides indicate page number in book. University Technology Services History of Unix 7–8 1960s multics project (MIT, GE, AT&T) 1970s AT&T Bell Labs 1970s/80s UC Berkeley 1980s DOS imitated many Unix ideas Commercial Unix fragmentation GNU Project 1990s Linux now Unix is widespread and available from many sources, both free and commercial University Technology Services Unix Systems 7–8 SunOS/Solaris Sun Microsystems Digital Unix (Tru64) Digital/Compaq HP-UX Hewlett Packard Irix SGI UNICOS Cray NetBSD, FreeBSD UC Berkeley / the Net Linux Linus Torvalds / the Net University Technology Services Unix Philosophy • Multiuser / Multitasking • Toolbox approach • Flexibility / Freedom • Conciseness • Everything is a file • File system has places, processes have life • Designed by programmers for programmers University Technology Services -
Unix/Linux Command Reference
Unix/Linux Command Reference .com File Commands System Info ls – directory listing date – show the current date and time ls -al – formatted listing with hidden files cal – show this month's calendar cd dir - change directory to dir uptime – show current uptime cd – change to home w – display who is online pwd – show current directory whoami – who you are logged in as mkdir dir – create a directory dir finger user – display information about user rm file – delete file uname -a – show kernel information rm -r dir – delete directory dir cat /proc/cpuinfo – cpu information rm -f file – force remove file cat /proc/meminfo – memory information rm -rf dir – force remove directory dir * man command – show the manual for command cp file1 file2 – copy file1 to file2 df – show disk usage cp -r dir1 dir2 – copy dir1 to dir2; create dir2 if it du – show directory space usage doesn't exist free – show memory and swap usage mv file1 file2 – rename or move file1 to file2 whereis app – show possible locations of app if file2 is an existing directory, moves file1 into which app – show which app will be run by default directory file2 ln -s file link – create symbolic link link to file Compression touch file – create or update file tar cf file.tar files – create a tar named cat > file – places standard input into file file.tar containing files more file – output the contents of file tar xf file.tar – extract the files from file.tar head file – output the first 10 lines of file tar czf file.tar.gz files – create a tar with tail file – output the last 10 lines -
Lecture 1: Introduction to UNIX
The Operating System Course Overview Getting Started Lecture 1: Introduction to UNIX CS2042 - UNIX Tools September 29, 2008 Lecture 1: UNIX Intro The Operating System Description and History Course Overview UNIX Flavors Getting Started Advantages and Disadvantages Lecture Outline 1 The Operating System Description and History UNIX Flavors Advantages and Disadvantages 2 Course Overview Class Specifics 3 Getting Started Login Information Lecture 1: UNIX Intro The Operating System Description and History Course Overview UNIX Flavors Getting Started Advantages and Disadvantages What is UNIX? One of the first widely-used operating systems Basis for many modern OSes Helped set the standard for multi-tasking, multi-user systems Strictly a teaching tool (in its original form) Lecture 1: UNIX Intro The Operating System Description and History Course Overview UNIX Flavors Getting Started Advantages and Disadvantages A Brief History of UNIX Origins The first version of UNIX was created in 1969 by a group of guys working for AT&T's Bell Labs. It was one of the first big projects written in the emerging C language. It gained popularity throughout the '70s and '80s, although non-AT&T versions eventually took the lion's share of the market. Predates Microsoft's DOS by 12 years! Lecture 1: UNIX Intro The Operating System Description and History Course Overview UNIX Flavors Getting Started Advantages and Disadvantages Lecture Outline 1 The Operating System Description and History UNIX Flavors Advantages and Disadvantages 2 Course Overview Class Specifics 3 -
Introduction to UNIX What Is UNIX? Why UNIX? Brief History of UNIX Early UNIX History UNIX Variants
What is UNIX? A modern computer operating system Introduction to UNIX Operating system: “a program that acts as an intermediary between a user of the computer and the computer hardware” CS 2204 Software that manages your computer’s resources (files, programs, disks, network, …) Class meeting 1 e.g. Windows, MacOS Modern: features for stability, flexibility, multiple users and programs, configurability, etc. *Notes by Doug Bowman and other members of the CS faculty at Virginia Tech. Copyright 2001-2003. (C) Doug Bowman, Virginia Tech, 2001- 2 Why UNIX? Brief history of UNIX Used in many scientific and industrial settings Ken Thompson & Dennis Richie Huge number of free and well-written originally developed the earliest software programs versions of UNIX at Bell Labs for Open-source OS internal use in 1970s Internet servers and services run on UNIX Borrowed best ideas from other Oss Largely hardware-independent Meant for programmers and computer Based on standards experts Meant to run on “mini computers” (C) Doug Bowman, Virginia Tech, 2001- 3 (C) Doug Bowman, Virginia Tech, 2001- 4 Early UNIX History UNIX variants Thompson also rewrote the operating system Two main threads of development: in high level language of his own design Berkeley software distribution (BSD) which he called B. Unix System Laboratories System V Sun: SunOS, Solaris The B language lacked many features and Ritchie decided to design a successor to B GNU: Linux (many flavors) which he called C. SGI: Irix They then rewrote UNIX in the C FreeBSD programming language to aid in portability. Hewlett-Packard: HP-UX Apple: OS X (Darwin) … (C) Doug Bowman, Virginia Tech, 2001- 5 (C) Doug Bowman, Virginia Tech, 2001- 6 1 Layers in the UNIX System UNIX Structure User Interface The kernel is the core of the UNIX Library Interface Users system, controlling the system Standard Utility Programs hardware and performing various low- (shell, editors, compilers, etc.) System Interface calls User Mode level functions. -
Enterprise Computing with Oracle® Solaris for Dummies® Published by John Wiley & Sons, Inc
Enterprise Computing ® with Oracle Solaris by Lawrence C. Miller, CISSP These materials are the copyright of John Wiley & Sons, Inc. and any dissemination, distribution, or unauthorized use is strictly prohibited. Enterprise Computing with Oracle® Solaris For Dummies® Published by John Wiley & Sons, Inc. 111 River St. Hoboken, NJ 07030-5774 www.wiley.com Copyright © 2013 by John Wiley & Sons, Inc., Hoboken, New Jersey No part of this publication may be reproduced, stored in a retrieval system or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, scanning or otherwise, except as permitted under Sections 107 or 108 of the 1976 United States Copyright Act, without the prior written permission of the Publisher. Requests to the Publisher for permission should be addressed to the Permissions Department, John Wiley & Sons, Inc., 111 River Street, Hoboken, NJ 07030, (201) 748-6011, fax (201) 748-6008, or online at http://www.wiley.com/ go/permissions. Trademarks: Wiley, the Wiley logo, For Dummies, the Dummies Man logo, A Reference for the Rest of Us!, The Dummies Way, Dummies.com, Making Everything Easier, and related trade dress are trademarks or registered trademarks of John Wiley & Sons, Inc. and/or its affiliates in the United States and other countries, and may not be used without written permission. Oracle is a registered trademark of Oracle and/or its affiliates. All other trademarks are the property of their respec- tive owners. John Wiley & Sons, Inc., is not associated with any product or vendor mentioned in this book. LIMIT OF LIABILITY/DISCLAIMER OF WARRANTY: THE PUBLISHER AND THE AUTHOR MAKE NO REPRESENTATIONS OR WARRANTIES WITH RESPECT TO THE ACCURACY OR COMPLETE- NESS OF THE CONTENTS OF THIS WORK AND SPECIFICALLY DISCLAIM ALL WARRANTIES, INCLUDING WITHOUT LIMITATION WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE. -
Capitalization and Depreciation Procedures Policy
Capitalization and Depreciation Procedures Policy Capitalization Policies The following capitalization procedures will be applied to fixed assets as defined by the Financial Accounting and Reporting Manual for Higher Educations (FARM). 1. Land a. Capitalized at cost b. Land and structures purchased or donated together will be separated when possible and capitalized separately c. Cost of preparing the land for use will be capitalized, when material, along with the cost of the land 2. Buildings a. Capitalized if - i. $25,000.00 or more and a life expectancy of at least 10 years b. Additions and renovations will be capitalized if - i. Cost of the project is $25,000.00 or more, and ii. The renovation extends the useful life of the facility or modifies and/or upgrades a building, i.e., installation of updated fire alarms, removal of handicapped barriers, etc 3. Improvements other than buildings a. Capitalized if – i. $5,000.00 or more 1. Examples are parking lots, sidewalks, fiber optics, etc. 4. Equipment a. Capitalized if - i. Cost is $5,000 or more 1. The cost of the equipment will include the purchase price, freight cost, insurance while in shipment, installation cost, and other cost incurred to get the equipment ready for actual use ii. Acquired for use in operations and not held for resale iii. Useful life is long-term in nature - It must yield services for five years or more iv. It is not an integral part of another unit 5. Software a. Capitalized if - i. Cost is $5,000.00 or more ii. Useful life is five years or more iii. -
Unix Portability Changes in V8.4
UNIX PORTABILITY CHANGES IN V8.4 Rupesh Shantamurty OpenVMS Engineering 1 © Copyright 2010 Hewlett-Packard Development Company, L.P. AGENDA –Overview of Unix Portability Initiative –Semaphores –UTF-8 support –GNV Update –Q & A 2 © Copyright 2010 Hewlett-Packard Development Company, L.P. UNIX PORTABILITY - OVERVIEW 3 © Copyright 2010 Hewlett-Packard Development Company, L.P. UNIX PORTABILITY INITIATIVE OBJECTIVE GOAL BENEFIT • Ease Porting of • OpenVMS will be • Less OpenVMS applications from like any other development UNIX, LINUX “UNIX flavor” for cost and Open easy application • Enhanced Source to portability application OpenVMS • Cost of porting portfolio on from UNIX to OpenVMS, OpenVMS is including Open comparable to Source porting one applications "flavor" of UNIX • Familiar UNIX- to another style development environment 4 © Copyright 2010 Hewlett-Packard Development Company, L.P. RECENT DEVELOPMENTS & V8.4 Byte Range File Lock APIs Standard Stat Locking Structure SEMAPHORES Symbolic Links POSIX style GNV Updates pathnames statvfs/fstatvfs Pthreads Encryption UTF-8 Routines Shared Objects SUPPORT 5 © Copyright 2010 Hewlett-Packard Development Company, L.P. SEMAPHORES 6 © Copyright 2010 Hewlett-Packard Development Company, L.P. INTRODUCTION - SEMAPHORES Semaphores - Inter Process Communication mechanism for synchronization across multiple processes. –System V Semaphores –POSIX Semaphores 7 © Copyright 2010 Hewlett-Packard Development Company, L.P. NEED FOR SEMAPHORES ON OPENVMS PRE V8.4 SOLUTION IN IMPACT V8.4 • Semaphore API Implements Reduces porting implementation was Semaphore APIs time Reduces cost of not available Applications using porting • Implement emulator semaphores can be Facilitates porting solutions ported without code of other Open Source • Performance issues change applications to due to layered OpenVMS emulator solutions 8 © Copyright 2010 Hewlett-Packard Development Company, L.P. -
Oracle Solaris 11.4 Data Sheet
Oracle Solaris is the trusted business platform that you depend on. Oracle Solaris 11 gives you consistent compatibility, is simple to use and is Key Features Consistent. Simple. Secure. designed to always be secure. • Strongest binary compatibility guarantee in INTRODUCTION the industry Oracle Solaris is designed to deliver a consistent platform to run your enterprise applications. It is the • Simple system and trusted solution for running both modern and legacy applications on the newest system hardware while application lifecycle providing the latest innovations. Our administrative interfaces are simple to use and protect your management business from error prone mistakes that could cost you critical downtime. All our technologies have been engineered for security and compliance from day one; allowing you to protect your business with • REST-based a comprehensive defense in depth strategy that’s easy to apply. administration and deployment CONSISTENT • Efficient enterprise virtualization We’ve been designing the OS for over two decades, always making sure we’ve engineered in features to meet the latest market trends while maintaining backward compatibility. Our Application Binary • Advanced data Guarantee gives you the ability to run your newest and legacy applications on modern infrastructure. management Binary Compatibility Guarantee • Simplified analysis with Observability Tools Oracle Solaris is designed and tested to protect your investment on-premises and in the cloud. The Oracle Solaris Binary Application Guarantee reflects Oracle’s confidence in the compatibility of • Remote administration applications from one release of Oracle Solaris to the next, so you can rest assured your applications will continue to run. The Oracle Solaris Source Code Guarantee assures developers that what they • Optimized for Oracle develop for Oracle SPARC will also compile and run on x86, and vice versa.