4nu81x/n0t381x

GitHub: 4nu81x/n0t381x

一款基于 Manifest V3 的浏览器扩展,利用本地 DeepSeek LLM 将安全实验平台的网页内容自动转化为结构化的 Obsidian Markdown 笔记。

Stars: 2 | Forks: 0

# 🪐 4nu81x // 神经网格已激活 **攻防安全技术开发者 · CTF 架构师 · AI Rig 系统集成商** [![版本 3.0.0](https://img.shields.io/badge/Note81x-v3.0.0-00ff66?style=for-the-badge&logo=googlechrome&logoColor=black)](https://github.com/4nu81x/4nu81x/releases/tag/v3.0.0) [![Manifest V3](https://img.shields.io/badge/Manifest-MV3-00b4d8?style=for-the-badge&logo=mozilla-firefox&logoColor=white)](https://github.com/4nu81x/4nu81x) [![LLM 后端](https://img.shields.io/badge/AI-DeepSeek--V2-7209b7?style=for-the-badge&logo=python&logoColor=white)](https://github.com/4nu81x/4nu81x) [![安全状态](https://img.shields.io/badge/Status-OPERATIONAL-38b000?style=for-the-badge&logo=kalilinux&logoColor=white)](https://4nu81x.com)

4nu81x 2026 Grid Telemetry
4nu81x 2025 Grid Telemetry

## ⚡ 核心指令与配置遥测数据 ``` _ _ ___ _ | || | _ __ _ _ ( _ )/ |__ __ |_ _|| '_ \ | || | / _ \| |\ \/ / |_| |_|_|_|\_,_| \___/|_|/_/\_\ // UPLINK ESTABLISHED // USER: 4nu81x // SECURE: VERIFIED // [ SYSTEM MATRIX ] ----------------------------------------------------------------- [ DECK ] :: Ubuntu / Custom Cyberdeck v3 [ RUNTIME ] :: Node.js / TypeScript / Python 3.11 / Bash [ AGENTS ] :: 0xJackal - Universal AI Rig Architect [ EXTENSION ] :: Note81x v3.0.0 (Operational Filter Engine) [ PROTOCOL ] :: HTTPS / SSH / TLS 1.3 / localtunnel ----------------------------------------------------------------- ``` ## 🚀 核心工具:Note81x :: 操作过滤器 (版本 3.0) **Note81x v3.0** 是一款高速的 Manifest V3 浏览器扩展,旨在处理复杂的网络安全研究、实验报告 (HTB, OSCP, THM) 以及技术文档,通过本地 DeepSeek LLM 推理将原始网页转化为结构化的、适配 Obsidian 的 Markdown 笔记。 ### 🌟 版本 3.0 特性与改进 | 特性 | 描述 | | :--- | :--- | | ⚡ **V3 引擎升级** | 完成了从旧版移动端 v2 子系统到完整的 Manifest V3 桌面及跨浏览器生产引擎的全面架构升级。 | | 💾 **持久化会话自动保存** | 使用 `chrome.storage.local` 在弹窗重开时自动保留并恢复笔记。 | | 🗑️ **一键清除会话** | 专用的 `Clear Session` 操作按钮带有警示安全样式,可重置本地存储并干净地终止 UI。 | | 🎯 **智能 DOM 内容提取** | 优先处理目标内容容器 (`article`, `main`, `#main-content`, `.markdown-body`),消除导航和页脚等噪声。 | | 🧠 **决策矩阵系统提示词** | 将笔记结构化格式化为操作摘要、决策对比表、命令语法和战术权衡。 | | 🎨 **赛博朋克终端设计** | Obsidian 暗色画布 (`#0a0a0c`),霓虹绿点缀 (`#00ff66`),发光的悬停元素,以及自动代码块清理。 | | 🦊 **跨浏览器 MV3 支持** | 原生支持 Google Chrome、Brave、Microsoft Edge 和 Mozilla Firefox (Gecko ID `note81x@local.internal`)。 | ### 📦 快速安装扩展 1. **下载安装包**:从 GitHub Releases 下载 [`Note81x-v3.0.0.zip`](https://github.com/4nu81x/4nu81x/releases/download/v3.0.0/Note81x-v3.0.0.zip)。 2. **解压扩展**:将 zip 包内容解压到本地文件夹。 3. **在浏览器中加载**: * **Chrome / Brave / Edge**:前往 `chrome://extensions` → 开启 **开发者模式** → 点击 **加载已解压的扩展程序**。 * **Firefox**:前往 `about:debugging#/runtime/this-firefox` → 点击 **加载临时附加组件** → 选择 `manifest.json`。 ### 🤖 本地 LLM 后端设置与安装指南 Note81x 连接到运行在 `http://127.0.0.1:8080/v1/chat/completions` 的本地私有 LLM 服务器(运行 **DeepSeek-Coder-V2-Lite-Instruct**)。请按照以下任一方法设置您的后端: #### 选项 A:自动化一键设置 (推荐 Linux/macOS 用户使用) 运行内置的自动化启动脚本: ``` ./start_backend.sh ``` *该脚本会检查 `llama-server`,如果模型文件缺失会自动从 HuggingFace 获取,并启动启用了 CORS 的服务器。* #### 选项 B:通过 `llama-server` (`llama.cpp`) 手动设置 1. **构建或安装 `llama.cpp`**: git clone https://github.com/ggerganov/llama.cpp cd llama.cpp && cmake -B build && cmake --build build --config Release -j$(nproc) 2. **下载模型文件 (`DeepSeek-Coder-V2-Lite-Instruct-Q4_K_M.gguf`)**: wget -c https://huggingface.co/bartowski/DeepSeek-Coder-V2-Lite-Instruct-GGUF/resolve/main/DeepSeek-Coder-V2-Lite-Instruct-Q4_K_M.gguf 3. **启动 LLM 端点**: ./build/bin/llama-server \ -m DeepSeek-Coder-V2-Lite-Instruct-Q4_K_M.gguf \ --host 127.0.0.1 \ --port 8080 \ -c 40960 \ --alias DeepSeek-Coder-V2-Lite-Instruct-Q4_K_M.gguf \ --cors "*" #### 选项 C:通过 `Ollama` 替代设置 如果您使用 **Ollama**,请运行 DeepSeek 模型并设置反向代理或指向 `8080` 端口: ``` ollama run deepseek-coder-v2:16b-lite-instruct-q4_K_M ``` *(确保设置了 `OLLAMA_ORIGINS="chrome-extension://*"` 以允许浏览器请求。)* ## 🛠️ 活跃仓库与工具集 | 仓库 | 状态 | 主要功能 | | :--- | :---: | :--- | | **[4nu81x / 4nu81x](https://github.com/4nu81x/4nu81x)** | `v3.0.0` | 个人主页 Neural Grid 及 Note81x 操作过滤器扩展代码库。 | | **[n0t381x](https://github.com/4nu81x/n0t381x)** | `v3.0.0` | Note81x 的官方文档镜像与发布分发。 | | **[main-website](https://github.com/4nu81x/main-website)** | `ONLINE` | 具备 Linux CLI 美学和交互式命令的终端风格作品集网站。 | | **[ubuntu-offsec-setup](https://github.com/4nu81x/ubuntu-offsec-setup)** | `ONLINE` | 用于配置攻防安全工作站的自动化 bash 置备工具。 | | **[0xJackal](https://github.com/4nu81x/0xJackal)** | `DEPLOYED` | 通用 AI Rig 架构师及自定义 agent 集成系统。 | | **[git-art](https://github.com/4nu81x/git-art)** | `ONLINE` | 用于 GitHub 个人主页的自定义动态 SVG 贡献网格生成器。 | ## 💻 技术栈与能力 ``` [ PARADIGMS ] :: Offensive Security / Automation / Custom AI Rigs / Extension Architectures [ LANGUAGES ] :: TypeScript / JavaScript (ESNext) / Python 3 / Bash Shell / HTML5 / CSS3 [ PLATFORMS ] :: Chrome Extensions MV3 / Firefox WebExtensions / Linux (Ubuntu) / Node.js [ AI & LLM ] :: DeepSeek-Coder-V2 / llama-server / OpenAI API Protocol / Ollama [ TARGETS ] :: HackTheBox / OffSec OSCP / TryHackMe / Custom Lab Automation ``` ## 🧪 连接协议 * 🌐 **Web 终端:** [https://4nu81x.com](https://4nu81x.com) * ✉️ **加密联系方式:** `4nu81x@4sec.online` * 🐙 **GitHub 主页:** [@4nu81x](https://github.com/4nu81x) ``` [+] PING SUCCESSFUL. SESSION ESTABLISHED. 4NU81X NEURAL GRID READY. ```
标签:AI风险缓解, DeepSeek, DLL 劫持, 大语言模型, 应用安全, 数据可视化, 浏览器扩展, 熵值分析, 笔记工具, 网络安全辅助, 自定义脚本, 逆向工具