mirror of
https://github.com/nox-project/nox-framework.git
synced 2026-06-08 08:05:50 +00:00
NOX Framework v1.0.0
This commit is contained in:
Vendored
+5
@@ -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
|
||||
Vendored
+35
@@ -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).
|
||||
Vendored
+24
@@ -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.
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
sources/*.json usr/share/nox-cli/sources
|
||||
+11
@@ -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
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
rm -f /usr/bin/nox-cli
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
#!/usr/bin/make -f
|
||||
%:
|
||||
dh $@ --with python3 --buildsystem=pybuild
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
Tests: smoke
|
||||
Depends: @
|
||||
Restrictions: allow-stderr
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
nox-cli --help > /dev/null
|
||||
nox-cli --version > /dev/null
|
||||
echo "smoke: OK"
|
||||
Reference in New Issue
Block a user