๐Ÿ›ก๏ธ

NSFW Detector VPS PRO

100MB RAM / 1-Core CPU High-Concurrency AI Engine

SYSTEM HEALTHY
RAM Usage (RSS)
-- / 100 MB
Heap: -- MB
Concurrency Queue
0 / 0
Strict 1-Core Sequential Throttling
Active TF Tensors
0
Zero Tensor Leak Guaranteed
Total Processed
0
๐Ÿ”ด 0 Flagged  |  ๐ŸŸข 0 Safe

๐Ÿ“ค Image Inspection Sandbox

Drag & Drop / Batch

Images scoring above this threshold on Porn, Sexy, or Hentai will be flagged.

โšก

Drop images here or click to browse

Supports JPG, PNG, WEBP, GIF (Max 10MB per image)

๐Ÿ“Š AI Classification Analysis

๐Ÿ–ผ๏ธ

Upload an image or run a stress test to see real-time AI content classification and memory telemetry.

๐Ÿ’ป Integrate into your Node / Express Project

# Scan a local image via API endpoint
curl -X POST http://localhost:3000/api/check \
  -F "image=@./my-image.jpg" \
  -F "threshold=0.50"
// Client-side Javascript upload
const formData = new FormData();
formData.append('image', fileInput.files[0]);
formData.append('threshold', '0.50');

const response = await fetch('http://localhost:3000/api/check', {
  method: 'POST',
  body: formData
});
const result = await response.json();
console.log('NSFW Status:', result.isNSFW, 'Category:', result.flaggedCategory);
// Direct Node.js module import (Zero HTTP overhead!)
const { detector } = require('./src/detector');

async function checkContent(buffer) {
  // Automatically uses V8 scoping to prevent memory leaks on 100MB VPS
  const result = await detector.isNSFW(buffer, { threshold: 0.50 });
  if (result.isNSFW) {
    console.warn(`[MODERATION] Flagged image as ${result.flaggedCategory} (${result.maxProbability}%)`);
  }
  return result;
}