raccoonlock
maintainer autumn64
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The npx command runs electron-builder on the locally checked-out source code from a trusted project repository, which is a standard part of the build process and not an execution of untrusted remote code.
Triggered rules
LOW
AI review downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The npx command runs electron-builder on the locally checked-out source code from a trusted project repository, which is a standard part of the build process and not an execution of untrusted remote code.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
npx/bunx/deno executes a remote package
remote_code_tool
`npx`/`bunx`/`pnpm dlx`/`deno run <url>` downloads AND runs a remote package at build time — the moral equivalent of piping a download into a shell. Severity downgraded: Node.js consumer context.
-
PKGBUILD:36
npx electron-builder -p never --linux
PKGBUILD
1 offending line(s) highlighted
1
# RaccoonLock; A free, open-source, simple and powerful password manager.
2
# Copyright (c) 2023-2024, Mónica Gómez (Autumn64)
3
#
4
# This program is free software: you can redistribute it and/or modify it
5
# under the terms of the GNU General Public License as published by
6
# the Free Software Foundation, either version 3 of the License, or
7
# (at your option) any later version.
8
#
9
# This program is distributed in the hope that it will be useful,
10
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
# General Public License for more details.
13
#
14
# You should have received a copy of the GNU General Public License
15
# along with this program. If not, see <https://www.gnu.org/licenses/>.
16
17
pkgname="raccoonlock"
18
pkgver="5.1.1"
19
pkgrel="1"
20
pkgdesc="A free, open-source, simple and powerful password manager."
21
arch=("x86_64")
22
url="https://codeberg.org/Autumn64/RaccoonLock"
23
depends=("openssl")
24
makedepends=("git" "nodejs" "npm")
25
license=("GPL")
26
source=("${pkgname}::git+https://codeberg.org/Autumn64/RaccoonLock.git")
27
sha256sums=("SKIP")
28
29
prepare(){
30
cd "${srcdir}/${pkgname}"
31
npm install
32
}
33
34
build(){
35
cd "${srcdir}/${pkgname}"
36
npx electron-builder -p never --linux
37
cd "${srcdir}/${pkgname}/RaccoonReader"
38
make
39
cp raccoonreader "${srcdir}/${pkgname}/dist/linux-unpacked"
40
cp oldreader "${srcdir}/${pkgname}/dist/linux-unpacked"
41
cd "${srcdir}/${pkgname}/dist/"
42
rm -rf RaccoonLock
43
mv linux-unpacked RaccoonLock
44
}
45
46
package(){
47
cd "${srcdir}/${pkgname}"
48
mkdir -p "${pkgdir}/opt/"
49
cp -rfv "${srcdir}/${pkgname}/dist/RaccoonLock" "${pkgdir}/opt"
50
install -Dm 644 -v "${srcdir}/${pkgname}/icon.png" "${pkgdir}/usr/share/icons/RaccoonLock.png"
51
cat << EOF > "RaccoonLock.desktop"
52
[Desktop Entry]
53
54
Type=Application
55
Version=1.0
56
Name=RaccoonLock
57
GenericName=Password manager
58
Comment=A free, open-source, simple and powerful password manager
59
Path=/opt/RaccoonLock
60
Exec=/opt/RaccoonLock/raccoonlock
61
Icon=RaccoonLock
62
Terminal=false
63
Categories=Utility
64
EOF
65
install -Dm 755 -v "${srcdir}/${pkgname}/RaccoonLock.desktop" "${pkgdir}/usr/share/applications/RaccoonLock.desktop"
66
}
67
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 00:24:15 | LOW | 2 |
| 2026-07-20 00:19:49 | LOW | 2 |
| 2026-07-19 00:17:08 | LOW | 2 |
| 2026-07-18 00:14:48 | LOW | 2 |
| 2026-07-17 00:06:16 | LOW | 2 |
| 2026-07-16 00:05:41 | LOW | 2 |
| 2026-07-15 00:09:25 | LOW | 2 |