mac_apt | macOS Artifact Parsing Tool | Cybersecurity library

 by   ydkhatri Python Version: v1.5.0-dev License: MIT

kandi X-RAY | mac_apt Summary

kandi X-RAY | mac_apt Summary

mac_apt is a Python library typically used in Security, Cybersecurity applications. mac_apt has no bugs, it has no vulnerabilities, it has a Permissive License and it has low support. However mac_apt build file is not available. You can download it from GitHub.

mac_apt is a DFIR (Digital Forensics and Incident Response) tool to process Mac computer full disk images (or live machines) and extract data/metadata useful for forensic investigation. It is a python based framework, which has plugins to process individual artifacts (such as Safari internet history, Network interfaces, Recently accessed files & volumes, ..). mac_apt now also includes ios_apt, for processing ios images. :heavy_check_mark: Can read Axiom created targeted collection zip files :heavy_check_mark: ios_apt can read GrayKey extracted file system :heavy_check_mark: Can read RECON created .sparseimage files :heavy_check_mark: Support for macOS Big Sur Sealed volumes (11.0) :heavy_check_mark: Introducing ios_apt for processing iOS/ipadOS images :heavy_check_mark: FAST mode :hourglass_flowing_sand: :heavy_check_mark: Encrypted :lock: APFS images can now be processed using password/recovery-key :key: :heavy_check_mark: macOS Catalina (10.15+) separately mounted SYSTEM & DATA volumes now supported :heavy_check_mark: AFF4 images (including macquisition created) are supported.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              mac_apt has a low active ecosystem.
              It has 605 star(s) with 87 fork(s). There are 43 watchers for this library.
              OutlinedDot
              It had no major release in the last 12 months.
              There are 8 open issues and 53 have been closed. On average issues are closed in 51 days. There are 1 open pull requests and 0 closed requests.
              It has a neutral sentiment in the developer community.
              The latest version of mac_apt is v1.5.0-dev

            kandi-Quality Quality

              mac_apt has 0 bugs and 0 code smells.

            kandi-Security Security

              mac_apt has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
              mac_apt code analysis shows 0 unresolved vulnerabilities.
              There are 0 security hotspots that need review.

            kandi-License License

              mac_apt is licensed under the MIT License. This license is Permissive.
              Permissive licenses have the least restrictions, and you can use them in most projects.

            kandi-Reuse Reuse

              mac_apt releases are available to install and integrate.
              mac_apt has no build file. You will be need to create the build yourself to build the component from source.
              mac_apt saves you 9600 person hours of effort in developing the same functionality from scratch.
              It has 21199 lines of code, 1157 functions and 76 files.
              It has high code complexity. Code complexity directly impacts maintainability of the code.

            Top functions reviewed by kandi - BETA

            kandi has reviewed mac_apt and discovered the below as its top functions. This is intended to give you an instant insight into mac_apt implemented functionality, and help decide if they suit your requirements.
            • Start startup process
            • Processes the Mac OS version
            • Get Mac OS version from plist
            • Write the MacOS information
            • Gets the application details
            • Checks if the given path exists
            • Builds the full path
            • Retrieves application group details
            • Start a standalone plugin
            • Reads volume super block
            • Create a new subscription
            • Reads the system version
            • Reads a CSS file
            • Decompress trace_file to out_file
            • Import plugins
            • Read data from the uncompressed buffer
            • Gets the user info
            • Converts the TOC into a bytes object
            • Start WiFi devices
            • Parse volumes in an apfs container
            • Retrieves the user profiles
            • Find macos partition in apfs container
            • Parse the traceV3 file
            • Decrypts the keybag
            • Read a plist file
            • Retrieves the domain profiles
            Get all kandi verified functions for this library.

            mac_apt Key Features

            No Key Features are available at this moment for mac_apt.

            mac_apt Examples and Code Snippets

            No Code Snippets are available at this moment for mac_apt.

            Community Discussions

            QUESTION

            hardware based password manager integration with device
            Asked 2021-Apr-28 at 12:48

            I am aiming to build a hardware based password manager that will store credentials like -username and passwords- externally, right now I am searching about it but I am having trouble in identifying that how will that external device integrate with browsers and websites when connected to provide the credentials stored in it. I mean what technique is used to integrate the hardware password managers to the device or browser.

            I would appreciate any sort of help and guidance from your side, Thanks!

            ...

            ANSWER

            Answered 2021-Apr-28 at 12:48

            Usually they inject passwords using a HID device acting as a keyboard. Check out the OnlyKey as an example.

            The way these work is by injecting/typing username and password based on pressing a hardware button against which you have stored the relevant credentials. There is also the option to complete MFA by storing an OTP token. Some will act like any other password manager by parsing the website URL against what is stored, but I guess this opens an attack surface when feeding data back to the device.

            -- BVS

            Source https://stackoverflow.com/questions/67290550

            QUESTION

            What does "assumptions" refer to when writing a pentest report?
            Asked 2021-Apr-16 at 15:25

            I have to write the "assumptions" part of a pentest report and I am having trouble understanding what I should write. I checked multiple pentest reports (from https://github.com/juliocesarfort/public-pentesting-reports) but none of them had this paragraph.
            Also I found this explanation "In case there are some assumptions that the pen-tester considers before or during the test, the assumptions need to be clearly shown in the report. Providing the assumption will help the report audiences to understand why penetration testing followed a specific direction.", but still what I do have in mind it is more suited for "attack narative".
            Can you provide me a small example (for one action, situation) so I can see exactly how it should be written?

            ...

            ANSWER

            Answered 2021-Apr-16 at 15:25

            I would think the "assumptions" paragraph and the "Attack narrative" paragraph are somehow overlapping. I would use the "Assumptions" paragraph to state a couple of high level decisions made before starting the attack, with whatever little information the pentester would have on the attack. I would expand on the tools and techniques used in the "Attack narrative" paragraph

            For example an assumption could be: "The pentester is carrying on the exercise against the infrastructure of a soho company with less than 5 people It is common for soho companies to use consumer networking equipment that is usually unsecure, and left configured as defualt. For this reason the attacker focused on scanning for http and ssh using a database of vendors default username and passwords"

            Source https://stackoverflow.com/questions/67126985

            QUESTION

            Is there a way to use a particular C function/symbol as output by nm
            Asked 2021-Mar-10 at 23:13

            I'm trying to analyse a compiled file for cybersec learning purposes and want to use a particular function.

            Here is the output of nm --defined-only ./compiled_file:

            ...

            ANSWER

            Answered 2021-Mar-09 at 12:54

            Yes, it is possible. The point of having exported symbols in shared libraries is to be able to use them - after all. In C, you can do this either by linking the library to the application (not really an option for python), or runtime loading the library and finding the required symbol (on linux: dlopen, dlsym). The manpage example shows how to do this in C.

            Source https://stackoverflow.com/questions/66547182

            QUESTION

            How to allow XML, JSON and CSV files to be uploaded when CSP is set in the webpage
            Asked 2020-Nov-04 at 19:09

            Currently, I have set the following CSP header in the HTML file of my webpage -

            ...

            ANSWER

            Answered 2020-Nov-04 at 19:09

            The issue was caused and fixed as follows -

            The button that takes XML file as input in the HTML form has an inline event handler, which the CSP Policy was blocking, thereby blocking the upload. I moved this inline event handler to an external function and called the function. This fixed the issue and CSP is no longer blocking the function.

            Source https://stackoverflow.com/questions/64421818

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install mac_apt

            You can download it from GitHub.
            You can use mac_apt like any standard Python library. You will need to make sure that you have a development environment consisting of a Python distribution including header files, a compiler, pip, and git installed. Make sure that your pip, setuptools, and wheel are up to date. When using pip it is generally recommended to install packages in a virtual environment to avoid changes to the system.

            Support

            Feel free to send comments and feedback to yogesh@swiftforensics.com, or open an issue.
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            CLONE
          • HTTPS

            https://github.com/ydkhatri/mac_apt.git

          • CLI

            gh repo clone ydkhatri/mac_apt

          • sshUrl

            git@github.com:ydkhatri/mac_apt.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link

            Explore Related Topics

            Consider Popular Cybersecurity Libraries

            Try Top Libraries by ydkhatri

            MacForensics

            by ydkhatriPython

            UnifiedLogReader

            by ydkhatriPython

            OneDrive

            by ydkhatriPython

            spotlight_parser

            by ydkhatriPython

            nska_deserialize

            by ydkhatriPython