Fully Automated Static Analysis of Fedora Packages
|
|
|
- Britney Merritt
- 10 years ago
- Views:
Transcription
1 Fully Automated Static Analysis of Fedora Packages Red Hat Kamil Dudka August 9th, 2014 Abstract There are static analysis tools (such as Clang or Cppcheck) that are able to find bugs in Fedora packages before they are noticed by users or even Security Response Team. We are announcing an easy to use tool csmock that makes it possible to run static analysis tools on RPM packages fully automatically. csmock is given an SRPM and simply returns a list of defects found in the package.
2 Definition of Static Analysis Definition of Static Analysis Static analysis is an analysis of code without executing it. Already done by the compiler (optimization, warnings,... ). This presentation focuses on using static analysis tools to find bugs in Fedora packages. 1 / 13
3 Agenda 1 Definition of Static Analysis 2 Static Analyzers for C/C++ Available in Fedora 3 Fully Automated Static Analysis of Fedora Packages
4 Static Analyzers for C/C++ Available in Fedora Analyzers of C/C++ Code Available in Fedora Compilers: GCC produces various kinds of useful warnings Analyzers applicable on vast majority of Fedora Packages: Cppcheck based on pattern matching Clang static checkers built on top of LLVM Analyzers with limited scope of use: sparse used mainly by kernel developers... Research prototypes with limited level of automation: frama-c uses CIL as the parser (written in OCaml)... 2 / 13
5 Static Analyzers for C/C++ Available in Fedora GCC Warnings Taken seriously by upstream developers (of some projects), but usually ignored by Fedora package maintainers. Enforcing -Werror=... to get them fixed is a good way to introduce new bugs (see GCC warnings are difficult to process in an automated way: GCC does not use absolute paths in diagnostic messages. The format of diagnostic messages is not parser-friendly. Multi-line GCC warnings are difficult to collect consistently when building in parallel. 3 / 13
6 Static Analyzers for C/C++ Available in Fedora Cppcheck Based on pattern matching (very lightweight static analysis). Can be run on a directory with sources, but then it: tries several combinations of -D flags, ignores missing include files in this mode, causes false positives and false negatives (loss of precision), reports bugs in unrelated code (e.g. #ifdef WIN32 sections), there is no easy way to predict the time needed for the analysis (e.g. to limit the time per compilation unit). Can be run per compilation unit with correct -D and -I flags. Not so easy to automate when analyzing arbitrary SRPMs. cscppc is a new package in Fedora that runs Cppcheck fully transparently during the build (in parallel with the compiler). 4 / 13
7 Static Analyzers for C/C++ Available in Fedora Clang Analyzer A set of static analysis-based checkers built on top of LLVM (Low Level Virtual Machine). There is a Perl script named scan-build that runs Clang during the build somewhat transparently: scan-build rpmbuild --rebuild krb fc20.src.rpm Uses HTML or plist format for the results. Known to fail when analyzing certain packages: krb5 (because it overrides $CC by the %{ cc} RPM macro) pidgin (because libtool did not recognize the faked compiler)... 5 / 13
8 Static Analyzers for C/C++ Available in Fedora Static Analyzers in Fedora Summary There are ready to use static analyzers in Fedora, which provide useful results but there is no common interface to run them,... and there is no common format for the results. 6 / 13
9 Agenda 1 Definition of Static Analysis 2 Static Analyzers for C/C++ Available in Fedora 3 Fully Automated Static Analysis of Fedora Packages
10 Fully Automated Static Analysis of Fedora Packages Fully Automated Static Analysis of SRPMs How to easily analyze a given SRPM by Cppcheck and Clang? csmock -t cppcheck,clang krb fc20.src.rpm How to get csmock running on Fedora? sudo yum install csmock sudo gpasswd -a $USER mock 7 / 13
11 Fully Automated Static Analysis of Fedora Packages Results of Static Analysis (HTML format) krb fc20 List of Defects Error: CLANG_WARNING: [#def1] krb /src/lib/krad/remote.c:118:9: warning: Access to field 'tqh_last' results in a dereference of a null pointer # TAILQ_REMOVE(&req->rr->list, req, list); # ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ krb /src/include/k5-queue.h:547:20: note: expanded from macro 'TAILQ_REMOVE' # (head)->tqh_last = (elm)->field.tqe_prev; \ # ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~ Error: CLANG_WARNING: [#def2] krb /src/lib/rpc/xdr_rec.c:165:9: warning: Potential leak of memory pointed to by 'rstrm' # (void)fprintf(stderr, "xdrrec_create: out of memory\n"); # ^~~~~~~ Error: CPPCHECK_WARNING: [#def3] krb /src/lib/rpc/xdr_rec.c:166: error[memleak]: Memory leak: rstrm Error: COMPILER_WARNING: [#def4] krb /src/lib/rpc/xdr_rec.c: scope_hint: In function 'xdrrec_getbytes' krb /src/lib/rpc/xdr_rec.c:258:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare] # current = (len < current)? len : current; # ^ 8 / 13
12 Fully Automated Static Analysis of Fedora Packages What else can we do with csmock? Capture GCC warnings (by -t gcc). Change the GCC warning level (by -w[0-2]). Check for downstream-only bugs (by --diff-patches). Analyze upstream tarballs instead of SRPMs (by -c CMD). Get the results in a predictable amount of time (by default). You can easily write plug-ins for additional static analyzers. 9 / 13
13 Fully Automated Static Analysis of Fedora Packages How is csmock implemented? It uses mock (chroot-based tool for building RPMs): to use the same build environment as for production builds, to be able to do destructive changes in the chroot. It uses cswrap (a compiler/analyzer wrapper): to capture the results consistently when building in parallel, to translate relative to absolute paths in GCC output, to transparently add/remove compiler flags, to limit the time spent by analysis per compilation unit. 10 / 13
14 Fully Automated Static Analysis of Fedora Packages Processing the Results of Static Analysis The csdiff Fedora package provides command-line utilities for processing the results: csdiff matches defects introduced by an update csgrep filters the list of defects by various predicates cshtml generates an HTML report from the list of defects 11 / 13
15 Fully Automated Static Analysis of Fedora Packages Future Plans Write plug-ins for additional static analyzers. Support additional languages Python, Java,... Expose csmock as a service hook a task on Taskotron? 12 / 13
16 Fully Automated Static Analysis of Fedora Packages Conclusion There are static analyzers in Fedora that are able to automatically find bugs in our packages. csmock makes it easy to run them on a given SRPM. csdiff utilities can be used to efficiently process the results. These packages are now available in Fedora! 13 / 13
Common Errors in C/C++ Code and Static Analysis
Common Errors in C/C++ Code and Static Analysis Red Hat Ondřej Vašík and Kamil Dudka 2011-02-17 Abstract Overview of common programming mistakes in the C/C++ code, and comparison of a few available static
Applying Clang Static Analyzer to Linux Kernel
Applying Clang Static Analyzer to Linux Kernel 2012/6/7 FUJITSU COMPUTER TECHNOLOGIES LIMITED Hiroo MATSUMOTO 管 理 番 号 1154ka1 Copyright 2012 FUJITSU COMPUTER TECHNOLOGIES LIMITED Abstract Now there are
8.5. <summary>...26 9. Cppcheck addons...27 9.1. Using Cppcheck addons...27 9.1.1. Where to find some Cppcheck addons...27 9.2.
Cppcheck 1.72 Cppcheck 1.72 Table of Contents 1. Introduction...1 2. Getting started...2 2.1. First test...2 2.2. Checking all files in a folder...2 2.3. Excluding a file or folder from checking...2 2.4.
Source Code Review Using Static Analysis Tools
Source Code Review Using Static Analysis Tools July-August 05 Author: Stavros Moiras Supervisor(s): Stefan Lüders Aimilios Tsouvelekakis CERN openlab Summer Student Report 05 Abstract Many teams at CERN,
Red Hat Developer Toolset 1.1
Red Hat Developer Toolset 1.x 1.1 Release Notes 1 Red Hat Developer Toolset 1.1 1.1 Release Notes Release Notes for Red Hat Developer Toolset 1.1 Edition 1 Matt Newsome Red Hat, Inc [email protected]
The C Programming Language course syllabus associate level
TECHNOLOGIES The C Programming Language course syllabus associate level Course description The course fully covers the basics of programming in the C programming language and demonstrates fundamental programming
How to Build an RPM OVERVIEW UNDERSTANDING THE PROCESS OF BUILDING RPMS. Author: Chris Negus Editor: Allison Pranger 09/16/2011
How to Build an RPM Author: Chris Negus Editor: Allison Pranger 09/16/2011 OVERVIEW You have created some software that you want to install on Red Hat Enterprise Linux systems. Now that it is done, the
Introduction to Automated Testing
Introduction to Automated Testing What is Software testing? Examination of a software unit, several integrated software units or an entire software package by running it. execution based on test cases
Red Hat Directory Server 8.0 Release Notes
Red Hat Directory Server 8.0 Release Notes Red Hat Documentation Team Copyright 2008 Red Hat, Inc. Copyright You need to override this in your local ent file Red Hat. This material may only be distributed
Zend Server 4.0 Beta 2 Release Announcement What s new in Zend Server 4.0 Beta 2 Updates and Improvements Resolved Issues Installation Issues
Zend Server 4.0 Beta 2 Release Announcement Thank you for your participation in the Zend Server 4.0 beta program. Your involvement will help us ensure we best address your needs and deliver even higher
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
Oracle Solaris Studio Code Analyzer
Oracle Solaris Studio Code Analyzer The Oracle Solaris Studio Code Analyzer ensures application reliability and security by detecting application vulnerabilities, including memory leaks and memory access
How to Write a Checker in 24 Hours
How to Write a Checker in 24 Hours Clang Static Analyzer Anna Zaks and Jordan Rose Apple Inc. What is this talk about? The Clang Static Analyzer is a bug finding tool It can be extended with custom checkers
Programming Languages CIS 443
Course Objectives Programming Languages CIS 443 0.1 Lexical analysis Syntax Semantics Functional programming Variable lifetime and scoping Parameter passing Object-oriented programming Continuations Exception
Sources: On the Web: Slides will be available on:
C programming Introduction The basics of algorithms Structure of a C code, compilation step Constant, variable type, variable scope Expression and operators: assignment, arithmetic operators, comparison,
Automated build service to facilitate Continuous Delivery
MASTER S THESIS LUND UNIVERSITY 2015 Automated build service to facilitate Continuous Delivery Ture Karlsson Department of Computer Science Faculty of Engineering LTH ISSN 1650-2884 LU-CS-EX 2015-27 Automated
X05. An Overview of Source Code Scanning Tools. Loulwa Salem. Las Vegas, NV. IBM Corporation 2006. IBM System p, AIX 5L & Linux Technical University
X05 An Overview of Source Code Scanning Tools Loulwa Salem Las Vegas, NV Objectives This session will introduce better coding practices and tools available to aid developers in producing more secure code.
Eliminate Memory Errors and Improve Program Stability
Eliminate Memory Errors and Improve Program Stability with Intel Parallel Studio XE Can running one simple tool make a difference? Yes, in many cases. You can find errors that cause complex, intermittent
Hudson Continous Integration Server. Stefan Saasen, [email protected]
Hudson Continous Integration Server Stefan Saasen, [email protected] Continous Integration Software development practice Members of a team integrate their work frequently Each integration is verified by
A Test Suite for Basic CWE Effectiveness. Paul E. Black. [email protected]. http://samate.nist.gov/
A Test Suite for Basic CWE Effectiveness Paul E. Black [email protected] http://samate.nist.gov/ Static Analysis Tool Exposition (SATE V) News l We choose test cases by end of May l Tool output uploaded
CS 253: Intro to Systems Programming
CS 253: Intro to Systems Programming Spring 2014 Amit Jain, Shane Panter, Marissa Schmidt Department of Computer Science College of Engineering Boise State University Logistics Instructor: Amit Jain http://cs.boisestate.edu/~amit
RTI Routing Service. Release Notes
RTI Routing Service Release Notes Version 5.0.0 2012 Real-Time Innovations, Inc. All rights reserved. Printed in U.S.A. First printing. August 2012. Trademarks Real-Time Innovations, RTI, and Connext are
Using RADIUS Agent for Transparent User Identification
Using RADIUS Agent for Transparent User Identification Using RADIUS Agent Web Security Solutions Version 7.7, 7.8 Websense RADIUS Agent works together with the RADIUS server and RADIUS clients in your
Advanced Software Testing
Johan Seland Advanced Software Testing Geilo Winter School 2013 1 Solution Example for the Bowling Game Kata Solution is in the final branch on Github git clone git://github.com/johanseland/bowlinggamekatapy.git
Red Hat Enterprise Linux Rebuild mini-howto
Red Hat Enterprise Linux Rebuild mini-howto Michael Redinger [email protected] This document describes how to build a Linux server based on the SRPMS from Red Hat Enterprise Linux 2.1. Table
MPI-Checker Static Analysis for MPI
MPI-Checker Static Analysis for MPI Alexander Droste, Michael Kuhn, Thomas Ludwig November 15, 2015 Motivation 2 / 39 Why is runtime analysis in HPC challenging? Large amount of resources are used State
Detecting Critical Defects on the Developer s Desktop
Detecting Critical Defects on the Developer s Desktop Seth Hallem CEO Coverity, Inc. Copyright Coverity, Inc. 2006. All Rights Reserved. This publication, in whole or in part, may not be reproduced, stored
NVIDIA CUDA GETTING STARTED GUIDE FOR MAC OS X
NVIDIA CUDA GETTING STARTED GUIDE FOR MAC OS X DU-05348-001_v6.5 August 2014 Installation and Verification on Mac OS X TABLE OF CONTENTS Chapter 1. Introduction...1 1.1. System Requirements... 1 1.2. About
How To Install Acronis Backup & Recovery 11.5 On A Linux Computer
Acronis Backup & Recovery 11.5 Server for Linux Update 2 Installation Guide Copyright Statement Copyright Acronis International GmbH, 2002-2013. All rights reserved. Acronis and Acronis Secure Zone are
RUnit - A Unit Test Framework for R
RUnit - A Unit Test Framework for R Thomas König, Klaus Jünemann, and Matthias Burger Epigenomics AG November 5, 2015 Contents 1 Introduction 2 2 The RUnit package 4 2.1 Test case execution........................
Measuring the Effect of Code Complexity on Static Analysis Results
Measuring the Effect of Code Complexity on Static Analysis Results James Walden, Adam Messer, and Alex Kuhl Department of Computer Science Northern Kentucky University Highland Heights, KY 41099 Abstract.
Introduction to Static Analysis for Assurance
Introduction to Static Analysis for Assurance John Rushby Computer Science Laboratory SRI International Menlo Park CA USA John Rushby Static Analysis for Assurance: 1 Overview What is static analysis?
TOOL EVALUATION REPORT: FORTIFY
TOOL EVALUATION REPORT: FORTIFY Derek D Souza, Yoon Phil Kim, Tim Kral, Tejas Ranade, Somesh Sasalatti ABOUT THE TOOL Background The tool that we have evaluated is the Fortify Source Code Analyzer (Fortify
Linux Distributions. What they are, how they work, which one to choose. [email protected]> +55-11-2132-2327. Avi Alkalay <[email protected].
Linux Distributions What they are, how they work, which one to choose Avi Alkalay +55-11-2132-2327 Linux, Open Standards Consultant IBM Corporation Before You Start...
Using Code Coverage Tools in the Linux Kernel
Using Code Coverage Tools in the Linux Kernel Nigel Hinds Paul Larson Hubertus Franke Marty Ridgeway { nhinds, plars, frankeh, mridge } @ us.ibm.com Defining software reliability is hard enough, let alone
How to build secure Apache Tomcat deployments with RPM.
How to build secure Apache Tomcat deployments with RPM. My security experiences really tie into everyday work. A colleague called me from my last gig and asked how to build a RedHat Package Manager (RPM)
Using Clang to Visualize Large Codebases. Nathan Hawes and Ben Barham Oracle Labs Australia October 2014
Using Clang to Visualize Large Codebases Nathan Hawes and Ben Barham Oracle Labs Australia October 2014 Safe Harbour The following is intended to provide some insight into a line of research in Oracle
Siebel Application Deployment Manager Guide. Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013
Siebel Application Deployment Manager Guide Siebel Innovation Pack 2013 Version 8.1/8.2 September 2013 Copyright 2005, 2013 Oracle and/or its affiliates. All rights reserved. This software and related
Xcode Project Management Guide. (Legacy)
Xcode Project Management Guide (Legacy) Contents Introduction 10 Organization of This Document 10 See Also 11 Part I: Project Organization 12 Overview of an Xcode Project 13 Components of an Xcode Project
Jonathan Worthington Scarborough Linux User Group
Jonathan Worthington Scarborough Linux User Group Introduction What does a Virtual Machine do? Hides away the details of the hardware platform and operating system. Defines a common set of instructions.
C# and Other Languages
C# and Other Languages Rob Miles Department of Computer Science Why do we have lots of Programming Languages? Different developer audiences Different application areas/target platforms Graphics, AI, List
RHadoop Installation Guide for Red Hat Enterprise Linux
RHadoop Installation Guide for Red Hat Enterprise Linux Version 2.0.2 Update 2 Revolution R, Revolution R Enterprise, and Revolution Analytics are trademarks of Revolution Analytics. All other trademarks
Drupal CMS for marketing sites
Drupal CMS for marketing sites Intro Sample sites: End to End flow Folder Structure Project setup Content Folder Data Store (Drupal CMS) Importing/Exporting Content Database Migrations Backend Config Unit
Winning the Battle against Automated Testing. Elena Laskavaia March 2016
Winning the Battle against Automated Testing Elena Laskavaia March 2016 Quality Foundation of Quality People Process Tools Development vs Testing Developers don t test Testers don t develop Testers don
Acronis Backup & Recovery 10 Server for Linux. Installation Guide
Acronis Backup & Recovery 10 Server for Linux Installation Guide Table of contents 1 Before installation...3 1.1 Acronis Backup & Recovery 10 components... 3 1.1.1 Agent for Linux... 3 1.1.2 Management
Improve Fortran Code Quality with Static Analysis
Improve Fortran Code Quality with Static Analysis This document is an introductory tutorial describing how to use static analysis on Fortran code to improve software quality, either by eliminating bugs
This Release Notes document is for F-Secure Linux Security.
==== RELEASE NOTES FOR F-Secure Linux Security 9.20 build 2520 ==== This Release Notes document is for F-Secure Linux Security. This document contains late-breaking information about the product. Please
Encrypted File Transfer - Customer Testing
Encrypted File Transfer - Customer Testing V1.0 David Wickens McKesson CLASSIFICATION McKesson Technical Guidance Documentation: NOT PROTECTIVELY MARKED VERSION 1.0 SCOPE This guidance document is aimed
Selenium An Effective Weapon In The Open Source Armory
Selenium An Effective Weapon In The Open Source Armory Komal Joshi Director: Atlantis Software Limited Anand Ramdeo Head of Quality Assurance: GCAP Media Agenda Introduction to Selenium Selenium IDE Lets
LLVMLinux: Embracing the Dragon
LLVMLinux: Embracing the Dragon Presented by: Behan Webster ( lead) Presentation Date: 2014.08.22 Clang/LLVM LLVM is a Toolchain Toolkit (libraries from which compilers and related technologies can be
Continuous Integration and Automatic Testing for the FLUKA release using Jenkins (and Docker)
Continuous Integration and Automatic Testing for the FLUKA release using Jenkins (and Docker) Vittorio BOCCONE DECTRIS Ltd. 5405 Baden-Daettwil Switzerland www.dectris.com Definitions Continuous Integration
Opening a Command Shell
Opening a Command Shell Win Cmd Line 1 In WinXP, go to the Programs Menu, select Accessories and then Command Prompt. In Win7, go to the All Programs, select Accessories and then Command Prompt. Note you
Týr: a dependent type system for spatial memory safety in LLVM
Týr: a dependent type system for spatial memory safety in LLVM Vítor De Araújo Álvaro Moreira (orientador) Rodrigo Machado (co-orientador) August 13, 2015 Vítor De Araújo Álvaro Moreira (orientador) Týr:
pbuilder Debian Conference 2004
pbuilder Debian Conference 2004 Junichi Uekawa May 2004 1 Introduction pbuilder[1] is a tool that is used for Building Debian packages in a clean environment inside chroot 1. In this paper, the background
Sun Grid Engine Package for OSCAR A Google SoC 2005 Project
Sun Grid Engine Package for OSCAR A Google SoC 2005 Project Babu Sundaram, Barbara Chapman University of Houston Bernard Li, Mark Mayo, Asim Siddiqui, Steven Jones Canada s Michael Smith Genome Sciences
Testing for Security
Testing for Security Kenneth Ingham September 29, 2009 1 Course overview The threat that security breaches present to your products and ultimately your customer base can be significant. This course is
Acronis Backup & Recovery 10 Server for Linux. Update 5. Installation Guide
Acronis Backup & Recovery 10 Server for Linux Update 5 Installation Guide Table of contents 1 Before installation...3 1.1 Acronis Backup & Recovery 10 components... 3 1.1.1 Agent for Linux... 3 1.1.2 Management
How to Write a Simple Makefile
Chapter 1 CHAPTER 1 How to Write a Simple Makefile The mechanics of programming usually follow a fairly simple routine of editing source files, compiling the source into an executable form, and debugging
Novell Linux Management Pack for System Center Operations Manager
User Guide AUTHORIZED DOCUMENTATION Novell Linux Management Pack for System Center Operations Manager 1.0.1 December 8, 2009 www.novell.com Novell Linux Management Pack 1.0.1 for System Center Operations
4PSA DNS Manager 3.7.0. Translator's Manual
4PSA DNS Manager 3.7.0 Translator's Manual For more information about 4PSA DNS Manager, check: http://www.4psa.com Copyrights 2002-2010 Rack-Soft, Inc. Translator's Manual Manual Version 48807.9 at 2010/03/10
Introduction to the. Barracuda Embedded Web-Server
Introduction to the Barracuda Embedded Web-Server This paper covers fundamental concepts of HTTP and how the Barracuda Embedded Web Server can be used in an embedded device. Introduction to HTTP Using
OpenChange overview and current server implementation
OpenChange overview and current server implementation 1 Introduction What is OpenChange? + Open Source implementation of Microsoft Exchange protocols under unix/linux + Exchange server replacement under
Good Software. Lecture 6 GSL Peru 2014
Good Software Lecture 6 GSL Peru 2014 What is Good Software? Low cost Good performance Bug-free, efficient, meets its purpose Easy to code Easy to understand, modular Easy to use Clients are satisfied
Internet Payment Gateway
Internet Payment Gateway Swig API Developer Guide (PHP, Perl and C++) Copyright 2008-2009 FIS Australasia ABN: 069 393 406. All rights reserved. Table of Contents Overview...4 Disclaimer...4 Confidentiality...4
Git Fusion Guide 2015.3. August 2015 Update
Git Fusion Guide 2015.3 August 2015 Update Git Fusion Guide 2015.3 August 2015 Update Copyright 1999-2015 Perforce Software. All rights reserved. Perforce software and documentation is available from http://www.perforce.com/.
TUT19344 Managing RH/CentOS with SUSE Manager
TUT19344 Managing RH/CentOS with SUSE Manager Don Vosburg Systems Engineer [email protected] Gokhan Cetinkaya Systems Engineer [email protected] Agenda SUSE Manager overview SUSE Manager and non-suse
This presentation explains how to monitor memory consumption of DataStage processes during run time.
This presentation explains how to monitor memory consumption of DataStage processes during run time. Page 1 of 9 The objectives of this presentation are to explain why and when it is useful to monitor
HOWTO configure Xinu under Virtual Box
This document describes the steps needed to install and configure Xinu under VirtualBox. When you are finished, you will be able to compile a Xinu image and boot the image in a Virtual Machine. Although
django-cron Documentation
django-cron Documentation Release 0.3.5 Tivix Inc. September 28, 2015 Contents 1 Introduction 3 2 Installation 5 3 Configuration 7 4 Sample Cron Configurations 9 4.1 Retry after failure feature........................................
Apache Thrift and Ruby
Apache Thrift and Ruby By Randy Abernethy In this article, excerpted from The Programmer s Guide to Apache Thrift, we will install Apache Thrift support for Ruby and build a simple Ruby RPC client and
Continuous security audit automation with Spacewalk, Puppet, Mcollective and SCAP
Continuous security audit automation with Spacewalk, Puppet, Mcollective and SCAP Vasileios A. Baousis (Ph.D) Network Applications Team Slide 1 Agenda Introduction Background - SCAP - Puppet &Mcollective
Red Hat Enterprise Linux Update for IBM System z
Red Hat Enterprise Linux Update for IBM System z Alexia Ollagnon, partner manager Red Hat France [email protected] 18 juin 2015 Guide Share IBM 1 Agenda Red Hat, fiche identité et modèle Red Hat & collaboration
How to get Enterprise
How to get Enterprise Software into Fedora Szabad Szoftver Konferencia 2010, Szeged Robert Scheck Robert Scheck Fedora Package Maintainer and Provenpackager Fedora Ambassador and Ambassador Mentor Part
Brakeman and Jenkins: The Duo Detects Defects in Ruby on Rails Code
Brakeman and Jenkins: The Duo Detects Defects in Ruby on Rails Code Justin Collins Tin Zaw AppSec USA September 23, 2011 About Us Justin Collins - @presidentbeef Tin Zaw - @tzaw Our Philosophy: Light Touch
Manual vs. Automated Vulnerability Assessment: ACaseStudy
Manual vs. Automated Vulnerability Assessment: ACaseStudy JamesA.KupschandBartonP.Miller Computer Sciences Department, University of Wisconsin, Madison, WI, USA {kupsch,bart}@cs.wisc.edu Abstract The dream
NETWORK OPERATING SYSTEMS. By: Waqas Ahmed (C.E.O at Treesol)
NETWORK OPERATING SYSTEMS By: Waqas Ahmed (C.E.O at Treesol) Locating, Finding Installing, Upgrading and Deleting Packages SEARCHING To find a program commands where they are: [root@tecmint ~]# which ls
The FDA Forensics Lab, New Tools and Capabilities
U. S. Department of Health and Human Services The FDA Forensics Lab, New Tools and Capabilities Symposium on Static Code Analysis and Complex Medical Devices University of Minnesota July 23, 2009 Static
Review and Exploit Neglected Attack Surface in ios 8. Tielei Wang, Hao Xu, Xiaobo Chen of TEAM PANGU
Review and Exploit Neglected Attack Surface in ios 8 Tielei Wang, Hao Xu, Xiaobo Chen of TEAM PANGU BlackHat 2015 Agenda ios Security Background Review of Attack Surfaces Fuzz More IOKit and MIG System
Developing tests for the KVM autotest framework
Lucas Meneghel Rodrigues [email protected] KVM Forum 2010 August 9, 2010 1 Automated testing Autotest The wonders of virtualization testing 2 How KVM autotest solves the original problem? Features Test structure
Static Analysis. Find the Bug! 15-654: Analysis of Software Artifacts. Jonathan Aldrich. disable interrupts. ERROR: returning with interrupts disabled
Static Analysis 15-654: Analysis of Software Artifacts Jonathan Aldrich 1 Find the Bug! Source: Engler et al., Checking System Rules Using System-Specific, Programmer-Written Compiler Extensions, OSDI
Installing VMware Tools on Clearswift v4 Gateways
Technical Guide Version 2.0 January 2016 Contents 1 Introduction... 3 2 Scope... 3 3 Installation and Setup... 4 3.1 Overview... 4 3.2 Installation... 4 4 Performance Impact... 8 4.1 Overview... 8 4.2
Rebuild Perfume With Python and PyPI
perfwhiz Documentation Release 0.1.0 Cisco Systems, Inc. February 01, 2016 Contents 1 Overview 3 1.1 Heatmap Gallery............................................. 3 1.2 perfwhiz Workflow............................................
VMware Tools Installation Guide For Operating System Specific Packages
VMware Tools Installation Guide For Operating System Specific Packages ESXi 5.0 or later VMware Tools This document supports the version of each product listed and supports all subsequent versions until
Automatic vs. Manual Code Analysis
Automatic vs. Manual Code Analysis 2009-11-17 Ari Kesäniemi Senior Security Architect Nixu Oy [email protected] Copyright The Foundation Permission is granted to copy, distribute and/or modify this
HP Fortify Static Code Analyzer
HP Fortify Static Code Analyzer Software Version 4.10 Installation and Configuration Guide Document Release Date: April 2014 Software Release Date: April 2014 Legal Notices Warranty The only warranties
Open-source Versus Commercial Software: A Quantitative Comparison
Open-source Versus Commercial Software: A Quantitative Comparison Rix Groenboom Reasoning NL BV [email protected] Agenda About Reasoning The Study Inspection Results Analysis Conclusions New
