reconsage
LOW
maintainer glitchxmalde
0 votes
scanned 2026-09-11 05:22:12.681428
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
Triggered rules
Low
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
PKGBUILD
1
# Maintainer: glitchxmalde <maldemoksh437@gmail.com>
2
pkgname=reconsage
3
pkgver=1.0.0
4
pkgrel=1
5
pkgdesc="Advanced Network & Telemetry Reconnaissance Framework"
6
arch=('x86_64')
7
url="https://github.com/moksh-codedeveloper/ReconSage_CLI"
8
license=('GPL3')
9
depends=('dotnet-runtime' 'openssl')
10
makedepends=('cmake' 'gcc' 'dotnet-sdk')
11
options=('!strip')
12
source=("$pkgname-$pkgver.tar.gz::https://github.com/moksh-codedeveloper/ReconSage_CLI/archive/refs/tags/v$pkgver.tar.gz")
13
sha256sums=('2c108b800677df815a3d7c149068380f15a4d1843d3f0589c03b7a2deb0cb47c')
14
15
build() {
16
cd "ReconSage_CLI-$pkgver"
17
18
msg2 "Building C++ Native Engine (reconsage_native.so)..."
19
mkdir -p Native_CPP_build/build
20
cd Native_CPP_build/build
21
cmake -DCMAKE_BUILD_TYPE=Release ..
22
make -j$(nproc)
23
cd ../..
24
25
msg2 "Building C# Orchestrator..."
26
dotnet publish -c Release -o publish_out
27
}
28
29
package() {
30
cd "ReconSage_CLI-$pkgver"
31
32
install -d "$pkgdir/opt/reconsage"
33
install -d "$pkgdir/usr/bin"
34
35
cp -r publish_out/* "$pkgdir/opt/reconsage/"
36
37
# Installs the compiled C++ engine directly into /opt/reconsage
38
install -Dm755 bin/Debug/net10.0/reconsage_native.so "$pkgdir/opt/reconsage/reconsage_native.so"
39
40
# Create a wrapper executable in PATH
41
echo '#!/usr/bin/env bash' > "$pkgdir/usr/bin/reconsage"
42
echo 'exec dotnet /opt/reconsage/ReconSage_Cli.dll "$@"' >> "$pkgdir/usr/bin/reconsage"
43
chmod +x "$pkgdir/usr/bin/reconsage"
44
}
45
46
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-11 05:22:12 | Low | 1 |