Files
sif/docs
Tigah 21c1d1c8a5 feat(modules): implement size matcher and kv extractor (#140)
the engine declared size matchers and kv extractors but the executor
dropped them (size fell through to the default case, kv was never read).
wire both: size matches the response body length in bytes, kv records
every response header as a key-value pair namespaced by the extractor
name.

this unblocks the headers.go conversion in #52, which needs a full header
dump the known-set regex extractors cannot reproduce; the headers.yaml
module and the headers.go removal are a separate follow-up. the extractor
is named kv to match docs/modules.md (the struct comment said kval). the
declared json extractor stays deferred since it needs a json-path
dependency and a path-syntax decision.

refs #52
2026-06-22 16:47:25 -07:00
..

sif documentation

welcome to the sif documentation. sif is a modular pentesting toolkit designed to be fast, concurrent, and extensible.

table of contents

getting started

features

  • scans - built-in security scans
  • modules - yaml module system and custom modules

reference

contributing


# install
git clone https://github.com/dropalldatabases/sif.git && cd sif && make

# basic scan
./sif -u https://example.com

# list modules
./sif -lm

# run all modules
./sif -u https://example.com -am

# help
./sif -h

support