Heroku
tcp/443
.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: 5f32cf5d6962f09c3af247253af247252af0f35dc27a6996cd1bd69218291711
Found 9 files trough .DS_Store spidering: /css /fonts /img /index.html /js /parallax.html /particle.html /slider.html /text-rotator.html
.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: 5f32cf5d6962f09c3af247253af247252af0f35dc27a6996cd1bd69218291711
Found 9 files trough .DS_Store spidering: /css /fonts /img /index.html /js /parallax.html /particle.html /slider.html /text-rotator.html
Open service 3.226.182.14:443 · www.dynamixcode.com
2026-01-09 23:05
HTTP/1.1 200 OK
Accept-Ranges: bytes
Content-Length: 20726
Content-Type: text/html
Date: Fri, 09 Jan 2026 23:05:45 GMT
Etag: "66ca5995-50f6"
Last-Modified: Sat, 24 Aug 2024 22:07:17 GMT
Nel: {"report_to":"heroku-nel","response_headers":["Via"],"max_age":3600,"success_fraction":0.01,"failure_fraction":0.1}
Report-To: {"group":"heroku-nel","endpoints":[{"url":"https://nel.heroku.com/reports?s=sJj8MWluduqeSVSclBAz%2BBbQB7R%2FnoQfy3SCV6XhdkM%3D\u0026sid=e11707d5-02a7-43ef-b45e-2cf4d2036f7d\u0026ts=1767999945"}],"max_age":3600}
Reporting-Endpoints: heroku-nel="https://nel.heroku.com/reports?s=sJj8MWluduqeSVSclBAz%2BBbQB7R%2FnoQfy3SCV6XhdkM%3D&sid=e11707d5-02a7-43ef-b45e-2cf4d2036f7d&ts=1767999945"
Server: Heroku
Via: 1.1 heroku-router
Connection: close
Page title: DynamixCode
<!DOCTYPE html>
<html class="no-js" lang="">
<head>
<!-- Added to git -->
<!-- Site Title -->
<title>DynamixCode</title>
<!-- Site Meta Info -->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="We Design, Develop, Integrate an Code your business needs">
<meta name="keywords" content="creative, html5, portfolio, parallax, personal, responsive">
<meta name="author" content="themebite.com">
<!-- Essential CSS Files -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/simplelightbox.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/style.css">
<!-- Color Styles | To Chage the color simply remove all the stylesheet form bellow without the color you want to keep -->
<link rel="stylesheet" href="css/colors/color-green.css">
<link rel="stylesheet" href="css/colors/color-blue.css">
<link rel="stylesheet" href="css/colors/color-aqua.css">
<link rel="stylesheet" href="css/colors/color-purple.css">
<link rel="stylesheet" href="css/colors/default-color.css">
<!-- Responsive CSS -->
<link rel="stylesheet" href="css/responsive.css">
<!-- Google Web Fonts =:= Raleway , Montserrat and Roboto -->
<link href='https://fonts.googleapis.com/css?family=Raleway:400,500,600,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Montserrat:700,400' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto:700,500,400' rel='stylesheet' type='text/css'>
<!-- Essential JS Files -->
<script src="js/vendor/jquery-1.11.3.min.js"></script>
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
<!-- IE9 Scripts -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/emailjs-com@3/dist/email.min.js"></script>
<script type="text/javascript">
(function () {
emailjs.init("user_ij8HCLZkaP2WaW0gAujlp");
})();
</script>
<!-- Typewriter script -->
<script type="text/javascript">
var TxtType = function (el, toRotate, period) {
this.toRotate = toRotate;
this.el = el;
this.loopNum = 0;
this.period = parseInt(period, 10) || 2000;
this.txt = '';
this.tick();
this.isDeleting = false;
};
TxtType.prototype.tick = function () {
var i = this.loopNum % this.toRotate.length;
var fullTxt = this.toRotate[i];
if (this.isDeleting) {
this.txt = fullTxt.substring(0, this.txt.length - 1);
} else {
this.txt = fullTxt.substring(0, this.txt.length + 1);
}
this.el.innerHTML = '<span class="wrap">' + this.txt + '</span>';
var that = this;
var delta = 200 - Math.random() * 100;
if (this.isDeleting) { delta /= 2; }
if (!this.isDeleting && this.txt === fullTxt) {
delta = this.period;
this.isDeleting = true;
} else if (this.isDeleting && this.txt === '') {
this.isDeleting = false;
this.loopNum++;
delta = 500;
}
setTimeout(function () {
that.tick();
}, delta);
};
window.onload = function () {
var elements = document.getElementsByClassName('typewrite');
for (var i = 0; i < elements.length; i++) {
var toRotate = elements[i].getAttribute('data-type');
var period = elements[i].getAttribute('data-period');
if (toRotate) {
new TxtType(elements[i], JSON.parse(toRotate), period);
}
}
// INJECT CSS
var css = documen
Open service 3.226.182.14:443 · www.dynamixcode.com
2026-01-02 13:15
HTTP/1.1 200 OK
Accept-Ranges: bytes
Content-Length: 20726
Content-Type: text/html
Date: Fri, 02 Jan 2026 13:15:16 GMT
Etag: "66ca5995-50f6"
Last-Modified: Sat, 24 Aug 2024 22:07:17 GMT
Nel: {"report_to":"heroku-nel","response_headers":["Via"],"max_age":3600,"success_fraction":0.01,"failure_fraction":0.1}
Report-To: {"group":"heroku-nel","endpoints":[{"url":"https://nel.heroku.com/reports?s=41osaJVJCSTJzZO1lgMYf2EAhEFx4sYRqyR62nQAdV0%3D\u0026sid=e11707d5-02a7-43ef-b45e-2cf4d2036f7d\u0026ts=1767359716"}],"max_age":3600}
Reporting-Endpoints: heroku-nel="https://nel.heroku.com/reports?s=41osaJVJCSTJzZO1lgMYf2EAhEFx4sYRqyR62nQAdV0%3D&sid=e11707d5-02a7-43ef-b45e-2cf4d2036f7d&ts=1767359716"
Server: Heroku
Via: 1.1 heroku-router
Connection: close
Page title: DynamixCode
<!DOCTYPE html>
<html class="no-js" lang="">
<head>
<!-- Added to git -->
<!-- Site Title -->
<title>DynamixCode</title>
<!-- Site Meta Info -->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="We Design, Develop, Integrate an Code your business needs">
<meta name="keywords" content="creative, html5, portfolio, parallax, personal, responsive">
<meta name="author" content="themebite.com">
<!-- Essential CSS Files -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/simplelightbox.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/style.css">
<!-- Color Styles | To Chage the color simply remove all the stylesheet form bellow without the color you want to keep -->
<link rel="stylesheet" href="css/colors/color-green.css">
<link rel="stylesheet" href="css/colors/color-blue.css">
<link rel="stylesheet" href="css/colors/color-aqua.css">
<link rel="stylesheet" href="css/colors/color-purple.css">
<link rel="stylesheet" href="css/colors/default-color.css">
<!-- Responsive CSS -->
<link rel="stylesheet" href="css/responsive.css">
<!-- Google Web Fonts =:= Raleway , Montserrat and Roboto -->
<link href='https://fonts.googleapis.com/css?family=Raleway:400,500,600,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Montserrat:700,400' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto:700,500,400' rel='stylesheet' type='text/css'>
<!-- Essential JS Files -->
<script src="js/vendor/jquery-1.11.3.min.js"></script>
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
<!-- IE9 Scripts -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/emailjs-com@3/dist/email.min.js"></script>
<script type="text/javascript">
(function () {
emailjs.init("user_ij8HCLZkaP2WaW0gAujlp");
})();
</script>
<!-- Typewriter script -->
<script type="text/javascript">
var TxtType = function (el, toRotate, period) {
this.toRotate = toRotate;
this.el = el;
this.loopNum = 0;
this.period = parseInt(period, 10) || 2000;
this.txt = '';
this.tick();
this.isDeleting = false;
};
TxtType.prototype.tick = function () {
var i = this.loopNum % this.toRotate.length;
var fullTxt = this.toRotate[i];
if (this.isDeleting) {
this.txt = fullTxt.substring(0, this.txt.length - 1);
} else {
this.txt = fullTxt.substring(0, this.txt.length + 1);
}
this.el.innerHTML = '<span class="wrap">' + this.txt + '</span>';
var that = this;
var delta = 200 - Math.random() * 100;
if (this.isDeleting) { delta /= 2; }
if (!this.isDeleting && this.txt === fullTxt) {
delta = this.period;
this.isDeleting = true;
} else if (this.isDeleting && this.txt === '') {
this.isDeleting = false;
this.loopNum++;
delta = 500;
}
setTimeout(function () {
that.tick();
}, delta);
};
window.onload = function () {
var elements = document.getElementsByClassName('typewrite');
for (var i = 0; i < elements.length; i++) {
var toRotate = elements[i].getAttribute('data-type');
var period = elements[i].getAttribute('data-period');
if (toRotate) {
new TxtType(elements[i], JSON.parse(toRotate), period);
}
}
// INJECT CSS
var css = documen
Open service 3.226.182.14:443 · www.dynamixcode.com
2025-12-22 13:19
HTTP/1.1 200 OK
Accept-Ranges: bytes
Content-Length: 20726
Content-Type: text/html
Date: Mon, 22 Dec 2025 13:19:55 GMT
Etag: "66ca5995-50f6"
Last-Modified: Sat, 24 Aug 2024 22:07:17 GMT
Nel: {"report_to":"heroku-nel","response_headers":["Via"],"max_age":3600,"success_fraction":0.01,"failure_fraction":0.1}
Report-To: {"group":"heroku-nel","endpoints":[{"url":"https://nel.heroku.com/reports?s=fBfb%2FaTi3gz9eZKmlE7fkde3SsfnUEShSKXJi8b6wFg%3D\u0026sid=e11707d5-02a7-43ef-b45e-2cf4d2036f7d\u0026ts=1766409595"}],"max_age":3600}
Reporting-Endpoints: heroku-nel="https://nel.heroku.com/reports?s=fBfb%2FaTi3gz9eZKmlE7fkde3SsfnUEShSKXJi8b6wFg%3D&sid=e11707d5-02a7-43ef-b45e-2cf4d2036f7d&ts=1766409595"
Server: Heroku
Via: 1.1 heroku-router
Connection: close
Page title: DynamixCode
<!DOCTYPE html>
<html class="no-js" lang="">
<head>
<!-- Added to git -->
<!-- Site Title -->
<title>DynamixCode</title>
<!-- Site Meta Info -->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="We Design, Develop, Integrate an Code your business needs">
<meta name="keywords" content="creative, html5, portfolio, parallax, personal, responsive">
<meta name="author" content="themebite.com">
<!-- Essential CSS Files -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/simplelightbox.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/style.css">
<!-- Color Styles | To Chage the color simply remove all the stylesheet form bellow without the color you want to keep -->
<link rel="stylesheet" href="css/colors/color-green.css">
<link rel="stylesheet" href="css/colors/color-blue.css">
<link rel="stylesheet" href="css/colors/color-aqua.css">
<link rel="stylesheet" href="css/colors/color-purple.css">
<link rel="stylesheet" href="css/colors/default-color.css">
<!-- Responsive CSS -->
<link rel="stylesheet" href="css/responsive.css">
<!-- Google Web Fonts =:= Raleway , Montserrat and Roboto -->
<link href='https://fonts.googleapis.com/css?family=Raleway:400,500,600,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Montserrat:700,400' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto:700,500,400' rel='stylesheet' type='text/css'>
<!-- Essential JS Files -->
<script src="js/vendor/jquery-1.11.3.min.js"></script>
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
<!-- IE9 Scripts -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/emailjs-com@3/dist/email.min.js"></script>
<script type="text/javascript">
(function () {
emailjs.init("user_ij8HCLZkaP2WaW0gAujlp");
})();
</script>
<!-- Typewriter script -->
<script type="text/javascript">
var TxtType = function (el, toRotate, period) {
this.toRotate = toRotate;
this.el = el;
this.loopNum = 0;
this.period = parseInt(period, 10) || 2000;
this.txt = '';
this.tick();
this.isDeleting = false;
};
TxtType.prototype.tick = function () {
var i = this.loopNum % this.toRotate.length;
var fullTxt = this.toRotate[i];
if (this.isDeleting) {
this.txt = fullTxt.substring(0, this.txt.length - 1);
} else {
this.txt = fullTxt.substring(0, this.txt.length + 1);
}
this.el.innerHTML = '<span class="wrap">' + this.txt + '</span>';
var that = this;
var delta = 200 - Math.random() * 100;
if (this.isDeleting) { delta /= 2; }
if (!this.isDeleting && this.txt === fullTxt) {
delta = this.period;
this.isDeleting = true;
} else if (this.isDeleting && this.txt === '') {
this.isDeleting = false;
this.loopNum++;
delta = 500;
}
setTimeout(function () {
that.tick();
}, delta);
};
window.onload = function () {
var elements = document.getElementsByClassName('typewrite');
for (var i = 0; i < elements.length; i++) {
var toRotate = elements[i].getAttribute('data-type');
var period = elements[i].getAttribute('data-period');
if (toRotate) {
new TxtType(elements[i], JSON.parse(toRotate), period);
}
}
// INJECT CSS
var css = documen
Open service 3.226.182.14:443 · www.dynamixcode.com
2025-12-20 12:46
HTTP/1.1 200 OK
Accept-Ranges: bytes
Content-Length: 20726
Content-Type: text/html
Date: Sat, 20 Dec 2025 12:46:48 GMT
Etag: "66ca5995-50f6"
Last-Modified: Sat, 24 Aug 2024 22:07:17 GMT
Nel: {"report_to":"heroku-nel","response_headers":["Via"],"max_age":3600,"success_fraction":0.01,"failure_fraction":0.1}
Report-To: {"group":"heroku-nel","endpoints":[{"url":"https://nel.heroku.com/reports?s=o%2BOByK1xRZvxj%2Bu7SqshtLwKnKZYpsnUvmauPE%2BwatY%3D\u0026sid=e11707d5-02a7-43ef-b45e-2cf4d2036f7d\u0026ts=1766234808"}],"max_age":3600}
Reporting-Endpoints: heroku-nel="https://nel.heroku.com/reports?s=o%2BOByK1xRZvxj%2Bu7SqshtLwKnKZYpsnUvmauPE%2BwatY%3D&sid=e11707d5-02a7-43ef-b45e-2cf4d2036f7d&ts=1766234808"
Server: Heroku
Via: 1.1 heroku-router
Connection: close
Page title: DynamixCode
<!DOCTYPE html>
<html class="no-js" lang="">
<head>
<!-- Added to git -->
<!-- Site Title -->
<title>DynamixCode</title>
<!-- Site Meta Info -->
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="We Design, Develop, Integrate an Code your business needs">
<meta name="keywords" content="creative, html5, portfolio, parallax, personal, responsive">
<meta name="author" content="themebite.com">
<!-- Essential CSS Files -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/animate.css">
<link rel="stylesheet" href="css/simplelightbox.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/style.css">
<!-- Color Styles | To Chage the color simply remove all the stylesheet form bellow without the color you want to keep -->
<link rel="stylesheet" href="css/colors/color-green.css">
<link rel="stylesheet" href="css/colors/color-blue.css">
<link rel="stylesheet" href="css/colors/color-aqua.css">
<link rel="stylesheet" href="css/colors/color-purple.css">
<link rel="stylesheet" href="css/colors/default-color.css">
<!-- Responsive CSS -->
<link rel="stylesheet" href="css/responsive.css">
<!-- Google Web Fonts =:= Raleway , Montserrat and Roboto -->
<link href='https://fonts.googleapis.com/css?family=Raleway:400,500,600,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Montserrat:700,400' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto:700,500,400' rel='stylesheet' type='text/css'>
<!-- Essential JS Files -->
<script src="js/vendor/jquery-1.11.3.min.js"></script>
<script src="js/vendor/modernizr-2.8.3.min.js"></script>
<!-- IE9 Scripts -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/emailjs-com@3/dist/email.min.js"></script>
<script type="text/javascript">
(function () {
emailjs.init("user_ij8HCLZkaP2WaW0gAujlp");
})();
</script>
<!-- Typewriter script -->
<script type="text/javascript">
var TxtType = function (el, toRotate, period) {
this.toRotate = toRotate;
this.el = el;
this.loopNum = 0;
this.period = parseInt(period, 10) || 2000;
this.txt = '';
this.tick();
this.isDeleting = false;
};
TxtType.prototype.tick = function () {
var i = this.loopNum % this.toRotate.length;
var fullTxt = this.toRotate[i];
if (this.isDeleting) {
this.txt = fullTxt.substring(0, this.txt.length - 1);
} else {
this.txt = fullTxt.substring(0, this.txt.length + 1);
}
this.el.innerHTML = '<span class="wrap">' + this.txt + '</span>';
var that = this;
var delta = 200 - Math.random() * 100;
if (this.isDeleting) { delta /= 2; }
if (!this.isDeleting && this.txt === fullTxt) {
delta = this.period;
this.isDeleting = true;
} else if (this.isDeleting && this.txt === '') {
this.isDeleting = false;
this.loopNum++;
delta = 500;
}
setTimeout(function () {
that.tick();
}, delta);
};
window.onload = function () {
var elements = document.getElementsByClassName('typewrite');
for (var i = 0; i < elements.length; i++) {
var toRotate = elements[i].getAttribute('data-type');
var period = elements[i].getAttribute('data-period');
if (toRotate) {
new TxtType(elements[i], JSON.parse(toRotate), period);
}
}
// INJECT CSS
var css = documen