Skip to content

netveris/netveris.github.io

Repository files navigation

Netveris Logo

πŸ›‘οΈ Netveris

Professional Security Analysis & Developer Tools Suite

Live Demo Quick Start Docker

License Stars Forks Issues PRs Welcome

React TypeScript Vite React Router


πŸ“– About

Netveris is a comprehensive suite of 40+ security analysis and developer tools built with modern web technologies. Designed for security professionals, developers, and enthusiasts who need quick access to essential security utilities without leaving their browser.

Client Side Privacy First Fast


✨ Features

πŸ” Security Analysis Tools

Tool Description
πŸ›‘οΈ Security Analyzer Comprehensive analysis of HTTP headers, cookies, and security configurations
πŸ”‘ JWT Analyzer Decode, validate, and inspect JSON Web Tokens
πŸ” JWT Generator Create custom JWTs with various algorithms
πŸ› JWT Debugger Debug and troubleshoot JWT issues
πŸ“‹ JWT Best Practices Learn security best practices for JWT implementation
πŸ”’ Password Checker Analyze password strength with detailed feedback
πŸ“œ Certificate Decoder Parse and analyze SSL/TLS certificates
🌐 CORS Checker Test and validate CORS configurations
πŸ›‘οΈ CSP Generator Generate Content Security Policy headers
πŸ” Privacy Analyzer Analyze privacy implications of web applications
πŸ” API Security Test and validate API security configurations
πŸ”’ SSL Inspector Inspect SSL/TLS configurations

πŸ”’ Encoding & Hashing

Tool Description
#️⃣ Hash Tools Generate MD5, SHA-1, SHA-256, SHA-512 hashes
πŸ” Hash Identifier Identify hash types automatically
πŸ” HMAC Generator Create HMAC signatures
πŸ“ Base64 Tools Encode and decode Base64 strings
πŸ”— URL Encoder URL encoding and decoding
πŸ“„ HTML Entities Encode/decode HTML entities
πŸ”’ Base Converter Convert between binary, octal, decimal, hex

πŸ”‘ Encryption & Cryptography

Tool Description
πŸ” AES Encryption Encrypt and decrypt with AES algorithm
πŸ”‘ RSA Generator Generate RSA key pairs
🎯 Caesar Cipher Classic encryption cipher
βŠ• XOR Cipher XOR encryption/decryption
πŸ”’ TOTP Generator Generate Time-based One-Time Passwords
🎲 Secret Generator Generate secure random secrets
πŸ”‘ Password Generator Create strong, random passwords

πŸ› οΈ Developer Utilities

Tool Description
πŸ“ JSON Formatter Format and validate JSON data
πŸ”— URL Parser Parse and analyze URLs
πŸ†” UUID Generator Generate various UUID versions
⏰ Timestamp Converter Convert between timestamp formats
πŸ”€ Regex Tester Test regular expressions
πŸ“Š Text Diff Compare text and find differences
🎨 Color Converter Convert between color formats
🌐 HTTP Builder Build and test HTTP requests
🧹 Data Sanitizer Sanitize and clean data
🌐 DNS Lookup Perform DNS queries
πŸ“‘ Subnet Calculator Calculate network subnets

πŸš€ Quick Start

Prerequisites

  • Node.js 20.x or higher
  • npm 9.x or higher (or pnpm/yarn)

Installation

# Clone the repository
git clone https://github.com/netveris/netveris.github.io.git

# Navigate to project directory
cd netveris.github.io

# Install dependencies
npm install

# Start development server
npm run dev

Your application will be available at http://localhost:5173 πŸŽ‰


🐳 Docker

Run Netveris instantly with Docker - no setup required!

Quick Run (Production)

# Build and run with Docker Compose
docker-compose up -d

# Access at http://localhost:3000

Development Mode

# Run with hot reload
docker-compose --profile dev up netveris-dev

# Access at http://localhost:5173

Manual Docker Build

# Build the image
docker build -t netveris .

# Run the container
docker run -d -p 3000:3000 --name netveris-app netveris

πŸ“¦ Building for Production

# Create production build
npm run build

# The build output will be in:
# - build/client/  β†’ Static assets
# - build/server/  β†’ Server-side code (if SSR enabled)

🌐 Deployment

GitHub Pages (Automatic)

This repository is configured for automatic deployment to GitHub Pages:

  1. Push to main branch
  2. GitHub Actions builds and deploys automatically
  3. Access at: https://netveris.github.io

Self-Hosting

You can also deploy Netveris on your own infrastructure:

# Using Docker
docker-compose up -d

# Or build manually
npm run build
npm run start

πŸ—οΈ System Architecture

High-Level Overview

flowchart TB
    subgraph Client["🌐 Client Browser"]
        UI["πŸ–₯️ User Interface"]
        SW["⚑ Service Worker"]
        LS["πŸ’Ύ Local Storage"]
    end

    subgraph App["βš›οΈ React Application"]
        Router["πŸ”€ React Router v7"]
        Components["🧩 Components"]
        Hooks["πŸͺ Custom Hooks"]
        Utils["πŸ”§ Utilities"]
    end

    subgraph Tools["πŸ› οΈ Security Tools Suite"]
        direction TB
        Security["πŸ” Security Analysis"]
        Crypto["πŸ”‘ Cryptography"]
        Encoding["πŸ“ Encoding/Hashing"]
        DevTools["πŸ› οΈ Dev Utilities"]
    end

    UI --> Router
    Router --> Components
    Components --> Hooks
    Components --> Utils
    Hooks --> Tools
    Utils --> Tools
    SW -.-> LS
    Tools -.-> LS

    style Client fill:#1a1a2e,stroke:#00a3c7,stroke-width:2px,color:#fff
    style App fill:#16213e,stroke:#e94560,stroke-width:2px,color:#fff
    style Tools fill:#0f3460,stroke:#00ff88,stroke-width:2px,color:#fff
Loading

Tool Categories Architecture

flowchart LR
    subgraph SecurityTools["πŸ” Security Analysis"]
        direction TB
        SA["Security Analyzer"]
        JWT["JWT Suite"]
        SSL["SSL Inspector"]
        CORS["CORS Checker"]
        CSP["CSP Generator"]
        API["API Security"]
        Privacy["Privacy Analyzer"]
    end

    subgraph CryptoTools["πŸ”‘ Cryptography"]
        direction TB
        AES["AES Encryption"]
        RSA["RSA Generator"]
        HMAC["HMAC Generator"]
        Caesar["Caesar Cipher"]
        XOR["XOR Cipher"]
        TOTP["TOTP Generator"]
        SecretGen["Secret Generator"]
        PassGen["Password Generator"]
    end

    subgraph EncodingTools["πŸ“ Encoding & Hashing"]
        direction TB
        Hash["Hash Tools"]
        HashID["Hash Identifier"]
        B64["Base64 Tools"]
        URL["URL Encoder"]
        HTML["HTML Entities"]
        Base["Base Converter"]
    end

    subgraph DevUtilities["πŸ› οΈ Developer Tools"]
        direction TB
        JSON["JSON Formatter"]
        URLParse["URL Parser"]
        UUID["UUID Generator"]
        Time["Timestamp Converter"]
        Regex["Regex Tester"]
        Diff["Text Diff"]
        Color["Color Converter"]
        HTTP["HTTP Builder"]
        DNS["DNS Lookup"]
        Subnet["Subnet Calculator"]
        Sanitize["Data Sanitizer"]
    end

    User((πŸ‘€ User)) --> SecurityTools
    User --> CryptoTools
    User --> EncodingTools
    User --> DevUtilities

    style SecurityTools fill:#dc3545,stroke:#fff,stroke-width:2px,color:#fff
    style CryptoTools fill:#6f42c1,stroke:#fff,stroke-width:2px,color:#fff
    style EncodingTools fill:#fd7e14,stroke:#fff,stroke-width:2px,color:#fff
    style DevUtilities fill:#20c997,stroke:#fff,stroke-width:2px,color:#fff
    style User fill:#0d6efd,stroke:#fff,stroke-width:3px,color:#fff
Loading

Component Architecture

flowchart TB
    subgraph Root["πŸ“¦ App Root"]
        RootTSX["root.tsx"]
    end

    subgraph Layout["🎨 Layout Layer"]
        Nav["Navigation"]
        Theme["Theme Toggle"]
        Toast["Toast System"]
    end

    subgraph Pages["πŸ“„ Route Pages"]
        Home["🏠 Home"]
        Dashboard["πŸ“Š Dashboard"]
        Favorites["⭐ Favorites"]
        Recent["πŸ• Recent"]
        Docs["πŸ“š Documentation"]
        ToolPages["πŸ› οΈ 40+ Tool Pages"]
    end

    subgraph SharedUI["🧩 Shared Components"]
        ToolHeader["Tool Header"]
        CodeWindow["Code Window"]
        CodeBlock["Code Block"]
        AnalysisPanel["Analysis Panel"]
        IssueCard["Issue Card"]
        RiskBadge["Risk Badge"]
        SecurityScore["Security Score"]
        ExportMenu["Export Menu"]
        KeyboardShortcuts["Keyboard Shortcuts"]
    end

    subgraph UIKit["🎯 UI Primitives"]
        Button["Button"]
        Input["Input"]
        Select["Select"]
        Dialog["Dialog"]
        Tabs["Tabs"]
        Card["Card"]
        Badge["Badge"]
        Tooltip["Tooltip"]
    end

    RootTSX --> Layout
    Layout --> Pages
    Pages --> SharedUI
    SharedUI --> UIKit

    style Root fill:#e91e63,stroke:#fff,stroke-width:2px,color:#fff
    style Layout fill:#9c27b0,stroke:#fff,stroke-width:2px,color:#fff
    style Pages fill:#673ab7,stroke:#fff,stroke-width:2px,color:#fff
    style SharedUI fill:#3f51b5,stroke:#fff,stroke-width:2px,color:#fff
    style UIKit fill:#2196f3,stroke:#fff,stroke-width:2px,color:#fff
Loading

Data Flow Architecture

flowchart LR
    subgraph Input["πŸ“₯ User Input"]
        Text["Text Input"]
        File["File Upload"]
        Paste["Clipboard Paste"]
    end

    subgraph Processing["βš™οΈ Processing Layer"]
        Validate["βœ… Validation"]
        Transform["πŸ”„ Transform"]
        Analyze["πŸ” Analysis"]
    end

    subgraph Output["πŸ“€ Output"]
        Display["πŸ–₯️ Display Results"]
        Copy["πŸ“‹ Copy to Clipboard"]
        Export["πŸ’Ύ Export File"]
        Share["πŸ”— Share Link"]
    end

    subgraph Storage["πŸ’Ύ Persistence"]
        LocalStorage["Local Storage"]
        Favorites["Favorites"]
        History["Recent History"]
        Settings["User Settings"]
    end

    Input --> Processing
    Processing --> Output
    Processing -.-> Storage
    Storage -.-> Input

    style Input fill:#4caf50,stroke:#fff,stroke-width:2px,color:#fff
    style Processing fill:#ff9800,stroke:#fff,stroke-width:2px,color:#fff
    style Output fill:#2196f3,stroke:#fff,stroke-width:2px,color:#fff
    style Storage fill:#9c27b0,stroke:#fff,stroke-width:2px,color:#fff
Loading

Technology Stack

flowchart TB
    subgraph Frontend["🎨 Frontend Layer"]
        React["βš›οΈ React 19"]
        TS["πŸ“˜ TypeScript 5"]
        CSS["🎨 CSS Modules"]
    end

    subgraph Build["πŸ”¨ Build Tools"]
        Vite["⚑ Vite 7"]
        ESBuild["πŸ“¦ ESBuild"]
        PostCSS["🎨 PostCSS"]
    end

    subgraph Routing["πŸ”€ Routing"]
        RR7["React Router 7"]
        FileRoutes["File-based Routes"]
    end

    subgraph UI["🧩 UI Libraries"]
        Radix["Radix UI"]
        Lucide["Lucide Icons"]
        Recharts["Recharts"]
        Sonner["Sonner Toasts"]
    end

    subgraph Forms["πŸ“ Form Handling"]
        RHF["React Hook Form"]
        Zod["Zod Validation"]
    end

    subgraph Deploy["πŸš€ Deployment"]
        GHPages["GitHub Pages"]
        Docker["Docker"]
        PWA["PWA Support"]
    end

    Frontend --> Build
    Build --> Routing
    Frontend --> UI
    Frontend --> Forms
    Build --> Deploy

    style Frontend fill:#61dafb,stroke:#000,stroke-width:2px,color:#000
    style Build fill:#646cff,stroke:#fff,stroke-width:2px,color:#fff
    style Routing fill:#ca4245,stroke:#fff,stroke-width:2px,color:#fff
    style UI fill:#ff6b6b,stroke:#fff,stroke-width:2px,color:#fff
    style Forms fill:#00d4aa,stroke:#000,stroke-width:2px,color:#000
    style Deploy fill:#2ea44f,stroke:#fff,stroke-width:2px,color:#fff
Loading

Request Flow Sequence

sequenceDiagram
    participant U as πŸ‘€ User
    participant B as 🌐 Browser
    participant SW as ⚑ Service Worker
    participant R as πŸ”€ Router
    participant C as 🧩 Component
    participant T as πŸ› οΈ Tool Logic
    participant S as πŸ’Ύ Storage

    U->>B: Navigate to Tool
    B->>SW: Check Cache
    SW-->>B: Return Cached/Fetch
    B->>R: Route Match
    R->>C: Render Component
    C->>T: Initialize Tool
    T->>S: Load Preferences
    S-->>T: Return Settings
    T-->>C: Ready State
    C-->>U: Display UI
    
    U->>C: Input Data
    C->>T: Process
    T->>T: Validate & Transform
    T-->>C: Return Results
    C-->>U: Show Output
    
    U->>C: Save to Favorites
    C->>S: Store Data
    S-->>C: Confirm
    C-->>U: Show Success
Loading

πŸ› οΈ Tech Stack

React
React 19
TypeScript
TypeScript
Vite
Vite 7
React Router
React Router
CSS Modules
CSS Modules

Additional Libraries:

  • 🎨 Radix UI - Accessible component primitives
  • πŸ“Š Recharts - Data visualization
  • 🎭 Lucide Icons - Beautiful icons
  • πŸ”” Sonner - Toast notifications
  • πŸ“ React Hook Form - Form management
  • βœ… Zod - Schema validation

πŸ“ Project Structure

flowchart TB
    subgraph Root["πŸ“¦ netveris/"]
        subgraph AppDir["πŸ“ app/"]
            Components["πŸ“ components/"]
            Hooks["πŸ“ hooks/"]
            Routes["πŸ“ routes/"]
            Styles["πŸ“ styles/"]
            Types["πŸ“ types/"]
            Utils["πŸ“ utils/"]
            RootFile["πŸ“„ root.tsx"]
            RoutesFile["πŸ“„ routes.ts"]
        end
        
        subgraph PublicDir["πŸ“ public/"]
            Manifest["πŸ“„ manifest.json"]
            ServiceWorker["πŸ“„ sw.js"]
            Robots["πŸ“„ robots.txt"]
            Sitemap["πŸ“„ sitemap.xml"]
        end
        
        subgraph ConfigFiles["βš™οΈ Config Files"]
            Package["πŸ“„ package.json"]
            TSConfig["πŸ“„ tsconfig.json"]
            ViteConfig["πŸ“„ vite.config.ts"]
            Docker["🐳 Dockerfile"]
            DockerDev["🐳 Dockerfile.dev"]
            Compose["🐳 docker-compose.yml"]
        end
    end

    style Root fill:#1a1a2e,stroke:#00a3c7,stroke-width:2px,color:#fff
    style AppDir fill:#16213e,stroke:#e94560,stroke-width:2px,color:#fff
    style PublicDir fill:#0f3460,stroke:#00ff88,stroke-width:2px,color:#fff
    style ConfigFiles fill:#533483,stroke:#ffd700,stroke-width:2px,color:#fff
Loading
netveris/
β”œβ”€β”€ πŸ“ app/
β”‚   β”œβ”€β”€ πŸ“ components/     # Reusable UI components
β”‚   β”‚   └── πŸ“ ui/         # Base UI primitives
β”‚   β”œβ”€β”€ πŸ“ hooks/          # Custom React hooks
β”‚   β”œβ”€β”€ πŸ“ routes/         # Page components
β”‚   β”œβ”€β”€ πŸ“ styles/         # Global styles & tokens
β”‚   β”œβ”€β”€ πŸ“ types/          # TypeScript definitions
β”‚   β”œβ”€β”€ πŸ“ utils/          # Utility functions
β”‚   β”œβ”€β”€ πŸ“„ root.tsx        # App root component
β”‚   └── πŸ“„ routes.ts       # Route definitions
β”œβ”€β”€ πŸ“ public/             # Static assets
β”œβ”€β”€ πŸ“„ Dockerfile          # Production Docker config
β”œβ”€β”€ πŸ“„ Dockerfile.dev      # Development Docker config
β”œβ”€β”€ πŸ“„ docker-compose.yml  # Docker Compose config
β”œβ”€β”€ πŸ“„ package.json        # Dependencies & scripts
β”œβ”€β”€ πŸ“„ tsconfig.json       # TypeScript config
β”œβ”€β”€ πŸ“„ vite.config.ts      # Vite config
└── πŸ“„ README.md           # You are here! πŸ‘‹

⌨️ Keyboard Shortcuts

Shortcut Action
Ctrl + K Open command palette
Ctrl + / Show keyboard shortcuts
Ctrl + D Toggle dark mode
Esc Close dialogs

🀝 Contributing

Contributions are welcome! Here's how you can help:

  1. 🍴 Fork the repository
  2. 🌿 Create a feature branch: git checkout -b feature/amazing-feature
  3. πŸ’Ύ Commit changes: git commit -m 'Add amazing feature'
  4. πŸ“€ Push to branch: git push origin feature/amazing-feature
  5. πŸ”ƒ Open a Pull Request

Development Guidelines

  • Follow TypeScript best practices
  • Use CSS Modules for styling
  • Write meaningful commit messages
  • Test your changes thoroughly

πŸ“œ License

This project is licensed under the MIT License - see the LICENSE file for details.


πŸ™ Acknowledgments


Made with ❀️ by the Netveris Team

GitHub

⭐ Star this repo if you find it useful!

About

Professional security analysis tools for modern web applications.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages