123pan
The package builds from the project's own GitHub source with a SKIP'd checksum on the git checkout, which is common for git-based AUR packages; the only notable risk is the unverifiable source due to skipped integrity check, but it installs only Python code from the declared repository and no remote code execution or data exfiltration is present.
Triggered rules
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package builds from the project's own GitHub source with a SKIP'd checksum on the git checkout, which is common for git-based AUR packages; the only notable risk is the unverifiable source due to skipped integrity check, but it installs only Python code from the declared repository and no remote code execution or data exfiltration is present.
PKGBUILD
# Maintainer: xhdndmm <xhdndmm@gmail.com>
pkgname=123pan
pkgver=4.0.5
pkgrel=1
pkgdesc="第三方123云盘客户端"
arch=('x86_64')
url="https://github.com/123panNextGen/123pan"
license=('GPL-3.0')
depends=('python')
makedepends=('git' 'uv')
options=('!strip' '!debug')
source=(
"${pkgname}-${pkgver}::git+https://github.com/123panNextGen/${pkgname}.git#tag=v${pkgver}"
"${pkgname}.png::https://raw.githubusercontent.com/123panNextGen/logo/refs/heads/main/img/logo-v2.png"
)
sha256sums=(
'SKIP'
'edc9c43937c0fa612be160a83265756dea36566c3f227165ccb7010b0a84ccff'
)
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
uv venv \
--python python \
.venv
uv sync \
--active \
--frozen
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
install -dm755 "${pkgdir}/opt/${pkgname}"
cp -a src "${pkgdir}/opt/${pkgname}/"
cp -a pyproject.toml "${pkgdir}/opt/${pkgname}/"
cp -a uv.lock "${pkgdir}/opt/${pkgname}/"
cp -a .venv "${pkgdir}/opt/${pkgname}/"
install -dm755 "${pkgdir}/usr/bin"
cat > "${pkgdir}/usr/bin/${pkgname}" <<EOF
#!/bin/sh
exec /opt/${pkgname}/.venv/bin/python /opt/${pkgname}/src/123pan.py "\$@"
EOF
chmod 755 "${pkgdir}/usr/bin/${pkgname}"
install -Dm644 \
"${srcdir}/${pkgname}.png" \
"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-25 01:45:24 | Low | 2 |