# finbin **Repository Path**: mirrors_threez/finbin ## Basic Information - **Project Name**: finbin - **Description**: find stuff in binary content - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-26 - **Last Updated**: 2026-04-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # FINBIN find stuff in binary content or find keychain files. ## Install ```sh go get github.com/threez/finbin/cmd/finbin go get github.com/threez/finbin/cmd/finkc ``` ## Usage finkc Finds mac os keychain files. All data will be stored with finding location into the provided dir. The name of the file is `file-.keychain` offset is the byte offset of the match. ```sh $ finkc -file /dev/sda Found file-1231231223.keychain (55018 to 55038 size 20.00B) ``` ## Usage finbin The pattern will be used to search for the content. Size is the size of data to extract before **and** after the location. All data will be stored with finding location into the provided dir. The name of the file is `file-` offset is the byte offset of the match. ```sh $ finbin -file /dev/sda -pattern "kych\x00|SQLite format 3\x00|ACKeychainItemVersion" -size 10B -dir found Found file-1231231223 (55018 to 55038 size 20.00B) ```