zerx-lab-dida365-bin
The package downloads a prebuilt Electron binary (.deb) directly from dida365.com, which is the official vendor domain for the TickTick Chinese version (滴答清单). The URL pattern 'https://dida365.com/static/getApp/download?type=linux_deb_x64' is consistent with an official vendor download endpoint. However, this is still a prebuilt binary from a proprietary vendor being installed with SUID (chrome-sandbox at 4755), and the source URL uses a query-parameter redirect rather than a versioned, stable artifact URL — meaning the sha256sum is the primary integrity guarantee. The sha256sum is present and appears to be a valid 64-character hex string, which provides meaningful integrity protection. The main concern is that the URL is not pinned to a specific version (it's a 'latest' redirect), so a future pkgver bump without a corresponding sha256 update could silently install a different binary. Overall this is a legitimate proprietary vendor binary with standard Electron packaging patterns, but the non-versioned download URL combined with SUID binary installation from a proprietary host warrants medium classification rather than clean.
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:41
source_x86_64=("dida-${pkgver}-amd64.deb::https://dida365.com/static/getApp/download?type=linux_deb_x64")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): The package downloads a prebuilt Electron binary (.deb) directly from dida365.com, which is the official vendor domain for the TickTick Chinese version (滴答清单). The URL pattern 'https://dida365.com/static/getApp/download?type=linux_deb_x64' is consistent with an official vendor download endpoint. However, this is still a prebuilt binary from a proprietary vendor being installed with SUID (chrome-sandbox at 4755), and the source URL uses a query-parameter redirect rather than a versioned, stable artifact URL — meaning the sha256sum is the primary integrity guarantee. The sha256sum is present and appears to be a valid 64-character hex string, which provides meaningful integrity protection. The main concern is that the URL is not pinned to a specific version (it's a 'latest' redirect), so a future pkgver bump without a corresponding sha256 update could silently install a different binary. Overall this is a legitimate proprietary vendor binary with standard Electron packaging patterns, but the non-versioned download URL combined with SUID binary installation from a proprietary host warrants medium classification rather than clean.
PKGBUILD
1 offending line(s) highlighted# Maintainer: zero <zero@localhost>
# Automatically updated by GitHub Actions
pkgname=zerx-lab-dida365-bin
pkgver=8.0.10
pkgrel=1
pkgdesc="滴答清单 - 跨平台 Todo & Task Manager"
arch=('x86_64')
url="https://dida365.com"
license=('LicenseRef-proprietary')
depends=(
'alsa-lib'
'at-spi2-core'
'cairo'
'dbus'
'expat'
'gtk3'
'libcups'
'libdrm'
'libnotify'
'libsecret'
'libxcomposite'
'libxdamage'
'libxext'
'libxfixes'
'libxkbcommon'
'libxrandr'
'libxss'
'libxtst'
'nspr'
'nss'
'pango'
'xdg-utils'
)
optdepends=('libappindicator: 系统托盘图标支持'
'libayatana-appindicator: 系统托盘图标支持(Ayatana)')
provides=('dida' 'dida365')
conflicts=('dida' 'dida365')
options=('!strip')
source_x86_64=("dida-${pkgver}-amd64.deb::https://dida365.com/static/getApp/download?type=linux_deb_x64")
sha256sums_x86_64=('cf3e25f360d55924f5f2aca7ebe6dc7866f645d596df011e47a01eabb5e3d183')
package() {
cd "$srcdir"
# 解压 .deb 文件
ar x "dida-${pkgver}-amd64.deb"
# 将 data.tar.xz 解压到 $pkgdir
bsdtar -xf data.tar.xz -C "$pkgdir"
# 创建 /usr/bin/dida 符号链接(postinst 里做的事)
install -d "$pkgdir/usr/bin"
ln -sf '/opt/dida/dida' "$pkgdir/usr/bin/dida"
# 设置 chrome-sandbox 的 SUID(Electron 5+ 必须)
chmod 4755 "$pkgdir/opt/dida/chrome-sandbox"
}
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 |