Security Analysis Results

swapnaneelkundu.pages.dev

Comprehensive domain security and infrastructure analysis

Live Website Preview

website screenshot of https://swapnaneelkundu.pages.dev/

No Security Risks Detected

This domain appears to be safe and secure

100%
Score

Disclaimer: This assessment is based on automated analysis of publicly available information. Results are for informational purposes only. For critical applications, consult security professionals.

Scan Information

Last checked:August 9, 2025 11:10:41
Scan Complete

Refresh page after 10 minutes
for updated results

Page Information

Target URL
https://swapnaneelkundu.pages.dev/
Page Title
SwapnaneelKundu
swapnaneelkundu.pages.dev faviconSite Favicon
Status
Active

Host Information

Domain
swapnaneelkundu.pages.dev
Server
cloudflare
Country
United States
IP Address
104.21.48.1
ASN Information
13335
CLOUDFLARENET

Technologies

HSTS logo
HSTS
Security
Cloudflare logo
Cloudflare
CDN
HTTP/3 logo
HTTP/3
Miscellaneous

SSL Certificate

HTTPS Enabled
Secure
Certificate Issuer
N/A
Valid From
2025-08-08 11:10:45
Valid Until
2026-08-09 11:10:45
Subject Name
swapnaneelkundu.pages.dev

Performance Statistics

17
Total Requests
3
Domains
3
IP Addresses
5.09 MB
Transfer Size
Content Size5.12 MB

HTTP Headers

Access-Control-Allow-Origin
*
CF-RAY
96c6cf1179196899-SJC
Cache-Control
public, max-age=0, must-revalidate
Connection
keep-alive
Content-Encoding
br
Content-Type
text/html; charset=utf-8
Date
Sat, 09 Aug 2025 11:10:46 GMT
NEL
{"success_fraction":0,"report_to":"cf-nel","max_age":604800}
Report-To
{"endpoints":[{"url":"https:\/\/a.nel.cloudflare.com\/report\/v4?s=R%2Bv9OA1hK22uRmYp16stg8mHFMhEd7JQVGGZMaxv9EG2KL9MIvOKsXITZIoz%2FHX16eQKRYCMVD5Ycb%2BdxrmR5GcBq9XseyFNaLq7ACsOchN8Iuk9OCEXIiK2HWYcRf%2BpELzYz%2BJnnLMWooJ4"}],"group":"cf-nel","max_age":604800}
Server
cloudflare
Transfer-Encoding
chunked
Vary
Accept-Encoding
alt-svc
h3=":443"; ma=86400
referrer-policy
strict-origin-when-cross-origin
server-timing
cfL4;desc="?proto=TCP&rtt=0&min_rtt=0&rtt_var=0&sent=0&recv=0&lost=0&retrans=0&sent_bytes=0&recv_bytes=0&delivery_rate=0&cwnd=0&unsent_bytes=0&cid=3fc380f48795bee8&ts=58&x=0"
x-content-type-options
nosniff
16 headers detected

Technology Stack Analysis

HSTS

HSTS

Security

HTTP Strict Transport Security (HSTS) informs browsers that the site should only be accessed using HTTPS.

Cloudflare

Cloudflare

CDN

Cloudflare is a web-infrastructure and website-security company, providing content-delivery-network services, DDoS mitigation, Internet security, and distributed domain-name-server services.

HTTP/3

HTTP/3

Miscellaneous

HTTP/3 is the third major version of the Hypertext Transfer Protocol used to exchange information on the World Wide Web.

External Links 11

LuxeCarry is a fully-functional e-commerce platform built with HTML, Tailwind CSS, and a Node.js/Express backend.

luxecarry.onrender.com

Analyze
Target URL
https://luxecarry.onrender.com/

Real-Time Location Tracking and Routing with Node.js, Express, Socket.IO, Leaflet, and Leaflet Routing

realtimelocationtracker-918r.onrender.com

Analyze
Target URL
https://realtimelocationtracker-918r.onrender.com/

A real-time multiplayer chess application socket.io and chess.js with realtime player and spectator,with prevention of false moves

chesmate.onrender.com

Analyze
Target URL
https://chesmate.onrender.com/

View source code on github

github.com

Analyze
Target URL
https://github.com/Swapnaneelkund

Hashnode

hashnode.com

Analyze
Target URL
https://hashnode.com/@swapnaneel

My Backend Architecture Journey at Hosla When you're building a real-world software product, especially in a team setting, your backend architecture often evolves with time. That’s exactly what happened to me while developing the backend for Hosla, a mental health platform that involves machine learning prediction, chatbots, user authentication, and social interactions.....

microservices-hosla.hashnode.dev

Analyze
Target URL
https://microservices-hosla.hashnode.dev/

How to Integrate Stripe Payment Gateway in Node.js Stripe is one of the most popular and developer-friendly payment gateways available today. It enables you to accept online payments securely and effortlessly. In this tutorial, I’ll show you how to integrate Stripe into a Node.js backend application from scratch. By the end of this guide, you will be able to accept payments via Stripe with a simple API endpoint.

cloudinary-and-stripe-integration.hashnode.dev

Analyze
Target URL
https://cloudinary-and-stripe-integration.hashnode.dev/how-to-integrate-stripe-payment-gateway

Restructuring my Ecom Fullstack Project Restructuring my Ecom Fullstack Project Hey everyone, as I mentioned earlier, I used to work at HOSLA, an NGO startup, where I made the complete back end of the mental health service and also worked on all other services. After working there and applying all my new learnings, when I looked back, I found my personal project was kind of messy — not modular, no custom errors, no custom logs, no global error handler, no async handler (to wrap the function so if an error arrives, it is sent to the global error handler) — just messy try-and-catch blocks. No controllers, just doing all the tasks in the router. I also had to add proper spacing and remove extra commas.

restructuring-my-ecom-fullstack-project.hashnode.dev

Analyze
Target URL
https://restructuring-my-ecom-fullstack-project.hashnode.dev/restructuring-my-personal-e-commerce-project-from-messy-to-modular

How we integrate Cloudinary with Multer in node js app saving the url in MongoDB Alright — let’s break it down step-by-step so you not only know how to integrate Cloudinary with Multer in a Node.js app, but also why each step is done, and how to store the image URL in MongoDB. We’ll go through: Understanding the tech stack Project setup Cloudinary configuration Multer setup Integration logic Saving URL to MongoDB Example complete code Flow explanation 1️ Understanding the Stack Multer → Middleware for handling multipart/form-data (file uploads) in Node.js. Cloudinary → Cloud-based image& video storage service. MongoDB → Database to store image metadata (like URLs) instead of the actual image file. Mongoose → ODM for MongoDB. Flow: Client sends an image in a POST request. Multer temporarily stores it in memory or a temp folder. Cloudinary’s SDK uploads that image from memory/temp folder to the cloud. Cloudinary returns a secure_url. Save that URL in MongoDB. Cloudinary Configuration Go to Cloudinary → Create a free account. Get your cloud name, API key, and API secret from the Dashboard. Create .env file Multer Setup Here we use memory storage so we can send the file directly to Cloudinary without saving it locally.

cloudinary-and-stripe-integration.hashnode.dev

Analyze
Target URL
https://cloudinary-and-stripe-integration.hashnode.dev/how-we-integrate-cloudinary

LinkedIn

www.linkedin.com

Analyze
Target URL
https://www.linkedin.com/in/swapnaneel-kundu-8935751bb/

Twitter

x.com

Analyze
Target URL
https://x.com/KunduSwapnaneel

Requested Domains 3

fonts.googleapis.com

Unknown Type
No category information available

fonts.gstatic.com

Unknown Type
No category information available

swapnaneelkundu.pages.dev

Apex domain
No category information available
LinkCheck

© 2025 LinkCheck. Secure domain analysis you can trust.