.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: 5f32cf5d6962f09cccdd54a0ccdd54a0904d808db69478e3b2c0173e16fbcdb7
Found 13 files trough .DS_Store spidering: /.git /.github /build /files /fonts /js /jsm /luts /models /screenshots /sounds /textures /textures/planets
Severity: low
Fingerprint: 5f32cf5d6962f09c11d3744d11d3744d9930cc4639ff91e0ed8db129dcd5f6f5
Found 12 files trough .DS_Store spidering: /.git /.github /build /files /fonts /js /jsm /luts /models /screenshots /sounds /textures
Open service 51.124.12.35:443 · hotspot.execor.com
2026-01-09 20:38
HTTP/1.1 200 OK
Content-Length: 8062
Connection: close
Content-Type: text/html
Date: Fri, 09 Jan 2026 20:39:06 GMT
Cache-Control: public, must-revalidate, max-age=30
ETag: "57848191"
Last-Modified: Sat, 21 May 2022 01:19:30 GMT
Strict-Transport-Security: max-age=10886400; includeSubDomains; preload
Referrer-Policy: same-origin
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
X-DNS-Prefetch-Control: off
Page title: Execor Systems LLC
<!DOCTYPE html>
<html lang="en">
<head>
<title>Execor Systems LLC</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link type="text/css" rel="stylesheet" href="main.css">
<style>
@font-face {
font-family: 'Mono';
/*a name to be used later*/
src: url('./fonts/UbuntuMono-Regular.ttf');
/*URL to font*/
}
#companyName {
margin:.25em;
font-family: Mono;
font-size: 3em;
}
body {
background: #000;
color: #eee;
}
a {
color: #0080ff;
}
b {
color: orange
}
</style>
</head>
<body>
<!-- Import maps polyfill -->
<!-- Remove this when import maps will be widely supported -->
<script async src="https://unpkg.com/es-module-shims@1.3.6/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"three": "./build/three.module.js"
}
}
</script>
<script type="module">
import * as THREE from 'three';
//import Stats from './jsm/libs/stats.module.js';
import { FlyControls } from './jsm/controls/FlyControls.js';
import { EffectComposer } from './jsm/postprocessing/EffectComposer.js';
import { RenderPass } from './jsm/postprocessing/RenderPass.js';
import { FilmPass } from './jsm/postprocessing/FilmPass.js';
const radius = 6371;
const tilt = 0.41;
const rotationSpeed = 0.02;
const cloudsScale = 1.005;
const moonScale = 0.23;
const MARGIN = 0;
let SCREEN_HEIGHT = window.innerHeight - MARGIN * 2;
let SCREEN_WIDTH = window.innerWidth;
let camera, controls, scene, renderer, stats;
let geometry, meshPlanet, meshClouds, meshMoon;
let dirLight;
let composer;
const textureLoader = new THREE.TextureLoader();
let d, dPlanet, dMoon;
const dMoonVec = new THREE.Vector3();
const clock = new THREE.Clock();
init();
animate();
function init() {
camera = new THREE.PerspectiveCamera(25, SCREEN_WIDTH / SCREEN_HEIGHT, 50, 1e7);
camera.position.z = radius * 5;
scene = new THREE.Scene();
scene.fog = new THREE.FogExp2(0x000000, 0.00000025);
dirLight = new THREE.DirectionalLight(0xffffff);
dirLight.position.set(- 1, 0, 1).normalize();
scene.add(dirLight);
const materialNormalMap = new THREE.MeshPhongMaterial({
specular: 0x333333,
shininess: 15,
map: textureLoader.load("textures/planets/earth_atmos_2048.jpg"),
specularMap: textureLoader.load("textures/planets/earth_specular_2048.jpg"),
normalMap: textureLoader.load("textures/planets/earth_normal_2048.jpg"),
// y scale is negated to compensate for normal map handedness.
normalScale: new THREE.Vector2(0.85, - 0.85)
});
// planet
geometry = new THREE.SphereGeometry(radius, 100, 50);
meshPlanet = new THREE.Mesh(geometry, materialNormalMap);
meshPlanet.rotation.y = 0;
meshPlanet.rotation.z = tilt;
scene.add(meshPlanet);
// clouds
const materialClouds = new THREE.MeshLambertMaterial({
map: textureLoader.load("textures/planets/earth_clouds_1024.png"),
transparent: true
});
meshClouds = new THREE.Mesh(geometry, materialClouds);
meshClouds.scale.set(cloudsScale, cloudsScale, cloudsScale);
meshClouds.rotation.z = tilt;
scene.add(meshClouds);
// moon
const materialMoon = new THREE.MeshPhongMaterial({
map: textureLoader.load("textures/planets/moon_1024.jpg")
});
meshMoon = new THREE.Mesh(geometry, materialMoon);
meshMoon.position.set(radius * 5, 0, 0);
meshMoon.scale.set(moonScale, moonScale, moonScale);
scene.add(meshMoon);
// stars
const r = radius, starsGeometry = [new THREE.BufferGeometry(), new THREE.BufferGeometry()];
const vertices1 = [];
const vertices2 = [];
const vertex = new THREE.Vector3();
for (let i = 0; i < 250; i++) {
vertex.x = M
Open service 51.124.12.35:443 · hotspot.execor.com
2026-01-02 17:05
HTTP/1.1 200 OK
Content-Length: 8062
Connection: close
Content-Type: text/html
Date: Fri, 02 Jan 2026 17:05:35 GMT
Cache-Control: public, must-revalidate, max-age=30
ETag: "57848191"
Last-Modified: Sat, 21 May 2022 01:19:30 GMT
Strict-Transport-Security: max-age=10886400; includeSubDomains; preload
Referrer-Policy: same-origin
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
X-DNS-Prefetch-Control: off
Page title: Execor Systems LLC
<!DOCTYPE html>
<html lang="en">
<head>
<title>Execor Systems LLC</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link type="text/css" rel="stylesheet" href="main.css">
<style>
@font-face {
font-family: 'Mono';
/*a name to be used later*/
src: url('./fonts/UbuntuMono-Regular.ttf');
/*URL to font*/
}
#companyName {
margin:.25em;
font-family: Mono;
font-size: 3em;
}
body {
background: #000;
color: #eee;
}
a {
color: #0080ff;
}
b {
color: orange
}
</style>
</head>
<body>
<!-- Import maps polyfill -->
<!-- Remove this when import maps will be widely supported -->
<script async src="https://unpkg.com/es-module-shims@1.3.6/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"three": "./build/three.module.js"
}
}
</script>
<script type="module">
import * as THREE from 'three';
//import Stats from './jsm/libs/stats.module.js';
import { FlyControls } from './jsm/controls/FlyControls.js';
import { EffectComposer } from './jsm/postprocessing/EffectComposer.js';
import { RenderPass } from './jsm/postprocessing/RenderPass.js';
import { FilmPass } from './jsm/postprocessing/FilmPass.js';
const radius = 6371;
const tilt = 0.41;
const rotationSpeed = 0.02;
const cloudsScale = 1.005;
const moonScale = 0.23;
const MARGIN = 0;
let SCREEN_HEIGHT = window.innerHeight - MARGIN * 2;
let SCREEN_WIDTH = window.innerWidth;
let camera, controls, scene, renderer, stats;
let geometry, meshPlanet, meshClouds, meshMoon;
let dirLight;
let composer;
const textureLoader = new THREE.TextureLoader();
let d, dPlanet, dMoon;
const dMoonVec = new THREE.Vector3();
const clock = new THREE.Clock();
init();
animate();
function init() {
camera = new THREE.PerspectiveCamera(25, SCREEN_WIDTH / SCREEN_HEIGHT, 50, 1e7);
camera.position.z = radius * 5;
scene = new THREE.Scene();
scene.fog = new THREE.FogExp2(0x000000, 0.00000025);
dirLight = new THREE.DirectionalLight(0xffffff);
dirLight.position.set(- 1, 0, 1).normalize();
scene.add(dirLight);
const materialNormalMap = new THREE.MeshPhongMaterial({
specular: 0x333333,
shininess: 15,
map: textureLoader.load("textures/planets/earth_atmos_2048.jpg"),
specularMap: textureLoader.load("textures/planets/earth_specular_2048.jpg"),
normalMap: textureLoader.load("textures/planets/earth_normal_2048.jpg"),
// y scale is negated to compensate for normal map handedness.
normalScale: new THREE.Vector2(0.85, - 0.85)
});
// planet
geometry = new THREE.SphereGeometry(radius, 100, 50);
meshPlanet = new THREE.Mesh(geometry, materialNormalMap);
meshPlanet.rotation.y = 0;
meshPlanet.rotation.z = tilt;
scene.add(meshPlanet);
// clouds
const materialClouds = new THREE.MeshLambertMaterial({
map: textureLoader.load("textures/planets/earth_clouds_1024.png"),
transparent: true
});
meshClouds = new THREE.Mesh(geometry, materialClouds);
meshClouds.scale.set(cloudsScale, cloudsScale, cloudsScale);
meshClouds.rotation.z = tilt;
scene.add(meshClouds);
// moon
const materialMoon = new THREE.MeshPhongMaterial({
map: textureLoader.load("textures/planets/moon_1024.jpg")
});
meshMoon = new THREE.Mesh(geometry, materialMoon);
meshMoon.position.set(radius * 5, 0, 0);
meshMoon.scale.set(moonScale, moonScale, moonScale);
scene.add(meshMoon);
// stars
const r = radius, starsGeometry = [new THREE.BufferGeometry(), new THREE.BufferGeometry()];
const vertices1 = [];
const vertices2 = [];
const vertex = new THREE.Vector3();
for (let i = 0; i < 250; i++) {
vertex.x = M
Open service 51.124.12.35:443 · hotspot.execor.com
2025-12-23 01:54
HTTP/1.1 200 OK
Content-Length: 8062
Connection: close
Content-Type: text/html
Date: Tue, 23 Dec 2025 01:54:49 GMT
Cache-Control: public, must-revalidate, max-age=30
ETag: "57848191"
Last-Modified: Sat, 21 May 2022 01:19:30 GMT
Strict-Transport-Security: max-age=10886400; includeSubDomains; preload
Referrer-Policy: same-origin
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
X-DNS-Prefetch-Control: off
Page title: Execor Systems LLC
<!DOCTYPE html>
<html lang="en">
<head>
<title>Execor Systems LLC</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link type="text/css" rel="stylesheet" href="main.css">
<style>
@font-face {
font-family: 'Mono';
/*a name to be used later*/
src: url('./fonts/UbuntuMono-Regular.ttf');
/*URL to font*/
}
#companyName {
margin:.25em;
font-family: Mono;
font-size: 3em;
}
body {
background: #000;
color: #eee;
}
a {
color: #0080ff;
}
b {
color: orange
}
</style>
</head>
<body>
<!-- Import maps polyfill -->
<!-- Remove this when import maps will be widely supported -->
<script async src="https://unpkg.com/es-module-shims@1.3.6/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"three": "./build/three.module.js"
}
}
</script>
<script type="module">
import * as THREE from 'three';
//import Stats from './jsm/libs/stats.module.js';
import { FlyControls } from './jsm/controls/FlyControls.js';
import { EffectComposer } from './jsm/postprocessing/EffectComposer.js';
import { RenderPass } from './jsm/postprocessing/RenderPass.js';
import { FilmPass } from './jsm/postprocessing/FilmPass.js';
const radius = 6371;
const tilt = 0.41;
const rotationSpeed = 0.02;
const cloudsScale = 1.005;
const moonScale = 0.23;
const MARGIN = 0;
let SCREEN_HEIGHT = window.innerHeight - MARGIN * 2;
let SCREEN_WIDTH = window.innerWidth;
let camera, controls, scene, renderer, stats;
let geometry, meshPlanet, meshClouds, meshMoon;
let dirLight;
let composer;
const textureLoader = new THREE.TextureLoader();
let d, dPlanet, dMoon;
const dMoonVec = new THREE.Vector3();
const clock = new THREE.Clock();
init();
animate();
function init() {
camera = new THREE.PerspectiveCamera(25, SCREEN_WIDTH / SCREEN_HEIGHT, 50, 1e7);
camera.position.z = radius * 5;
scene = new THREE.Scene();
scene.fog = new THREE.FogExp2(0x000000, 0.00000025);
dirLight = new THREE.DirectionalLight(0xffffff);
dirLight.position.set(- 1, 0, 1).normalize();
scene.add(dirLight);
const materialNormalMap = new THREE.MeshPhongMaterial({
specular: 0x333333,
shininess: 15,
map: textureLoader.load("textures/planets/earth_atmos_2048.jpg"),
specularMap: textureLoader.load("textures/planets/earth_specular_2048.jpg"),
normalMap: textureLoader.load("textures/planets/earth_normal_2048.jpg"),
// y scale is negated to compensate for normal map handedness.
normalScale: new THREE.Vector2(0.85, - 0.85)
});
// planet
geometry = new THREE.SphereGeometry(radius, 100, 50);
meshPlanet = new THREE.Mesh(geometry, materialNormalMap);
meshPlanet.rotation.y = 0;
meshPlanet.rotation.z = tilt;
scene.add(meshPlanet);
// clouds
const materialClouds = new THREE.MeshLambertMaterial({
map: textureLoader.load("textures/planets/earth_clouds_1024.png"),
transparent: true
});
meshClouds = new THREE.Mesh(geometry, materialClouds);
meshClouds.scale.set(cloudsScale, cloudsScale, cloudsScale);
meshClouds.rotation.z = tilt;
scene.add(meshClouds);
// moon
const materialMoon = new THREE.MeshPhongMaterial({
map: textureLoader.load("textures/planets/moon_1024.jpg")
});
meshMoon = new THREE.Mesh(geometry, materialMoon);
meshMoon.position.set(radius * 5, 0, 0);
meshMoon.scale.set(moonScale, moonScale, moonScale);
scene.add(meshMoon);
// stars
const r = radius, starsGeometry = [new THREE.BufferGeometry(), new THREE.BufferGeometry()];
const vertices1 = [];
const vertices2 = [];
const vertex = new THREE.Vector3();
for (let i = 0; i < 250; i++) {
vertex.x = M
Open service 51.124.12.35:443 · hotspot.execor.com
2025-12-20 14:43
HTTP/1.1 200 OK
Content-Length: 8062
Connection: close
Content-Type: text/html
Date: Sat, 20 Dec 2025 14:43:54 GMT
Cache-Control: public, must-revalidate, max-age=30
ETag: "57848191"
Last-Modified: Sat, 21 May 2022 01:19:30 GMT
Strict-Transport-Security: max-age=10886400; includeSubDomains; preload
Referrer-Policy: same-origin
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
X-DNS-Prefetch-Control: off
Page title: Execor Systems LLC
<!DOCTYPE html>
<html lang="en">
<head>
<title>Execor Systems LLC</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link type="text/css" rel="stylesheet" href="main.css">
<style>
@font-face {
font-family: 'Mono';
/*a name to be used later*/
src: url('./fonts/UbuntuMono-Regular.ttf');
/*URL to font*/
}
#companyName {
margin:.25em;
font-family: Mono;
font-size: 3em;
}
body {
background: #000;
color: #eee;
}
a {
color: #0080ff;
}
b {
color: orange
}
</style>
</head>
<body>
<!-- Import maps polyfill -->
<!-- Remove this when import maps will be widely supported -->
<script async src="https://unpkg.com/es-module-shims@1.3.6/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"three": "./build/three.module.js"
}
}
</script>
<script type="module">
import * as THREE from 'three';
//import Stats from './jsm/libs/stats.module.js';
import { FlyControls } from './jsm/controls/FlyControls.js';
import { EffectComposer } from './jsm/postprocessing/EffectComposer.js';
import { RenderPass } from './jsm/postprocessing/RenderPass.js';
import { FilmPass } from './jsm/postprocessing/FilmPass.js';
const radius = 6371;
const tilt = 0.41;
const rotationSpeed = 0.02;
const cloudsScale = 1.005;
const moonScale = 0.23;
const MARGIN = 0;
let SCREEN_HEIGHT = window.innerHeight - MARGIN * 2;
let SCREEN_WIDTH = window.innerWidth;
let camera, controls, scene, renderer, stats;
let geometry, meshPlanet, meshClouds, meshMoon;
let dirLight;
let composer;
const textureLoader = new THREE.TextureLoader();
let d, dPlanet, dMoon;
const dMoonVec = new THREE.Vector3();
const clock = new THREE.Clock();
init();
animate();
function init() {
camera = new THREE.PerspectiveCamera(25, SCREEN_WIDTH / SCREEN_HEIGHT, 50, 1e7);
camera.position.z = radius * 5;
scene = new THREE.Scene();
scene.fog = new THREE.FogExp2(0x000000, 0.00000025);
dirLight = new THREE.DirectionalLight(0xffffff);
dirLight.position.set(- 1, 0, 1).normalize();
scene.add(dirLight);
const materialNormalMap = new THREE.MeshPhongMaterial({
specular: 0x333333,
shininess: 15,
map: textureLoader.load("textures/planets/earth_atmos_2048.jpg"),
specularMap: textureLoader.load("textures/planets/earth_specular_2048.jpg"),
normalMap: textureLoader.load("textures/planets/earth_normal_2048.jpg"),
// y scale is negated to compensate for normal map handedness.
normalScale: new THREE.Vector2(0.85, - 0.85)
});
// planet
geometry = new THREE.SphereGeometry(radius, 100, 50);
meshPlanet = new THREE.Mesh(geometry, materialNormalMap);
meshPlanet.rotation.y = 0;
meshPlanet.rotation.z = tilt;
scene.add(meshPlanet);
// clouds
const materialClouds = new THREE.MeshLambertMaterial({
map: textureLoader.load("textures/planets/earth_clouds_1024.png"),
transparent: true
});
meshClouds = new THREE.Mesh(geometry, materialClouds);
meshClouds.scale.set(cloudsScale, cloudsScale, cloudsScale);
meshClouds.rotation.z = tilt;
scene.add(meshClouds);
// moon
const materialMoon = new THREE.MeshPhongMaterial({
map: textureLoader.load("textures/planets/moon_1024.jpg")
});
meshMoon = new THREE.Mesh(geometry, materialMoon);
meshMoon.position.set(radius * 5, 0, 0);
meshMoon.scale.set(moonScale, moonScale, moonScale);
scene.add(meshMoon);
// stars
const r = radius, starsGeometry = [new THREE.BufferGeometry(), new THREE.BufferGeometry()];
const vertices1 = [];
const vertices2 = [];
const vertex = new THREE.Vector3();
for (let i = 0; i < 250; i++) {
vertex.x = M