mirror of
https://github.com/wader/fq.git
synced 2024-12-23 05:13:30 +03:00
9852f56b74
What it can do: - Decodes records and most standard messages and extensions. - Decryptes records and reassemples application data stream if a keylog is provided and the cipher suite is supported. - Supports most recommended and used ciphers and a bunch of older ones. What it can't do: - SSL v3 maybe supported, is similar to TLS 1.0, not tested. - Decryption and renegotiation/cipher change. - Record defragmentation not supported, seems rare over TCP. - TLS 1.3 - SSL v2 but v2 compat header is supported. - Some key exchange messages not decoded yet Decryption code is heavly based on golang crypto/tls and zmap/zcrypto. Will be base for decoding http2 and other TLS based on protocols. Fixes #587
49 lines
956 B
YAML
49 lines
956 B
YAML
linters:
|
|
enable:
|
|
- asciicheck
|
|
- bodyclose
|
|
- durationcheck
|
|
- errname
|
|
- errorlint
|
|
- exhaustive
|
|
- exportloopref
|
|
- forcetypeassert
|
|
- goimports
|
|
- gosec
|
|
- makezero
|
|
- misspell
|
|
- nakedret
|
|
- nilerr
|
|
- noctx
|
|
- nolintlint
|
|
- nosprintfhostport
|
|
- predeclared
|
|
- revive
|
|
- tagliatelle
|
|
- unconvert
|
|
- unparam
|
|
- wastedassign
|
|
|
|
linters-settings:
|
|
exhaustive:
|
|
default-signifies-exhaustive: true
|
|
gosec:
|
|
excludes:
|
|
- G401
|
|
- G501
|
|
misspell:
|
|
ignore-words:
|
|
# elf RELA
|
|
- rela
|
|
- equalisation
|
|
- synchronisation
|
|
|
|
run:
|
|
timeout: 5m
|
|
skip-dirs:
|
|
# allow md5
|
|
- dev
|
|
- doc
|
|
# ignore warnings in code from crypto/tls and zmap/zcrypto
|
|
- format/tls/tlsdecrypt
|