oicq
The PKGBUILD fetches and installs 'oicq@1' directly from the npm registry at build/install time with no pinned integrity hash, no declared source, and no checksum verification. The version specifier 'oicq@1' resolves to the latest 1.x release at the time of installation, meaning the installed code can change between builds without any PKGBUILD update. This is a genuine supply-chain concern: any compromise of the npm package or a version bump within the 1.x range would silently deliver different (potentially malicious) executed JavaScript to users. The source array is empty and noextract references a file that is never actually fetched, making integrity verification impossible. This is a real medium-severity supply-chain risk, not a false positive.
Triggered rules
npm_install_external
Runs `npm/yarn/pnpm install <package>` for a package not in source=(), pulling unpinned, unreviewed code at build time. Severity downgraded: the package declares/looks like a Node.js consumer, where build-time installs are expected.
-
PKGBUILD:21
npm i oicq@1 -g \
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 85%): The PKGBUILD fetches and installs 'oicq@1' directly from the npm registry at build/install time with no pinned integrity hash, no declared source, and no checksum verification. The version specifier 'oicq@1' resolves to the latest 1.x release at the time of installation, meaning the installed code can change between builds without any PKGBUILD update. This is a genuine supply-chain concern: any compromise of the npm package or a version bump within the 1.x range would silently deliver different (potentially malicious) executed JavaScript to users. The source array is empty and noextract references a file that is never actually fetched, making integrity verification impossible. This is a real medium-severity supply-chain risk, not a false positive.
PKGBUILD
1 offending line(s) highlighted# Maintainer: liolok <aur@liolok.com>
# Maintainer: Mike Yuan <me@yhndnzj.com>
pkgname=oicq
pkgver=2.1.9
pkgrel=1
pkgdesc="Tecent chat bot in nodejs"
arch=('any')
url="https://www.npmjs.com/package/$pkgname"
license=('MPL-2.0')
depends=('nodejs')
makedepends=('npm')
optdepends=()
source=()
noextract=($pkgname-$pkgver.tgz)
package() {
npm i oicq@1 -g \
--prefix "$pkgdir/usr" \
--cache "$srcdir/npm-cache"
# Non-deterministic race in npm gives 777 permissions to random directories.
# See https://github.com/npm/cli/issues/1103 for details.
find "${pkgdir}/usr" -type d -exec chmod 755 {} +
# install -dm755 "${pkgdir}/usr/bin"
# cat <<EOF >> "${pkgdir}/usr/bin/oicq"
# "#!/usr/bin/env node
# 'use strict';
# require('/usr/lib/node_modules/oicq/lib')();"
# EOF
# chmod 755 "${pkgdir}/usr/bin/oicq"
# npm gives ownership of ALL FILES to build user
# https://bugs.archlinux.org/task/63396
chown --recursive root:root "${pkgdir}"
}
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 |