New formula: bulk_extractor
bulk_extractor is a C++ program that scans a disk image (or any other file) and extracts useful information—without parsing the file system. It is like a combination of "strings" and "grep" with a whole bunch of useful patterns, including domain names, email addresses, etc. bulk_extractor will also perform a histogram analysis on the resulting extracted features. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
cc7d1b887f
commit
8f3f232440
1 changed files with 16 additions and 0 deletions
16
Formula/bulk_extractor.rb
Normal file
16
Formula/bulk_extractor.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
require 'formula'
|
||||
|
||||
class BulkExtractor < Formula
|
||||
url 'http://afflib.org/downloads/bulk_extractor-0.7.18.tar.gz'
|
||||
homepage 'http://afflib.org/software/bulk_extractor'
|
||||
md5 '680ee243ca04d23b1059e972c53d59ce'
|
||||
|
||||
depends_on 'afflib' => :optional
|
||||
depends_on 'libewf' => :optional
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
||||
"--prefix=#{prefix}"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue