Help
RSS
API
Feed
Maltego
Contact
Domain > bykaranveer.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-08-25
18.66.255.39
(
ClassC
)
2026-02-12
3.163.24.35
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyServer: CloudFrontDate: Thu, 12 Feb 2026 13:54:21 GMTContent-Type: text/htmlContent-Length: 167Connection: keep-aliveLocation: https://bykaranveer.com/X-Cache: Redirect from cloudfrontVia: 1.1 518bdec7a5119a665abaf6315a08e6a8.cloudfront.net (CloudFront)X-Amz-Cf-Pop: HIO52-P2X-Amz-Cf-Id: ahruN0jSZenx4nCRnZOdcKOW8BGTlY9w-Iu6vLAm26AcsuznxOn6Ag html>head>title>301 Moved Permanently/title>/head>body>center>h1>301 Moved Permanently/h1>/center>hr>center>CloudFront/center>/body>/html>
Port 443
HTTP/1.1 200 OKContent-Type: text/htmlContent-Length: 5289Connection: keep-aliveDate: Thu, 12 Feb 2026 13:54:23 GMTLast-Modified: Tue, 06 May 2025 19:17:11 GMTETag: b045d57da007e01771e3d1c3003d939dServer: AmazonS3X-Cache: Miss from cloudfrontVia: 1.1 4894bef31db1c311602a51393339af0a.cloudfront.net (CloudFront)X-Amz-Cf-Pop: HIO52-P2X-Amz-Cf-Id: xSeq35PIv4qY9VrcrHXuHbfyu5CkyOEpkW-aWrkrcBr7Hvgw1i6QFQ !DOCTYPE html>html langen>head> meta charsetUTF-8 /> meta nameviewport contentwidthdevice-width, initial-scale1.0/> title>Karanveer Singh | Portfolio/title> style> @import url(https://fonts.googleapis.com/css2?familyOrbitron:wght@400;700&displayswap); * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: Orbitron, sans-serif; background: black; color: #e0e0e0; overflow-x: hidden; } canvas { position: fixed; top: 0; left: 0; z-index: -1; } header { text-align: center; padding: 3rem 1rem; background: rgba(18, 18, 18, 0.9); } header h1 { font-size: 3rem; color: #00ffff; margin-bottom: 1rem; } header p { font-size: 1.2rem; color: #a0a0a0; } .avatar { width: 140px; height: 140px; border-radius: 50%; margin: 2rem auto 1rem; background-image: url(https://api.dicebear.com/7.x/thumbs/svg?seedkaranveer); background-size: cover; background-position: center; border: 3px solid #00ffff; } main { max-width: 900px; margin: 2rem auto; padding: 1rem; background: rgba(20, 20, 20, 0.85); border-radius: 10px; } section { margin-bottom: 3rem; } h2 { color: #00ffff; border-bottom: 2px solid #00ffff; padding-bottom: 0.5rem; margin-bottom: 1rem; font-size: 1.8rem; } .project-card { background: #1e1e1e; border: 1px solid #2a2a2a; border-radius: 8px; padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: 0 0 15px rgba(0, 255, 255, 0.05); transition: transform 0.3s ease; } .project-card:hover { transform: translateY(-5px); box-shadow: 0 0 20px rgba(0, 255, 255, 0.2); } .project-card h3 { color: #00ffe5; margin-bottom: 0.5rem; } .project-card a { color: #00ffe5; text-decoration: none; font-weight: bold; } .contact-buttons a { display: inline-block; margin: 0.5rem; padding: 0.75rem 1.5rem; background-color: #00ffff; color: #000; text-decoration: none; border-radius: 30px; font-weight: bold; transition: background 0.3s ease; } .contact-buttons a:hover { background-color: #00cccc; } footer { text-align: center; padding: 2rem 1rem; color: #666; background-color: #111; border-top: 1px solid #333; } /style>/head>body>canvas idstars>/canvas>header> div classavatar>/div> h1>Karanveer Singh/h1> p>Cloud & IT Professional | AWS Certified | Problem Solver | Developer/p>/header>main> section> h2>About Me/h2> p>I’m an AWS Certified Cloud Practitioner with hands-on experience as an IT Technician and former Insurance Advisor in BC. I specialize in solving technical problems, building applications, and delivering real-world results using modern tools and technologies./p> /section> section> h2>Projects/h2> div classproject-card> h3>Yaari Notebooks/h3> p>A clean, responsive web app created for a client to showcase and manage notebook designs./p> a hrefhttps://yaari-notebooks.netlify.app target_blank>View Project/a> /div> div classproject-card> h3>Library Management System/h3> p>Desktop application built with Java, MySQL, and JDBC to manage library book inventory, lending, and member data./p> a hrefhttps://github.com/Karanveer-Singh28 target_blank>GitHub Repository/a> /div> /section> section> h2>Contact/h2> p>Email: a hrefmailto:ks393363@gmail.com stylecolor: #00cccc;>ks393363@gmail.com/a>/p> div classcontact-buttons> a hrefhttps://www.linkedin.com/in/karanveer-singh28 target_blank>LinkedIn/a> a hrefhttps://github.com/Karanveer-Singh28 target_blank>GitHub/a> a href# onclickalert(Resume coming soon!)>Download Resume/a> /div> /section>/main>footer> p>© 2025 Karanveer Singh. All rights reserved./p>/footer>script> const canvas document.getElementById(stars); const ctx canvas.getContext(2d); let stars ; function resizeCanvas() { canvas.width window.innerWidth; canvas.height window.innerHeight; stars Array.from({length: 150}, () > ({ x: Math.random() * canvas.width, y: Math.random() * canvas.height, r: Math.random() * 1.5 + 0.5, d: Math.random() * 0.5 + 0.05 })); } function drawStars() { ctx.clearRect(0, 0, canvas.width, canvas.height); ctx.fillStyle #00ffff; stars.forEach(s > { ctx.beginPath(); ctx.arc(s.x, s.y, s.r, 0, Math.PI * 2); ctx.fill(); }); updateStars(); } function updateStars() { stars.forEach(s > { s.y + s.d; if (s.y > canvas.height) { s.y 0; s.x Math.random() * canvas.width; } }); } window.addEventListener(resize, resizeCanvas); resizeCanvas(); setInterval(drawStars, 33);/script>/body>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]