vault / meilisearch / v1.43.1
meilisearch @ v1.43.1
integrity
- size
- 20.3 MiB
- downloaded
- last checked
release notes
Meilisearch v1.43.1 contains a security fix for an authenticated SSRF vulnerability.
No exploitation was found on Meilisearch Cloud. Cloud users are not required to update.
We recommend that self-hosting users upgrade if they allow third parties to configure Meilisearch instances.
We thank Sion Park (@tldhs1144), who reported the issue and suggested a fix, for improving the security of Meilisearch ❤️
download
unix · zip
curl -fL -o v1.43.1.zip https://ratatoskr.space/pkg/meilisearch/v1.43.1.zip
printf '%s %s\n' '2fc44cdfad7162ef04b3bf3d51b64612acf56c930228090626d129e7ddb3baec' 'v1.43.1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meilisearch/v1.43.1.zip"
$out = "v1.43.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "2fc44cdfad7162ef04b3bf3d51b64612acf56c930228090626d129e7ddb3baec") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.43.1.tar.gz https://ratatoskr.space/pkg/meilisearch/v1.43.1.tar.gz
printf '%s %s\n' '33a20ff514c8e8351a40e056dd529ee1dffce31041288568d02a8977e306cb20' 'v1.43.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meilisearch/v1.43.1.tar.gz"
$out = "v1.43.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "33a20ff514c8e8351a40e056dd529ee1dffce31041288568d02a8977e306cb20") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o v1.43.1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.43.1.zip
printf '%s %s\n' '2fc44cdfad7162ef04b3bf3d51b64612acf56c930228090626d129e7ddb3baec' 'v1.43.1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.43.1.zip"
$out = "v1.43.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "2fc44cdfad7162ef04b3bf3d51b64612acf56c930228090626d129e7ddb3baec") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o v1.43.1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.43.1.tar.gz
printf '%s %s\n' '33a20ff514c8e8351a40e056dd529ee1dffce31041288568d02a8977e306cb20' 'v1.43.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.43.1.tar.gz"
$out = "v1.43.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "33a20ff514c8e8351a40e056dd529ee1dffce31041288568d02a8977e306cb20") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| v1.43.1.zip | zip | 20.3 MiB |
blake3-24 86fa2d13abe04c17b0cf927d1a414d26e9a808f0341d1697
sha256 2fc44cdfad7162ef04b3bf3d51b64612acf56c930228090626d129e7ddb3baec
sha1 fa910a2d77ca34318a398598674aa635762dfa8b
|
| v1.43.1.tar.gz | tar.gz | 19.3 MiB |
blake3-24 dba2e0d3937356bbba068471760976da967a7d1d0e5c7618
sha256 33a20ff514c8e8351a40e056dd529ee1dffce31041288568d02a8977e306cb20
sha1 6d5ae024f22a198922f4a6ef38e10ae097e82aeb
|
install
bazel
http_archive(
name = "meilisearch",
urls = ["https://ratatoskr.space/pkg/meilisearch/v1.43.1.tar.gz"],
integrity = "sha256-M6IP9RTI6DUaQOBW3VKe4d/84xBBKIVo0CqJd+MGyyA=",
strip_prefix = "meilisearch-v1.43.1",
)
zig
.url = "https://ratatoskr.space/pkg/meilisearch/v1.43.1.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meilisearch",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.43.1.tar.gz"],
integrity = "sha256-M6IP9RTI6DUaQOBW3VKe4d/84xBBKIVo0CqJd+MGyyA=",
strip_prefix = "meilisearch-v1.43.1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meilisearch/v1.43.1.tar.gz",