├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── go.mod ├── go.sum ├── parser ├── region.go └── tiff │ ├── constants │ ├── datatypes.go │ ├── fieldlookup.go │ └── fieldnames.go │ ├── data.go │ ├── field.go │ ├── header.go │ ├── ifd.go │ ├── offset.go │ └── parser.go ├── payload ├── payload.go └── render.go ├── screenshot.png ├── templates └── index.template.html └── tiffhax.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/go.sum -------------------------------------------------------------------------------- /parser/region.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/parser/region.go -------------------------------------------------------------------------------- /parser/tiff/constants/datatypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/parser/tiff/constants/datatypes.go -------------------------------------------------------------------------------- /parser/tiff/constants/fieldlookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/parser/tiff/constants/fieldlookup.go -------------------------------------------------------------------------------- /parser/tiff/constants/fieldnames.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/parser/tiff/constants/fieldnames.go -------------------------------------------------------------------------------- /parser/tiff/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/parser/tiff/data.go -------------------------------------------------------------------------------- /parser/tiff/field.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/parser/tiff/field.go -------------------------------------------------------------------------------- /parser/tiff/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/parser/tiff/header.go -------------------------------------------------------------------------------- /parser/tiff/ifd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/parser/tiff/ifd.go -------------------------------------------------------------------------------- /parser/tiff/offset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/parser/tiff/offset.go -------------------------------------------------------------------------------- /parser/tiff/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/parser/tiff/parser.go -------------------------------------------------------------------------------- /payload/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/payload/payload.go -------------------------------------------------------------------------------- /payload/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/payload/render.go -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/screenshot.png -------------------------------------------------------------------------------- /templates/index.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/templates/index.template.html -------------------------------------------------------------------------------- /tiffhax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emilyselwood/tiffhax/HEAD/tiffhax.go --------------------------------------------------------------------------------