youzone
This PKGBUILD fetches a download URL dynamically from the official Yonyou cloud API (yonyoucloud.com/c2.yonyoucloud.com) at build time, then downloads a prebuilt proprietary .deb with no integrity verification (empty source=() and sha256sums=()). The vendor host appears legitimate for this Chinese enterprise software (Yonyou/友空间). There is no obfuscation, no encoded payload, no exfiltration, and no rewriting of upstream sources to attacker-controlled hosts. The real concern is medium-severity: the dynamic URL resolution means the downloaded binary can change at any time without detection, and there are no checksums to verify what was installed. This is a sloppy but not clearly malicious packaging pattern - it's essentially a 'latest version' fetcher with no pinning or integrity checks. The cheaper model's HIGH rating is a false positive; this is a medium risk due to the unverifiable binary download from a vendor CDN with no checksums.
Triggered rules
external_download_not_in_source
curl/wget fetches a URL on a non-allowlisted host that is not part of source=(), so it is not checksum-verified by makepkg.
-
PKGBUILD:15
json=$(curl -s 'https://c2.yonyoucloud.com/yonbip-ec-resource/resource/file/get?type=amd64' \
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 82%): This PKGBUILD fetches a download URL dynamically from the official Yonyou cloud API (yonyoucloud.com/c2.yonyoucloud.com) at build time, then downloads a prebuilt proprietary .deb with no integrity verification (empty source=() and sha256sums=()). The vendor host appears legitimate for this Chinese enterprise software (Yonyou/友空间). There is no obfuscation, no encoded payload, no exfiltration, and no rewriting of upstream sources to attacker-controlled hosts. The real concern is medium-severity: the dynamic URL resolution means the downloaded binary can change at any time without detection, and there are no checksums to verify what was installed. This is a sloppy but not clearly malicious packaging pattern - it's essentially a 'latest version' fetcher with no pinning or integrity checks. The cheaper model's HIGH rating is a false positive; this is a medium risk due to the unverifiable binary download from a vendor CDN with no checksums.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Nero Blackstone <gf7600gs@gmail.com>
pkgname=youzone
pkgver=8.1.0
pkgrel=1
pkgdesc="友空间,更懂企业的一体化数智办公平台。Youzone, an integrated digital office platform that better understands enterprises."
arch=('x86_64')
url="https://ec.diwork.com/index.html"
license=('custom:proprietary')
makedepends=(jq curl)
source=()
sha256sums=()
prepare() {
json=$(curl -s 'https://c2.yonyoucloud.com/yonbip-ec-resource/resource/file/get?type=amd64' \
-H 'sec-ch-ua-platform: "Linux"' \
-H 'Referer: https://ec.diwork.com/' \
-H 'User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36' \
-H 'Accept: application/json, text/plain, */*' \
-H 'DNT: 1' \
-H 'sec-ch-ua-mobile: ?0')
url=$(echo "$json" | jq -r '.data')
curl -L "$url" -o "${srcdir}/${pkgname}.deb"
bsdtar -xf "${srcdir}/${pkgname}.deb" -C "$srcdir/"
}
package() {
bsdtar -xf "$srcdir"/data.tar.* -C "$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 |