nginx
tcp/443 tcp/80
.DS_Store” is an abbreviation for “Desktop Services Store”. These files are created automatically by Apples “Finder” software (which is part of their OS).
They store information about the files within a folder, including display options of folders, such as icon positions and view settings.
It may happen that .DS_Store files inadvertently leak filenames such as database backups or private administration panels.
Severity: low
Fingerprint: 5f32cf5d6962f09c63442d9d63442d9d703169fc703169fc703169fc703169fc
Found 1 files trough .DS_Store spidering: /sections
Open service 2a01:5b40:0:4a05:0:1a03:42de:cfbc:80 · www.naya-customer.no
2026-01-01 19:49
HTTP/1.1 301 Moved Permanently Server: nginx Date: Thu, 01 Jan 2026 19:49:31 GMT Content-Type: text/html Content-Length: 162 Connection: close Location: https://www.naya-customer.no/ Page title: 301 Moved Permanently <html> <head><title>301 Moved Permanently</title></head> <body> <center><h1>301 Moved Permanently</h1></center> <hr><center>nginx</center> </body> </html>
Open service 2a01:5b40:0:4a05:0:1a03:42de:cfbc:443 · www.naya-customer.no
2026-01-01 19:49
HTTP/1.1 200 OK
Server: nginx
Date: Thu, 01 Jan 2026 19:49:31 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: close
Vary: Accept-Encoding
Set-Cookie: PHPSESSID=fb793c3ffa073dd11915ad3c03a1af12; expires=Sat, 03 Jan 2026 19:49:31 GMT; Max-Age=172800; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache
Vary: Accept-Encoding
Content-Security-Policy: upgrade-insecure-requests
Page title: Naya Customer Portal
<!-- Debug info: User status and section -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Naya Customer Portal</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body data-logged-in="false">
<!-- Add this right after the opening body tag -->
<!-- Header Navigation -->
<header class="site-header">
<div class="container">
<div class="logo">
<a href="index.php">
<img src="assets/logo.png" alt="Logo">
</a>
</div>
<nav class="main-nav">
<ul>
<li><a href="index.php" class="active">Home</a></li>
</ul>
</nav>
<div class="auth-buttons">
<button id="login-btn" class="btn btn-primary">Login</button>
</div>
<button class="mobile-menu-toggle hidden">
<span></span>
<span></span>
<span></span>
</button>
</div>
</header>
<main>
<section id="home-section" class="section active">
<div class="container">
<div class="hero">
<div class="hero-content">
<h1>Welcome to Naya Customer Portal</h1>
<p>Securely access and manage your files with our easy-to-use platform.</p>
<button id="get-started-btn" class="btn btn-primary login-btn">Get Started</button>
</div>
</div>
<div class="features">
<h2 class="section-title">Our Features</h2>
<div class="feature-grid">
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-upload"></i>
</div>
<h3>Easy File Upload</h3>
<p>Quickly upload your files with our intuitive interface.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-download"></i>
</div>
<h3>Secure Downloads</h3>
<p>Access and download your files securely anytime.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-shield-alt"></i>
</div>
<h3>Data Security</h3>
<p>Your data is encrypted and protected at all times.</p>
</div>
<div class="feature-card">
<div class="feature-icon">
<i class="fas fa-chart-line"></i>
</div>
<h3>Activity Tracking</h3>
<p>Monitor your account activity with detailed logs.</p>
</div>
</div>
</div>
<div class="cta-section">
<div class="cta-content">
<h2>Ready to Get Started?</h2>
<p>Join thousands of satisfied customers using our platform.</p>
<button id="cta-signup-btn" class="btn btn-primary">Create an Account</button>
</div>
</div>
</div>
</section>
<script>
// Add event listener to the Get Started button to open the login modal
document.addEventListener('DOMContentLoaded', function() {
// Get Started button in hero section
const getStartedBtn = document.getElementById('get-started-btn');
if (getStartedBtn) {
getStartedBtn.addEventListener('click', function() {
const loginModal = document.getElementById('login-modal');
if (loginModal) {
loginModal.style.display = 'block';
// Focus on the email input
const emailInput = document.getElementById('modal-login-email');
if (emailInput) {
emailInput.focus();
}
}
});
}
// Create an Account button in CTA section
const ctaSignupBtn = document.getElementById('cta-signup-btn');
if (ctaSignupBtn) {
ctaSignupBtn.addEventListener('click', function() {
const loginModal = document.getElementById('login-modal');
if (loginModal) {
loginModal.style.display = 'block';
// Focus on the email input