๊ด€๋ฆฌ์ž ํŒจ๋„, ์›น์†Œ์ผ“ ๋ฐ ๊ณ ๊ธ‰ ๋ณด์•ˆ ๊ธฐ๋Šฅ์„ ๊ฐ–์ถ˜ Monero ๊ฒฐ์ œ ํ”Œ๋žซํผ์„ ๊ตฌ์ถ•ํ–ˆ์Šต๋‹ˆ๋‹ค.

์ž‘์„ฑ์ž

์นดํ…Œ๊ณ ๋ฆฌ:

โ† ํ”ผ๋“œ๋กœ
DEV Community ยท Daniel Ioni ยท 2026-07-16 ๊ฐœ๋ฐœ(SW)

Daniel Ioni

๐Ÿš€ I built a Monero payment platform with Admin Panel, WebSocket, and advanced security

MyZubster is a full-stack platform for managing orders and cryptocurrency payments (Monero/XMR). It’s a complete application with:

  • โœ… Modern React frontend with responsive UI
  • โœ… Secure Node.js/Express backend
  • โœ… Monero (testnet) integration for real payments
  • โœ… Full Admin Panel with filters, search, and pagination
  • โœ… WebSocket for real-time notifications
  • โœ… VPS with Tor deployment preparation (onion site)

๐ŸŽฏ Why I built MyZubster

I wanted to build a platform that allows users to:

  1. Create orders quickly and easily
  2. Pay in Monero with unique addresses per order
  3. Monitor payments in real-time (no refresh needed)
  4. Manage everything through a complete admin panel

The goal was also to experiment with:

  • Monero RPC integration
  • WebSocket for real-time communication
  • Advanced security (XSS, CSRF, Rate Limiting, Helmet)
  • Admin panel for data management

๐Ÿ› ๏ธ Tech Stack

Area Technologies Frontend React 18, Axios, React Toastify, QRCode.react, Socket.IO Client Backend Node.js, Express, JWT, Bcrypt, Socket.IO, Mongoose Database MongoDB (Atlas Cloud) Authentication JWT with Refresh Token rotation and revocation Payments Monero (testnet) + Mock for development WebSocket Socket.IO for real-time notifications Admin Panel Dashboard, filters, search, pagination, CSV export Security XSS, CSRF, Rate Limiting, Helmet, CORS, JWT Refresh

โœจ What’s new / What I recently implemented

๐Ÿ›ก๏ธ Complete Admin Panel

  • Dashboard with statistics: total orders, paid, pending, revenue, users, conversion rate
  • Advanced filters: by status (pending, paid, processing, shipped, delivered, cancelled)
  • Search: by order number and user email
  • Pagination: 10 orders per page
  • Order detail (popup): view all order details with one click
  • User management: view, search, and promote users to admin
  • CSV export: download order reports

๐Ÿ”’ Security Implemented

  • XSS Protection: input sanitization on all user inputs
  • CSRF Protection: tokens for POST/PUT/DELETE requests
  • Rate Limiting: 10 attempts/15 minutes on authentication
  • Helmet: HTTP security headers
  • JWT Refresh Token: with rotation and revocation
  • CORS: properly configured for production

๐Ÿ’ฐ Monero Integration

  • Wallet RPC: connection to monero-wallet-rpc
  • Subaddress generation: unique addresses per order
  • Automatic monitoring: 10 confirmations (~20 minutes)
  • Automatic fee: 2% deducted
  • Net transfer: 98% to main wallet

๐Ÿ“ก WebSocket

  • Real-time notifications: payment:confirmed and order:updated events
  • Automatic reconnection: with queue management
  • Authentication: secure WebSocket connections

๐Ÿ“ธ Screenshots

๐Ÿ”ง How the Monero payment flow works


mermaid
sequenceDiagram
    participant User
    participant Frontend
    participant Backend
    participant MoneroWallet

    User->>Frontend: Create order
    Frontend->>Backend: POST /orders
    Backend->>MoneroWallet: create_address()
    MoneroWallet-->>Backend: Subaddress
    Backend-->>Frontend: Order + Subaddress
    Frontend-->>User: Show QR Code and address

    User->>MoneroWallet: Send XMR
    MoneroWallet-->>Backend: Transaction detected
    Backend->>Backend: Monitor 10 confirmations
    Backend-->>Frontend: WebSocket: payment:confirmed
    Frontend-->>User: โœ… Order paid!

๐Ÿง… Roadmap: Deploy on VPS with Tor (I need help!)

The next step is to deploy the project on a VPS with Tor to have:

    ๐ŸŒ Public website with SSL (normal domain)

    ๐Ÿง… Onion site for anonymous and private access

    ๐Ÿ“ฑ Onion advertising site for marketing

๐Ÿ”ด Where I need help

    VPS setup: choosing the provider, initial configuration

    Tor: hidden service configuration and Nginx

    Automated deployment: scripts to update the site without downtime

    Marketing: how to effectively promote an onion site

If you have experience with VPS, Tor, or deploying Node.js apps, any advice is welcome! ๐Ÿ™
๐Ÿ“‚ GitHub Repository

๐Ÿ‘‰ github.com/DanielIoni-creator/MyZubsterAPP
โš ๏ธ Disclaimer

MyZubster is a technological platform designed exclusively for legitimate orders and cryptocurrency payments. The platform is provided "as is" and users assume all responsibility for its use. I am not liable for misuse, illegal transactions, or any activity contrary to the law.
๐Ÿ™ Acknowledgments

Thanks to the Monero, React, and Node.js communities for the libraries and support.
๐Ÿ’ฌ Discussion

Do you have experience with VPS and Tor deployment?
Any advice on how to promote an onion site?

Drop a comment below! ๐Ÿ‘‡

#React #NodeJS #Monero #Cryptocurrency #WebSocket #AdminPanel #VPS #Tor #OnionSite #DevCommunity
text


---

## ๐Ÿท๏ธ TAG SUGGERITI PER DEV.TO

| Tag | Perchรฉ |
| :--- | :--- |
| `#react` | Frontend principale |
| `#nodejs` | Backend principale |
| `#monero` | Integrazione pagamenti criptovaluta |
| `#cybersecurity` | Sicurezza implementata (XSS, CSRF, ecc.) |
| `#webdevelopment` | Progetto full-stack completo |
| `#opensource` | Repository pubblico su GitHub |
| `#cryptocurrency` | Pagamenti in Monero |
| `#websocket` | Notifiche real-time |
| `#devcommunity` | Richiesta di aiuto alla community |

---

## ๐Ÿ“ธ SUGGERIMENTI PER GLI SCREENSHOT

1. **Login page** โ€“ `http://localhost:3000`
2. **User Dashboard** โ€“ con ordini visibili
3. **Admin Panel** โ€“ con statistiche e filtri
4. **Payment Modal** โ€“ con QR Code Monero
5. **Order Details popup** โ€“ con dettagli ordine
6. **Footer** โ€“ con il disclaimer

Enter fullscreen mode Exit fullscreen mode

์›๋ฌธ์—์„œ ๊ณ„์† โ†—

์ถ”์ถœ ๋ณธ๋ฌธ ยท ์ถœ์ฒ˜: dev.to ยท https://dev.to/danielioni/i-built-a-monero-payment-platform-with-admin-panel-websocket-and-advanced-security-57ji

์ฝ”๋ฉ˜ํŠธ

๋‹ต๊ธ€ ๋‚จ๊ธฐ๊ธฐ

์ด๋ฉ”์ผ ์ฃผ์†Œ๋Š” ๊ณต๊ฐœ๋˜์ง€ ์•Š์Šต๋‹ˆ๋‹ค. ํ•„์ˆ˜ ํ•„๋“œ๋Š” *๋กœ ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค