Stealthaudit Sensitive Data Discovery

Total Page:16

File Type:pdf, Size:1020Kb

Stealthaudit Sensitive Data Discovery Data Sheet StealthAUDIT Sensitive Data Discovery STEALTHbits’ Sensitive Data Discovery solution locates sensitive information within files of over 380 different file types using a combination of built-in keywords, customizable keywords, and regular expressions. The ability to combine both keywords and regular expressions is instrumental to increasing the efficacy of our scans. For example, identifying a Social Security Number using either keywords or regular expressions alone wouldn’t work. However, when we combine high quality regex with keywords such as “SSN” or “Social Security Number”, we can ensure that the 9-digit number found is, actually, a social security number and not a false positive. Supported Platforms Windows file systems, NetApp, EMC Isilon and Celerra NAS, Samba, SharePoint, SharePoint Online. Supported File Types There are two categories of file types supported by StealthAUDIT: 1. Scan-able Types – Files from which file type, text, and metadata can be extracted 2. Metadata Only Types – Files from which only file type and metadata can be extracted Scan-able File Types File Source Type Supported File Type Archive 7-Zip, ACE, Apple Disk Image, ARJ, Bzip2, ESTSoft ALZip, ESTSoft EGG, ISO Disk Image, Java Archive, LZH, Microsoft Cabinet, Microsoft Office Binder, RedHat Package Manager, Roshal Archive, Roshal Archive( Multi-part), Self-extracting .exe, StuffIt, StuffIt Self Extracting Archive, StuffIt X, GNU Zip, UNIX cpio, UNIX Tar, Zip Database dBase file, dBase III file, Microsoft Access file, Paradox Database File Email & Messaging Apple Mail, Encoded mail message, Endora, Microsoft Outlook, Microsoft Outlook Express, Microsoft Outlook Forms Template, Microsoft Outlook, Sendmail “mbox”, Thunderbird Other ASCII Text, ANSI Text, Apple Executable, BIN HEX Encoded, BitTorrent Metafile, DICOM Image, HTML, IBM DCA, Java Class, Linux Executable and Linkable Format, Log File, Microsoft HTML Help, Microsoft OneNote, Microsoft OneNote TOC, Microsoft Project, Microsoft Windows DLL, Microsoft Windows Executable, Microsoft Win- dows Installer, Microsoft Windows Shortcut, Open Access II (OAII), Rich Text Format, SGML Text, Source, Transcript , Unicode UTF8, UTF16, UCS2, Uniplex, vCard, Windows Enhanced Meta File, Windows Meta File, XML Identify Threats. Secure data. Reduce risk. 1 Presentation IBM Lotus Symphony Presentation, LibreOffice Presentation, Microsoft PowerPoint, OpenOffice Impress, StarOffice Impress3 Spreadsheet Comma Separated Values, Framework Spreadsheet, IBM Lotus Symphony Spread- sheet, LibreOffice Spreadsheet, Lotus 1-2-3, Microsoft Excel, Microsoft Works SS for DOS, Microsoft Works SS for Windows, OpenOffice Calc 3, StarOffice Calc Word Processing & Gen- Adobe PDF, Adobe PostScript, Ami Pro for Windows, Framework WP, Hangul v3 eral Office and >v3, IBM DCA/FFT, IBM DisplayWrite, IBM Lotus Symphony Document, Just- Systems Ichitaro, LibreOffice Document, Lotus Manuscript, Lotus Notes, Lotus WordPro, Mass 11, Microsoft Publisher, Microsoft Word for DOS, QuarkXpress, Microsoft Word, MultiMate, MultiMate Advantage, Naver Word, OpenOffice Writer, Professional Write for DOS, Professional Wrote Plus for Windows, Q&A Write, Quick- Books Backup, QuickBooks for Windows, StarOffice Writer, TrueType Font, Wang IWP, Wang WP Plus, Windows Write, WinWord, WordPerfect for DOS, WordPerfect for Windows, Wordstar 2000 for DOS, Wordstar for DOS, Wordstar for Windows, Xy- WRITE Metadata Only File Types File Type Supported Document Format Multimedia 3GP, Adobe Flash, Adobe Flash Video, Audio Video Interleave(AVI), DVD Information File, DVD Video Object, Microsoft Windows Movie Maker, Musical Instrument Digital Interface, MPEG Video, MPEG-1 Audio Layer 3, MPEG-4 Video, OGG FLAC Audio, OGG Vorbis Audio, Quick Time, Real Media, Waveform Audio File Format, Win- dows Media Audio, Windows Media Video Raster Image Encapsulated PostScript, Graphics Interchange Format (GIF), Joint Photographic Experts Group (JPEG), Microsoft Document Imaging, Microsoft Windows Bitmap 1, PCX1, Portable Network Graphic (PNG), Progressive JPEG, Tagged Image Format File (TIFF) Vector Image Adobe Illustrator, Adobe InDesign, Adobe Photoshop, AutoCAD Drawing, AutoCAD Drawing Exchange, Corel Draw Image, IntergraphMicrostation CAD, MathCAD, Mi- crosoft XPS, Microsoft Visio STEALTHbits Technologies, Inc. 200 Central Avenue ©2015 STEALTHbits Technologies, Inc. | STEALTHbits is a registered trademark of STEALTHbits Technologies, Inc. All other product and company names are property of their respective Hawthorne, NJ 07506 owners. All rights reserved. DS-SASDD-1215 P: 1.201.447.9300 | F: 1.201.447.1818 [email protected] | [email protected] www.stealthbits.com Identify Threats. Secure data. Reduce risk. 2 .
Recommended publications
  • Non-Binary Analysis
    The Art of Mac Malware: Analysis p. wardle (The Art of Mac Malware) Volume 1: Analysis Chapter 0x5: Non-Binary Analysis Note: This book is a work in progress. You are encouraged to directly comment on these pages ...suggesting edits, corrections, and/or additional content! To comment, simply highlight any content, then click the icon which appears (to the right on the document’s border). 1 The Art of Mac Malware: Analysis p. wardle Content made possible by our Friends of Objective-See: ​ ​ Airo SmugMug Guardian Firewall SecureMac iVerify Halo Privacy In the previous chapter, we showed how the file utility [1] can be used to effectively ​ ​ identify a sample’s file type. File type identification is important as the majority of static analysis tools are file type specific. Now, let’s look at various file types one commonly encounters while analyzing Mac malware. As noted, some file types (such as disk images and packages) are simply the malware’s “distribution packaging”. For these file types, the goal is to extract the malicious contents (often the malware’s installer). Of course, Mac malware itself comes in various file formats, such as scripts and binaries. For each file type, we’ll briefly discuss its purpose, as well as highlight static analysis tools that can be used to analyze the file format. Note: This chapter focuses on the analysis of non-binary file formats (such as scripts). ​ ​ Subsequent chapters will dive into macOS’s binary file format (Mach-O), as well as discuss both analysis tools and techniques. 2 The Art of Mac Malware: Analysis p.
    [Show full text]
  • Python Default File Format for Download Download Files with Progress in Python
    python default file format for download Download files with progress in Python. This is a coding tip article. I will show you how to download files with progress in Python. The sauce here is to make use of the wget module. First, install the module into the environment. The wget module is pretty straight-forward, only one function to access, wget.download() . Let say we want to download this file http://download.geonames.org/export/zip/US.zip, the implementation will be following: The output will look like this: As you can see, it prints out the progress bar for us to know the progress of downloading, with current bytes retrieved with total bytes. The s econd parameter is to set output filename or directory for output file. There is another parameter, bar=callback(current, total, width=80) . This is to define how the progress bar is rendered to output screen. Canonical specification. The canonical version of the wheel format specification is now maintained at https://packaging.python.org/specifications/binary-distribution-format/ . This may contain amendments relative to this PEP. Abstract. This PEP describes a built-package format for Python called "wheel". A wheel is a ZIP-format archive with a specially formatted file name and the .whl extension. It contains a single distribution nearly as it would be installed according to PEP 376 with a particular installation scheme. Although a specialized installer is recommended, a wheel file may be installed by simply unpacking into site-packages with the standard 'unzip' tool while preserving enough information to spread its contents out onto their final paths at any later time.
    [Show full text]
  • Getting Started with Libreoffice 3.4 Copyright
    Getting Started with LibreOffice 3.4 Copyright This document is Copyright © 2010–2012 by its contributors as listed below. You may distribute it and/or modify it under the terms of either the GNU General Public License (http://www.gnu.org/licenses/gpl.html), version 3 or later, or the Creative Commons Attribution License (http://creativecommons.org/licenses/by/3.0/), version 3.0 or later. Contributors Jean Hollis Weber Jeremy Cartwright Ron Faile Jr. Martin Fox Dan Lewis David Michel Andrew Pitonyak Hazel Russman Peter Schofield John A Smith Laurent Balland-Poirier Cover art: Drew Jensen Christoph Noack Klaus-Jürgen Weghorn Jean Hollis Weber Acknowledgements This book is adapted and updated from Getting Started with OpenOffice.org 3.3. The contributors to that book are listed on page 13. Feedback Please direct any comments or suggestions about this document to: [email protected] Publication date and software version Published 10 September 2012. Based on LibreOffice 3.5.6. Documentation for LibreOffice is available at http://www.libreoffice.org/get-help/documentation Contents Copyright..................................................................................................................................... 2 Note for Mac users...................................................................................................................... 8 Preface.................................................................................................................................. 9 Who is this book for?................................................................................................................
    [Show full text]
  • Background Information History, Licensing, and File Formats Copyright This Document Is Copyright © 2008 by Its Contributors As Listed in the Section Titled Authors
    Getting Started Guide Appendix B Background Information History, licensing, and file formats Copyright This document is Copyright © 2008 by its contributors as listed in the section titled Authors. You may distribute it and/or modify it under the terms of either the GNU General Public License, version 3 or later, or the Creative Commons Attribution License, version 3.0 or later. All trademarks within this guide belong to their legitimate owners. Authors Jean Hollis Weber Feedback Please direct any comments or suggestions about this document to: [email protected] Acknowledgments This Appendix includes material written by Richard Barnes and others for Chapter 1 of Getting Started with OpenOffice.org 2.x. Publication date and software version Published 13 October 2008. Based on OpenOffice.org 3.0. You can download an editable version of this document from http://oooauthors.org/en/authors/userguide3/published/ Contents Introduction...........................................................................................4 A short history of OpenOffice.org..........................................................4 The OpenOffice.org community.............................................................4 How is OpenOffice.org licensed?...........................................................5 What is “open source”?..........................................................................5 What is OpenDocument?........................................................................6 File formats OOo can open.....................................................................6
    [Show full text]
  • Docuarchive Product Sheet
    DocuArchive Product Sheet Contents 1 What this document contains ............................................................................................... 3 2 DocuArchive Server components ........................................................................................ 3 2.1 DocuArchive ArchiveServer ..................................................................................................... 3 2.1.1 Hardware and software requirements ...................................................................................... 3 2.1.2 Runtime environment ............................................................................................................... 3 2.1.3 Supported storage technologies .............................................................................................. 4 2.1.4 Quantitative characteristics ...................................................................................................... 5 2.2 DocuArchive MediaServer ....................................................................................................... 6 2.2.1 Runtime requirements .............................................................................................................. 6 2.2.2 Hardware and software requirements ...................................................................................... 6 2.3 DocuArchive DBServer ............................................................................................................ 6 2.3.1 Hardware and software requirements .....................................................................................
    [Show full text]
  • OPENOFFICE.ORG VS MICROSOFT OFFICE 1 De35
    OPENOFFICE.ORG VS MICROSOFT OFFICE 1 de35. O PENOFFICE.ORG VS MICROSOFT OFFICE Índice Índice.....................................................................................................................................1. Introducción...........................................................................................................................2. Suites ofimáticas..........................................................................................................2. Composición de una suite ofimática............................................................................4. OpenOffice.org vs Microsoft Office.....................................................................................7. Microsoft Office..........................................................................................................7. OpenOffice.org............................................................................................................9. Análisis, ventajas y comparación...............................................................................11. Procesador de textos.......................................................................................11. Conclusión..........................................................................................12. Hoja de cálculo...............................................................................................13. Conclusión..........................................................................................14. Presentaciones................................................................................................15.
    [Show full text]
  • Financial Statements
    ANNUAL REPORT FLYHT AEROSPACE SOLUTIONS LTD. Table of Contents Commonly used Financial Terms and Aviation Acronyms ..................................................................................................... 3 Letter to Shareholders ............................................................................................................................................................. 4 Management Discussion & Analysis ....................................................................................................................................... 5 Non-GAAP Financial Measures .......................................................................................................................................... 5 Forward-Looking Statements .............................................................................................................................................. 5 FLYHT Overview ................................................................................................................................................................. 6 Trends and Economic Factors .......................................................................................................................................... 11 Environmental, Social and Corporate Governance .......................................................................................................... 13 2020 Contracts, Achievements and Activities .................................................................................................................
    [Show full text]
  • GNU CPIO GNU Cpio 2.5 June 2002
    GNU CPIO GNU cpio 2.5 June 2002 by Robert Carleton Copyright c 1995, 2001, 2002 Free Software Foundation, Inc. This is the first edition of the GNU cpio documentation, and is consistent with GNU cpio 2.5. Published by the Free Software Foundation 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the con- ditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Permission is granted to copy and distribute translations of this manual into another lan- guage, under the above conditions for modified versions, except that this permission notice may be stated in a translation approved by the Free Software Foundation. Chapter 2: Tutorial 1 1 Introduction GNU cpio copies files into or out of a cpio or tar archive, The archive can be another file on the disk, a magnetic tape, or a pipe. GNU cpio supports the following archive formats: binary, old ASCII, new ASCII, crc, HPUX binary, HPUX old ASCII, old tar, and POSIX.1 tar. The tar format is provided for compatability with the tar program. By default, cpio creates binary format archives, for compatibility with older cpio programs. When extracting from archives, cpio automatically recognizes which kind of archive it is reading and can read archives created on machines with a different byte-order.
    [Show full text]
  • List of Word Processors (Page 1 of 2) Bob Hawes Copied This List From
    List of Word Processors (Page 1 of 2) Bob Hawes copied this list from http://en.wikipedia.org/wiki/List_of_word_processors. He added six additional programs, and relocated the Freeware section so that it directly follows the FOSS section. This way, most of the software on page 1 is free, and most of the software on page 2 is not. Bob then used page 1 as the basis for his April 15, 2011 presentation Free Word Processors. (Note that most of these links go to Wikipedia web pages, but those marked with [WEB] go to non-Wikipedia websites). Free/open source software (FOSS): • AbiWord • Bean • Caligra Words • Document.Editor [WEB] • EZ Word • Feng Office Community Edition • GNU TeXmacs • Groff • JWPce (A Japanese word processor designed for English speakers reading or writing Japanese). • Kword • LibreOffice Writer (A fork of OpenOffice.org) • LyX • NeoOffice [WEB] • Notepad++ (NOT from Microsoft) [WEB] • OpenOffice.org Writer • Ted • TextEdit (Bundled with Mac OS X) • vi and Vim (text editor) Proprietary Software (Freeware): • Atlantis Nova • Baraha (Free Indian Language Software) • IBM Lotus Symphony • Jarte • Kingsoft Office Personal Edition • Madhyam • Qjot • TED Notepad • Softmaker/Textmaker [WEB] • PolyEdit Lite [WEB] • Rough Draft [WEB] Proprietary Software (Commercial): • Apple iWork (Mac) • Apple Pages (Mac) • Applix Word (Linux) • Atlantis Word Processor (Windows) • Altsoft Xml2PDF (Windows) List of Word Processors (Page 2 of 2) • Final Draft (Screenplay/Teleplay word processor) • FrameMaker • Gobe Productive Word Processor • Han/Gul
    [Show full text]
  • Microsoft Exchange 2007 Journaling Guide
    Microsoft Exchange 2007 Journaling Guide Digital Archives Updated on 12/9/2010 Document Information Microsoft Exchange 2007 Journaling Guide Published August, 2008 Iron Mountain Support Information U.S. 1.800.888.2774 [email protected] Copyright © 2008 Iron Mountain Incorporated. All Rights Reserved. Trademarks Iron Mountain and the design of the mountain are registered trademarks of Iron Mountain Incorporated. All other trademarks and registered trademarks are the property of their respective owners. Entities under license agreement: Please consult the Iron Mountain & Affiliates Copyright Notices by Country. Confidentiality CONFIDENTIAL AND PROPRIETARY INFORMATION OF IRON MOUNTAIN. The information set forth herein represents the confidential and proprietary information of Iron Mountain. Such information shall only be used for the express purpose authorized by Iron Mountain and shall not be published, communicated, disclosed or divulged to any person, firm, corporation or legal entity, directly or indirectly, or to any third person without the prior written consent of Iron Mountain. Disclaimer While Iron Mountain has made every effort to ensure the accuracy and completeness of this document, it assumes no responsibility for the consequences to users of any errors that may be contained herein. The information in this document is subject to change without notice and should not be considered a commitment by Iron Mountain. Iron Mountain Incorporated 745 Atlantic Avenue Boston, MA 02111 +1.800.934.0956 www.ironmountain.com/digital
    [Show full text]
  • Conda-Build Documentation Release 3.21.5+15.G174ed200.Dirty
    conda-build Documentation Release 3.21.5+15.g174ed200.dirty Anaconda, Inc. Sep 27, 2021 CONTENTS 1 Installing and updating conda-build3 2 Concepts 5 3 User guide 17 4 Resources 49 5 Release notes 115 Index 127 i ii conda-build Documentation, Release 3.21.5+15.g174ed200.dirty Conda-build contains commands and tools to use conda to build your own packages. It also provides helpful tools to constrain or pin versions in recipes. Building a conda package requires installing conda-build and creating a conda recipe. You then use the conda build command to build the conda package from the conda recipe. You can build conda packages from a variety of source code projects, most notably Python. For help packing a Python project, see the Setuptools documentation. OPTIONAL: If you are planning to upload your packages to Anaconda Cloud, you will need an Anaconda Cloud account and client. CONTENTS 1 conda-build Documentation, Release 3.21.5+15.g174ed200.dirty 2 CONTENTS CHAPTER ONE INSTALLING AND UPDATING CONDA-BUILD To enable building conda packages: • install conda • install conda-build • update conda and conda-build 1.1 Installing conda-build To install conda-build, in your terminal window or an Anaconda Prompt, run: conda install conda-build 1.2 Updating conda and conda-build Keep your versions of conda and conda-build up to date to take advantage of bug fixes and new features. To update conda and conda-build, in your terminal window or an Anaconda Prompt, run: conda update conda conda update conda-build For release notes, see the conda-build GitHub page.
    [Show full text]
  • Open Source and Other Options to Traditional Productivity Software
    em • it insight Open Source and Other Options to Traditional Productivity Software Before most of us had PCs, I used Lotus Symphony, whose spreadsheet module became Lotus 1-2-3. Today, it’s hard to imagine life without spreadsheet, word by Jill Gilbert processor, and presentation software installed on our computers and laptops. More and more organizations are entertaining the idea of open source and other Jill Barson Gilbert, QEP, alternatives to traditional office software. Some options are online, on-demand is president of Lexicon Systems, LLC. E-mail: “Cloud” applications, something unheard of 10 years ago. jbgilbert@lexicon- systems.com. Open Source and Free Software and communities of developers available to offer Open source software is computer software for advice and technical support. Many IT organiza- which the source code is freely available. Users tions can use internal resources to customize and have a license to access to the source code to study, support the software. change, and improve the software, rights normally reserved for copyright holders. A computer pro- In general, open source applications are free gram’s source code is the collection of files needed of “bells and whistles,” intuitive, and easy to use. to convert from human-readable form to some Simple menus, icons, and familiar keystrokes (e.g., kind of computer-executable form. The Open Cntl + B for “bold” and Cntl + S for “save”) result Source Initiative (OSI), established in 1998, is the in a quick learning curve. The leading open source steward of the Open Source Definition (OSD) and productivity software has integrated modules with the recognized body for reviewing and approving a common look and feel and navigation.
    [Show full text]