Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 970 Bytes

File metadata and controls

41 lines (27 loc) · 970 Bytes

ffind

ffind is a tool to find files of interest on a compromised host during a penetration test

image

Installation

With Go

go install -v github.com/bin3xish477/ffind@latest

With Git

git clone https://github.com/bin3xish477/ffind.git
cd ffind
go build -ldflags '-w -s' *.go

Usage

ffind -p /
ffind

Enable ANSI Color Escape Sequence in PowerShell

By default, PowerShell is not set to escape ANSI color so the output of ffind will look weird. To fix this, open a PowerShell prompt and run the following command to enable support:

Set-ItemProperty HKCU:\Console VirtualTerminalLevel -Type DWORD 1

Then, open up a new PowerShell prompt, and you should be good to go:

image