4nu81x/4nu81x

GitHub: 4nu81x/4nu81x

面向进攻性安全研究者的个人主页仓库,核心提供 Note81x 浏览器扩展,利用本地 DeepSeek LLM 将安全实验室网页自动转化为结构化 Obsidian 笔记。

Stars: 0 | 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` | 个人主页神经网格与 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集成, AI风险缓解, MITM代理, SOC Prime, 个人主页, 安全测试, 应用安全, 开发工具, 攻击性安全, 数据可视化, 浏览器扩展, 网络安全, 自定义脚本, 隐私保护