Skip to content
SEO Records
Choisir la langue : English

The update channel

Release log

Every release ships signed. A manifest per product carries the current version, its issue date and, for each platform, the archive, its size and its SHA-256 hash. The installed module reads this manifest on an administrator's click, and on that alone: it verifies the signature, then the archive's hash, before installing anything.

Verified when this page was built on 16 September 2026: 3 valid signatures, 8 archives matching the stated checksum.

SEO Records

Version 1.10.0

issued on

PlatformArchiveSizeSHA-256 hash
WordPressseorecords-wordpress-1.10.0.zip86 KB16017df30c82f460c367fffe4a8eeba07a4048b018321313dc45229778737273
PrestaShopseorecords-prestashop-1.10.0.zip96 KBd10ddb3dd54cf9d5b1427d4ada5c3b2f5345caa058f137990b05b69c68954df2
PHP siteseorecords-php-1.10.0.zip68 KB5fe7d523f8c345a678f0ed82e6b042735d510ce81ff8bccf7159ca92457eefb5
Joomlaseorecords-joomla-1.10.0.zip68 KBb228e04e7dd8e0c4bbc581b12911aadffeb4a8872e1a15c2694c8951c40a3166
Drupalseorecords-drupal-1.10.0.zip68 KB232df0764af0c3e4a64144aa12006c6db14cddc48a6427463f5ded60ea783576

Manifest: /mise-a-jour/manifeste.json · signature: manifeste.json.sig

Published releases

  1. 1.10.0WordPress · PrestaShop · PHP site · Joomla · Drupal
  2. 1.9.9WordPress · PrestaShop · PHP site · Joomla · Drupal
  3. 1.9.8WordPress · PrestaShop · PHP site · Joomla · Drupal
  4. 1.9.7WordPress · PrestaShop · PHP site · Joomla · Drupal
  5. 1.9.6WordPress · PrestaShop · PHP site · Joomla · Drupal
  6. 1.9.5WordPress · PrestaShop · PHP site · Joomla · Drupal
  7. 1.9.4WordPress · PrestaShop · PHP site · Joomla · Drupal
  8. 1.9.3WordPress · PrestaShop · PHP site · Joomla · Drupal
  9. 1.9.2WordPress · PrestaShop · PHP site · Joomla · Drupal
  10. 1.9.1WordPress · PrestaShop · PHP site · Joomla · Drupal
  11. 1.9.0WordPress · PrestaShop · PHP site · Joomla · Drupal
  12. 1.8.1WordPress · PrestaShop · PHP site
  13. 1.8.0WordPress · PrestaShop · PHP site

SEO Autopilot

Version 1.1.6

issued on

PlatformArchiveSizeSHA-256 hash
PrestaShopseoautopilot-prestashop-1.1.6.zip102 KB76fe5a85cbe53f3c55b61a5acbd295e3371eabcb2946c7b0e53f2f154215dffe

Manifest: /mise-a-jour/seoautopilot/manifeste.json · signature: manifeste.json.sig

Published releases

  1. 1.1.6PrestaShop
  2. 1.1.5PrestaShop
  3. 1.1.4PrestaShop
  4. 1.1.3PrestaShop
  5. 1.1.2PrestaShop
  6. 1.1.1PrestaShop
  7. 1.1.0PrestaShop
  8. 1.0.0PrestaShop

GEO SEO Records

Version 0.13.0

issued on

PlatformArchiveSizeSHA-256 hash
WordPressgeo-seo-records-mesure-wordpress-0.13.0.zip38 KB367c9e373b424eef361edfc2b6893062057e4073b5c95b056d6bdd1c70191954
PrestaShopgeo-seo-records-mesure-prestashop-0.13.0.zip42 KB98ba9f90fcc08c1e9be322dedb9dad58b053b1274414eaf567fef74747988c5b

Manifest: /mise-a-jour/geo/manifeste.json · signature: manifeste.json.sig

Published releases

  1. 0.13.0WordPress · PrestaShop
  2. 0.12.1WordPress · PrestaShop
  3. 0.12.0WordPress · PrestaShop
  4. 0.11.0WordPress · PrestaShop
  5. 0.10.0WordPress · PrestaShop
  6. 0.9.3WordPress · PrestaShop
  7. 0.9.2WordPress · PrestaShop
  8. 0.9.1WordPress · PrestaShop
  9. 0.9.0WordPress · PrestaShop

Replay the verification on your side

The private signing key stays with the publisher. The public key is printed here, the same one embedded in every module. Three commands, using OpenSSL, replay the verification of a manifest and an archive: change a single byte, and the signature is rejected.

# 1. La clé publique du canal (Ed25519)
printf -- '-----BEGIN PUBLIC KEY-----\nMCowBQYDK2VwAyEAeG5qU8Iq9t2N8AnUu12cDdBjC6/zqF6tNQR6GeuicEg=\n-----END PUBLIC KEY-----\n' > canal.pub.pem

# 2. Le manifeste et sa signature, puis la vérification
curl -sO https://seorecords.com/mise-a-jour/manifeste.json
curl -s https://seorecords.com/mise-a-jour/manifeste.json.sig | base64 -d > manifeste.sig
openssl pkeyutl -verify -pubin -inkey canal.pub.pem -rawin -in manifeste.json -sigfile manifeste.sig
# → Signature Verified Successfully

# 3. L'empreinte d'une archive, à comparer à celle du manifeste
curl -sO https://seorecords.com/mise-a-jour/seorecords-wordpress-1.10.0.zip
sha256sum seorecords-wordpress-1.10.0.zip

Public key, in base64: eG5qU8Iq9t2N8AnUu12cDdBjC6/zqF6tNQR6GeuicEg=. For SEO Autopilot and GEO SEO Records, the manifest lives under /mise-a-jour/seoautopilot/ and /mise-a-jour/geo/, signed by the same key.