ica-securestore-pkcs11
The PKGBUILD downloads a prebuilt binary .deb from ca.ica.cz (I.CA, a Czech certificate authority) and installs a PKCS#11 shared library (libICASecureStorePkcs11.so) directly into /usr/lib/pkcs11/. This is a real supply-chain concern: a prebuilt, closed-source native shared library from a vendor's own distribution server is installed and will be loaded into sensitive cryptographic contexts (smart-card operations via p11-kit). The host ca.ica.cz appears to be the legitimate upstream vendor (I.CA is a well-known Czech CA), and the sha256sum is pinned, which mitigates some risk. However, there is no GPG signature verification, the library is proprietary/unauditable, and a compromised or malicious .so in the PKCS#11 slot could intercept private key operations. This is a textbook medium: not clearly malicious, but an executed binary from a non-standard (even if plausibly legitimate) vendor host with no cryptographic signature check beyond a hash.
Triggered rules
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:10
source=("https://ca.ica.cz/pub/SecureStore/linux/ica-securestore-pkcs11_${pkgver}-0_amd64.deb")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): The PKGBUILD downloads a prebuilt binary .deb from ca.ica.cz (I.CA, a Czech certificate authority) and installs a PKCS#11 shared library (libICASecureStorePkcs11.so) directly into /usr/lib/pkcs11/. This is a real supply-chain concern: a prebuilt, closed-source native shared library from a vendor's own distribution server is installed and will be loaded into sensitive cryptographic contexts (smart-card operations via p11-kit). The host ca.ica.cz appears to be the legitimate upstream vendor (I.CA is a well-known Czech CA), and the sha256sum is pinned, which mitigates some risk. However, there is no GPG signature verification, the library is proprietary/unauditable, and a compromised or malicious .so in the PKCS#11 slot could intercept private key operations. This is a textbook medium: not clearly malicious, but an executed binary from a non-standard (even if plausibly legitimate) vendor host with no cryptographic signature check beyond a hash.
PKGBUILD
1 offending line(s) highlighted# Maintainer: CharlieREV <charlie@revshell.cz>
pkgname=ica-securestore-pkcs11
pkgver=6.13.0
pkgrel=1
pkgdesc="I.CA SecureStore PKCS#11 module (smart-card crypto token support)"
arch=('x86_64')
url="https://ca.ica.cz/pub/SecureStore/linux/"
license=('proprietary')
depends=('gcc-libs' 'pcsclite' 'p11-kit')
source=("https://ca.ica.cz/pub/SecureStore/linux/ica-securestore-pkcs11_${pkgver}-0_amd64.deb")
sha256sums=('eb13b0ba96366011dd30bf5231885ae2120e7475d1ee5faedaf549e883c74354')
install="${pkgname}.install"
provides=('ica-securestore-pkcs11')
build() {
cd "$srcdir"
mkdir -p "$srcdir/deb"
bsdtar -xvf "ica-securestore-pkcs11_${pkgver}-0_amd64.deb" -C "$srcdir/deb"
tar -xf "$srcdir/deb/data.tar.xz" -C "$srcdir/deb"
}
package() {
install -Dm644 "$srcdir/deb/usr/lib/pkcs11/libICASecureStorePkcs11.so" "$pkgdir/usr/lib/pkcs11/libICASecureStorePkcs11.so"
install -Dm644 /dev/stdin "$pkgdir/usr/share/p11-kit/modules/ica-securestore.module" <<EOF
module: /usr/lib/pkcs11/libICASecureStorePkcs11.so
EOF
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Medium | 2 |
| 2026-09-16 00:03:17 | Medium | 2 |
| 2026-09-15 00:25:31 | Medium | 2 |
| 2026-09-14 00:27:57 | Medium | 2 |
| 2026-09-13 00:19:54 | Medium | 2 |
| 2026-09-12 00:25:17 | Medium | 2 |
| 2026-09-11 00:19:22 | Medium | 2 |
| 2026-09-10 00:22:44 | Medium | 2 |
| 2026-09-09 00:04:09 | Medium | 2 |
| 2026-09-08 00:18:08 | Medium | 2 |
| 2026-09-07 00:30:15 | Medium | 2 |
| 2026-09-06 00:17:06 | Medium | 2 |
| 2026-09-05 00:16:27 | Medium | 2 |
| 2026-09-04 00:03:13 | Medium | 2 |
| 2026-09-03 00:15:47 | Medium | 2 |
| 2026-09-02 00:02:31 | Medium | 2 |
| 2026-09-01 00:11:19 | Medium | 2 |
| 2026-08-31 00:19:57 | Medium | 2 |
| 2026-08-30 00:04:14 | Medium | 2 |
| 2026-08-29 00:29:17 | Medium | 2 |