dataflare-bin

maintainer PandaDEV · 2 votes · scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged The package downloads prebuilt AppImages from the project's own domain (assets.dataflare.app), which is plausibly official; the AppImage is extracted and installed safely, and no untrusted remote code execution occurs at build or install time.

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-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package downloads prebuilt AppImages from the project's own domain (assets.dataflare.app), which is plausibly official; the AppImage is extracted and installed safely, and no untrusted remote code execution occurs at build or install time.

1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM source=() URL on a non-standard host 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:13 source_x86_64=("Dataflare-x86_64.AppImage::https://assets.dataflare.app/release/linux/x86_64/Dataflare-3.1.7.AppImage")

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: PandaDEV <contact@pandadev.net>
2pkgname=dataflare-bin
3pkgver=3.1.7
4pkgrel=1
5pkgdesc="Easily manage your Table, view Data, write SQL and run Query."
6arch=(x86_64 aarch64)
7url="https://dataflare.app/"
8license=('private')
9options=('!strip')
10depends=()
11provides=(dataflare)
12conflicts=(dataflare)
13source_x86_64=("Dataflare-x86_64.AppImage::https://assets.dataflare.app/release/linux/x86_64/Dataflare-3.1.7.AppImage")
14source_aarch64=("Dataflare-aarch64.AppImage::https://assets.dataflare.app/release/linux/aarch64/Dataflare-3.1.7.AppImage")
15sha256sums_x86_64=('a7d8d9cad9ff621fe3a404dd7b7c9cd248affa238de7ec399abf16c274f67e87')
16sha256sums_aarch64=('549db65dccab26adcbe737357eae16e813f225e465e58824b50af17ccab9b879')
17
18package() {
19 install -Dm755 *.AppImage "$pkgdir/opt/dataflare/dataflare.appimage"
20
21 install -dm755 "$pkgdir/usr/bin"
22 cat > "$pkgdir/usr/bin/dataflare" << 'EOF'
23#!/bin/bash
24export APPIMAGE_EXTRACT_AND_RUN=1
25exec /opt/dataflare/dataflare.appimage "$@"
26EOF
27 chmod +x "$pkgdir/usr/bin/dataflare"
28
29 chmod +x *.AppImage
30 ./*.AppImage --appimage-extract >/dev/null 2>&1
31
32 if [ -f squashfs-root/*.desktop ]; then
33 install -dm755 "$pkgdir/usr/share/applications"
34 desktop_file=$(find squashfs-root -name "*.desktop" -type f | head -1)
35 sed 's|Exec=.*|Exec=dataflare %U|g' "$desktop_file" > "$pkgdir/usr/share/applications/dataflare.desktop"
36 fi
37
38 png_file=$(find squashfs-root -name "*.png" -type f | head -1)
39 if [ -n "$png_file" ]; then
40 install -Dm644 "$png_file" "$pkgdir/usr/share/pixmaps/dataflare.png"
41 fi
42
43 rm -rf squashfs-root
44}
45

Changes since previous scan

--- PKGBUILD @ 2026-07-31 00:14
+++ PKGBUILD @ 2026-08-03 00:08
@@ -1,6 +1,6 @@
# Maintainer: PandaDEV <contact@pandadev.net>
pkgname=dataflare-bin
-pkgver=3.1.6
+pkgver=3.1.7
pkgrel=1
pkgdesc="Easily manage your Table, view Data, write SQL and run Query."
arch=(x86_64 aarch64)
@@ -10,10 +10,10 @@
depends=()
provides=(dataflare)
conflicts=(dataflare)
-source_x86_64=("Dataflare-x86_64.AppImage::https://assets.dataflare.app/release/linux/x86_64/Dataflare-3.1.6.AppImage")
-source_aarch64=("Dataflare-aarch64.AppImage::https://assets.dataflare.app/release/linux/aarch64/Dataflare-3.1.6.AppImage")
-sha256sums_x86_64=('543923022624592c19081723a536120eaba8fbefa35fbfb5088a52641688dd8c')
-sha256sums_aarch64=('ca399a5f09112fb83ce9c2795434f9a876314ae8f77dc90021cacc72c4058086')
+source_x86_64=("Dataflare-x86_64.AppImage::https://assets.dataflare.app/release/linux/x86_64/Dataflare-3.1.7.AppImage")
+source_aarch64=("Dataflare-aarch64.AppImage::https://assets.dataflare.app/release/linux/aarch64/Dataflare-3.1.7.AppImage")
+sha256sums_x86_64=('a7d8d9cad9ff621fe3a404dd7b7c9cd248affa238de7ec399abf16c274f67e87')
+sha256sums_aarch64=('549db65dccab26adcbe737357eae16e813f225e465e58824b50af17ccab9b879')
package() {
install -Dm755 *.AppImage "$pkgdir/opt/dataflare/dataflare.appimage"

Scan history

Scanned at (UTC)SeverityRules
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 13:18:10 MEDIUM 1
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 11:38:42 MEDIUM 1
2026-07-28 00:07:28 MEDIUM 2
2026-07-27 00:24:32 MEDIUM 2
2026-07-26 00:07:32 MEDIUM 2
2026-07-25 00:13:44 MEDIUM 2
2026-07-24 00:02:28 MEDIUM 2
2026-07-23 00:14:47 MEDIUM 2
2026-07-22 17:21:24 MEDIUM 2
2026-07-22 00:29:32 MEDIUM 2
2026-07-21 00:24:15 MEDIUM 2
2026-07-20 00:19:49 MEDIUM 2
2026-07-19 00:17:08 MEDIUM 2
2026-07-18 11:57:30 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