youzone

MEDIUM
maintainer NeroBlackstone 1 votes scanned 2026-09-17 00:27:14.276658
View on AUR
Why flagged

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

Medium External download from an untrusted host, not in source=() 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' \
Medium AI review 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
1# Maintainer: Nero Blackstone <gf7600gs@gmail.com>
2
3pkgname=youzone
4pkgver=8.1.0
5pkgrel=1
6pkgdesc="友空间,更懂企业的一体化数智办公平台。Youzone, an integrated digital office platform that better understands enterprises."
7arch=('x86_64')
8url="https://ec.diwork.com/index.html"
9license=('custom:proprietary')
10makedepends=(jq curl)
11source=()
12sha256sums=()
13
14prepare() {
15 json=$(curl -s 'https://c2.yonyoucloud.com/yonbip-ec-resource/resource/file/get?type=amd64' \
16 -H 'sec-ch-ua-platform: "Linux"' \
17 -H 'Referer: https://ec.diwork.com/' \
18 -H 'User-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36' \
19 -H 'Accept: application/json, text/plain, */*' \
20 -H 'DNT: 1' \
21 -H 'sec-ch-ua-mobile: ?0')
22
23 url=$(echo "$json" | jq -r '.data')
24 curl -L "$url" -o "${srcdir}/${pkgname}.deb"
25
26 bsdtar -xf "${srcdir}/${pkgname}.deb" -C "$srcdir/"
27}
28
29package() {
30 bsdtar -xf "$srcdir"/data.tar.* -C "$pkgdir/"
31}

Scan history

Scanned at (UTC)SeverityRules
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

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion