NOX Framework v1.0.0

This commit is contained in:
nox-project
2026-04-07 10:17:43 +02:00
commit 913e764133
163 changed files with 15613 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
nox-cli (1.0.0-1) kali-dev; urgency=low
* Initial release to Kali Linux.
-- nox-project <nox-project@users.noreply.github.com> Thu, 02 Apr 2026 20:00:00 +0200
+35
View File
@@ -0,0 +1,35 @@
Source: nox-cli
Section: net
Priority: optional
Maintainer: nox-project <nox-project@users.noreply.github.com>
Build-Depends: debhelper-compat (= 13), dh-python, python3-all, python3-setuptools
Standards-Version: 4.6.2
Rules-Requires-Root: no
Homepage: https://github.com/nox-project/nox-framework
Package: nox-cli
Architecture: all
Depends: ${python3:Depends}, ${misc:Depends},
python3-requests,
python3-aiohttp,
python3-pydantic,
python3-colorama,
python3-rich,
python3-bs4,
python3-lxml,
python3-dnspython,
python3-phonenumbers,
python3-aiosqlite | python3-pip
Recommends:
python3-stem,
tor
Description: Advanced Asynchronous Cyber Threat Intelligence Framework.
nox-cli is an open-source OSINT and breach intelligence framework
supporting 120+ JSON-plugin data sources. It performs asynchronous
multi-source lookups against email addresses, domains, IP addresses,
usernames, phone numbers, and hashes. Features include recursive
identity pivoting, risk scoring, HVT detection, dorking, scraping,
hash cracking, and forensic PDF reporting.
.
All Python dependencies are installed inside an isolated virtual
environment at /opt/nox-cli/.venv (PEP 668 compliant).
+24
View File
@@ -0,0 +1,24 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: nox-cli
Upstream-Contact: nox-project <nox-project@users.noreply.github.com>
Source: https://github.com/nox-project/nox-framework
Files: *
Copyright: 2024-2026 nox-project
License: Apache-2.0
License: Apache-2.0
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
.
https://www.apache.org/licenses/LICENSE-2.0
.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
.
On Debian systems, the full text of the Apache License, Version 2.0
can be found in the file /usr/share/common-licenses/Apache-2.0.
+1
View File
@@ -0,0 +1 @@
sources/*.json usr/share/nox-cli/sources
Vendored Executable
+11
View File
@@ -0,0 +1,11 @@
#!/bin/sh
set -e
if [ "$1" = "purge" ]; then
rm -rf /opt/nox-cli
rm -rf /root/.nox /root/.config/nox-cli
# Also clean for the invoking user if SUDO_USER is set
if [ -n "$SUDO_USER" ]; then
UHOME=$(getent passwd "$SUDO_USER" | cut -d: -f6)
rm -rf "${UHOME}/.nox" "${UHOME}/.config/nox-cli"
fi
fi
Vendored Executable
+3
View File
@@ -0,0 +1,3 @@
#!/bin/sh
set -e
rm -f /usr/bin/nox-cli
Vendored Executable
+3
View File
@@ -0,0 +1,3 @@
#!/usr/bin/make -f
%:
dh $@ --with python3 --buildsystem=pybuild
+3
View File
@@ -0,0 +1,3 @@
Tests: smoke
Depends: @
Restrictions: allow-stderr
Vendored Executable
+5
View File
@@ -0,0 +1,5 @@
#!/bin/sh
set -e
nox-cli --help > /dev/null
nox-cli --version > /dev/null
echo "smoke: OK"