# Clone project:
git clone https://github.com/rootVIII/queryFS.git
# Build and run:
cd <project root>
go build -o bin/queryfs
./bin/queryfs
# Build binary in ~/go/bin (available in path) and run:
cd <project root>
go install .
queryfs
# Required
-d directory path to start searching from
# Optional (provide at least 1 option)
-s display files/directories containing string
-p display files/directories with matching permissions
-o display files/directories with matching owner:group
# Search /home and all subdirectories for any file or directory path containing text "my_file.txt"
queryfs -d /home -s my_file.txt
# Search entire file-system for any file with 777 permissions
queryfs -d / -p -rwxrwxrwx
# Search entire file-system for any directory with 777 permissions
queryfs -d / -p drwxrwxrwx
# Search /var and all subdirectories for any file with owner/group apache:apache
queryfs -d /var -o apache:apache
# Only print results that have BOTH ".py" in path AND 0755 permissions:
queryfs -d /var -s .py -p -rwxr-xr-x
# Only print results that have ".py" in path, 755 permissions, AND apache:apache owner/group:
queryfs -d /var -s .py -p -rwxr-xr-x -o apache:apache
This project was developed on Ubuntu 18.04.4 LTS