Apache
tcp/443 tcp/80
nginx 1.25.5
tcp/443 tcp/80
Open service 192.185.129.71:443 · remarkadv.com
2026-01-09 10:04
HTTP/1.1 200 OK Date: Fri, 09 Jan 2026 10:04:06 GMT Server: nginx/1.25.5 Content-Type: text/html; charset=UTF-8 Last-Modified: Fri, 09 Jan 2026 03:30:49 GMT Cache-Control: max-age=0 Expires: Fri, 09 Jan 2026 10:04:06 GMT Vary: Accept-Encoding Accept-Ranges: none X-Server-Cache: true X-Proxy-Cache: MISS Transfer-Encoding: chunked
Open service 192.185.129.71:80 · remarkadv.com
2026-01-09 08:21
HTTP/1.1 200 OK Date: Fri, 09 Jan 2026 08:21:29 GMT Server: nginx/1.25.5 Content-Type: text/html; charset=UTF-8 Last-Modified: Fri, 09 Jan 2026 07:40:19 GMT Cache-Control: max-age=0 Expires: Fri, 09 Jan 2026 08:21:29 GMT Vary: Accept-Encoding X-Server-Cache: true X-Proxy-Cache: MISS Transfer-Encoding: chunked
Open service 192.185.129.71:443 · remarkadv.com
2026-01-02 10:31
HTTP/1.1 200 OK Date: Fri, 02 Jan 2026 10:31:34 GMT Server: nginx/1.25.5 Content-Type: text/html; charset=UTF-8 Last-Modified: Fri, 02 Jan 2026 06:32:32 GMT Cache-Control: max-age=0 Expires: Fri, 02 Jan 2026 10:31:34 GMT Vary: Accept-Encoding X-Server-Cache: true X-Proxy-Cache: MISS Accept-Ranges: none Transfer-Encoding: chunked
Open service 192.185.129.71:443 · remarkadv.com
2025-12-23 07:19
HTTP/1.1 200 OK Date: Tue, 23 Dec 2025 07:19:49 GMT Server: nginx/1.25.5 Content-Type: text/html; charset=UTF-8 Last-Modified: Mon, 22 Dec 2025 22:37:26 GMT Cache-Control: max-age=0 Expires: Tue, 23 Dec 2025 07:19:49 GMT Vary: Accept-Encoding X-Server-Cache: true X-Proxy-Cache: MISS Transfer-Encoding: chunked
Open service 192.185.129.71:80 · remarkadv.com
2025-12-22 10:52
HTTP/1.1 200 OK Date: Mon, 22 Dec 2025 10:52:45 GMT Server: nginx/1.25.5 Content-Type: text/html; charset=UTF-8 Last-Modified: Mon, 22 Dec 2025 03:00:52 GMT Cache-Control: max-age=0 Expires: Mon, 22 Dec 2025 10:52:45 GMT Vary: Accept-Encoding X-Server-Cache: true X-Proxy-Cache: MISS Transfer-Encoding: chunked
Open service 192.185.129.71:443 · remarkadv.com
2025-12-21 05:54
HTTP/1.1 200 OK Date: Sun, 21 Dec 2025 05:54:26 GMT Server: nginx/1.25.5 Content-Type: text/html; charset=UTF-8 Last-Modified: Sun, 21 Dec 2025 05:23:33 GMT Cache-Control: max-age=0 Expires: Sun, 21 Dec 2025 05:54:26 GMT Vary: Accept-Encoding X-Server-Cache: true X-Proxy-Cache: MISS Accept-Ranges: none Transfer-Encoding: chunked
Open service 192.185.129.71:80 · www.dev.remarkadv.com
2025-12-20 12:01
HTTP/1.1 200 OK
Date: Sat, 20 Dec 2025 12:01:00 GMT
Server: Apache
Upgrade: h2,h2c
Connection: Upgrade, close
Accept-Ranges: bytes
Content-Length: 7069
Cache-Control: max-age=0, public
Expires: Sat, 20 Dec 2025 12:01:00 GMT
Vary: Accept-Encoding
X-Powered-By: WP Rocket/3.9.3
Content-Type: text/html; charset=UTF-8
<!doctype html>
<html>
<head>
<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet"
type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<style>
.mainContainer {
position: relative;
padding: 0;
min-width: 250px;
min-height: 250px;
display: inline-block;
margin: 0 auto;
}
img {
border: none;
max-width: 100%;
}
#textArea {
display: block;
padding: 10px 5px;
}
#theText {
position: absolute;
top: 90px;
left: 0;
background: #000;
background: rgba(0, 0, 0, 0.1);
color: #fff;
width: auto;
padding: 5px;
text-align: left;
border: dashed 2px #ff7f27;
font: 15px Calibri;
display: block;
cursor: move;
}
canvas {
max-width: 100%;
}
</style>
</head>
<body>
<!--File upload-->
<p>
<input type="submit" id="btChooseImage" onclick='chooseImage()' value="Select an image" />
</p>
<input type="file" id="file" onchange="showImage(this)" style="display: none; visibility: hidden; width: 1px;" />
<!--Textarea to enter some texts.-->
<p>
<textarea onkeyup='writeText(this)' id='textArea' placeholder='Enter some value for text' rows='2' cols='50'>
</textarea>
</p>
<div>
<!--The parent container, image and container for text (to place over the image)-->
<div class="mainContainer" id='mainContainer'>
<!--The default image. You can select a different image too.-->
<img src="https://www.encodedna.com/images/theme/easy-image-resizer.jpg" id="myimage" alt="" />
<!--The text, which is also draggable.-->
<div id='theText' onmousedown='this.style.border = "dashed 2px #FF7F27";'>sample text</div>
</div>
<!--Button to save the image with the text.-->
<p><input type="button" onclick="saveImageWithText();" id="bt" value="Save the Image" /></p>
<input type="button" value="Download - JPG" onclick="candown('demo', 'jpg')"/>
</div>
</body>
<script>
// Make the text element draggable.
$(document).ready(function () {
$(function () {
$('#theText').draggable({
containment: 'parent' // set draggable area.
});
});
});
// Select image and show it.
let chooseImage = () => {
document.getElementById('file').click();
}
let showImage = (fl) => {
if (fl.files.length > 0) {
let reader = new FileReader();
reader.onload = function (e) {
let img = new Image();
img.onload = function () {
if (this.width > screen.width || this.height > screen.height) {
alert('Please select a small image. The image width and height should be less than the screen width and height.');
document.getElementById('theText').style.display = 'none';
document.getElementById('bt').style.display = 'none';
document.getElementById('textArea').style.display = 'none';
document.getElementById('myimage').src = '';
}
else {
document.getElementById('theText').style.display = 'block';
document.getElementById('bt').style.display = 'block';
document.getElementById('textArea').style.display = 'block';
}
}
img.src = e.target.result; // actual image.
document.getElementById('myimage').src = reader.result; // Add the image on the form.
};
reader.readAsDataURL(fl.files[0]);
}
}
let textContainer;
let t = 'sample text';
// Get the values that you have entered in the textarea and
// write it in the DIV over the image.
let writeText = (ele) => {
t = ele.value;
document.getElementById('theText').innerHTML = t.replace(/\n\r?/g, '<br />');
}
// Finally, save the image with text over it.
let saveImageWithText = () => {
textContainer = docume
Open service 192.185.129.71:443 · dev.remarkadv.com
2025-12-20 12:00
HTTP/1.1 200 OK
Date: Sat, 20 Dec 2025 12:01:00 GMT
Server: Apache
Upgrade: h2,h2c
Connection: Upgrade, close
Accept-Ranges: bytes
Content-Length: 7069
Cache-Control: max-age=0, public
Expires: Sat, 20 Dec 2025 12:01:00 GMT
Vary: Accept-Encoding
X-Powered-By: WP Rocket/3.9.3
Content-Type: text/html; charset=UTF-8
<!doctype html>
<html>
<head>
<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet"
type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<style>
.mainContainer {
position: relative;
padding: 0;
min-width: 250px;
min-height: 250px;
display: inline-block;
margin: 0 auto;
}
img {
border: none;
max-width: 100%;
}
#textArea {
display: block;
padding: 10px 5px;
}
#theText {
position: absolute;
top: 90px;
left: 0;
background: #000;
background: rgba(0, 0, 0, 0.1);
color: #fff;
width: auto;
padding: 5px;
text-align: left;
border: dashed 2px #ff7f27;
font: 15px Calibri;
display: block;
cursor: move;
}
canvas {
max-width: 100%;
}
</style>
</head>
<body>
<!--File upload-->
<p>
<input type="submit" id="btChooseImage" onclick='chooseImage()' value="Select an image" />
</p>
<input type="file" id="file" onchange="showImage(this)" style="display: none; visibility: hidden; width: 1px;" />
<!--Textarea to enter some texts.-->
<p>
<textarea onkeyup='writeText(this)' id='textArea' placeholder='Enter some value for text' rows='2' cols='50'>
</textarea>
</p>
<div>
<!--The parent container, image and container for text (to place over the image)-->
<div class="mainContainer" id='mainContainer'>
<!--The default image. You can select a different image too.-->
<img src="https://www.encodedna.com/images/theme/easy-image-resizer.jpg" id="myimage" alt="" />
<!--The text, which is also draggable.-->
<div id='theText' onmousedown='this.style.border = "dashed 2px #FF7F27";'>sample text</div>
</div>
<!--Button to save the image with the text.-->
<p><input type="button" onclick="saveImageWithText();" id="bt" value="Save the Image" /></p>
<input type="button" value="Download - JPG" onclick="candown('demo', 'jpg')"/>
</div>
</body>
<script>
// Make the text element draggable.
$(document).ready(function () {
$(function () {
$('#theText').draggable({
containment: 'parent' // set draggable area.
});
});
});
// Select image and show it.
let chooseImage = () => {
document.getElementById('file').click();
}
let showImage = (fl) => {
if (fl.files.length > 0) {
let reader = new FileReader();
reader.onload = function (e) {
let img = new Image();
img.onload = function () {
if (this.width > screen.width || this.height > screen.height) {
alert('Please select a small image. The image width and height should be less than the screen width and height.');
document.getElementById('theText').style.display = 'none';
document.getElementById('bt').style.display = 'none';
document.getElementById('textArea').style.display = 'none';
document.getElementById('myimage').src = '';
}
else {
document.getElementById('theText').style.display = 'block';
document.getElementById('bt').style.display = 'block';
document.getElementById('textArea').style.display = 'block';
}
}
img.src = e.target.result; // actual image.
document.getElementById('myimage').src = reader.result; // Add the image on the form.
};
reader.readAsDataURL(fl.files[0]);
}
}
let textContainer;
let t = 'sample text';
// Get the values that you have entered in the textarea and
// write it in the DIV over the image.
let writeText = (ele) => {
t = ele.value;
document.getElementById('theText').innerHTML = t.replace(/\n\r?/g, '<br />');
}
// Finally, save the image with text over it.
let saveImageWithText = () => {
textContainer = docume
Open service 192.185.129.71:443 · www.dev.remarkadv.com
2025-12-20 12:00
HTTP/1.1 200 OK
Date: Sat, 20 Dec 2025 12:01:00 GMT
Server: Apache
Upgrade: h2,h2c
Connection: Upgrade, close
Accept-Ranges: bytes
Content-Length: 7069
Cache-Control: max-age=0, public
Expires: Sat, 20 Dec 2025 12:01:00 GMT
Vary: Accept-Encoding
X-Powered-By: WP Rocket/3.9.3
Content-Type: text/html; charset=UTF-8
<!doctype html>
<html>
<head>
<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet"
type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<style>
.mainContainer {
position: relative;
padding: 0;
min-width: 250px;
min-height: 250px;
display: inline-block;
margin: 0 auto;
}
img {
border: none;
max-width: 100%;
}
#textArea {
display: block;
padding: 10px 5px;
}
#theText {
position: absolute;
top: 90px;
left: 0;
background: #000;
background: rgba(0, 0, 0, 0.1);
color: #fff;
width: auto;
padding: 5px;
text-align: left;
border: dashed 2px #ff7f27;
font: 15px Calibri;
display: block;
cursor: move;
}
canvas {
max-width: 100%;
}
</style>
</head>
<body>
<!--File upload-->
<p>
<input type="submit" id="btChooseImage" onclick='chooseImage()' value="Select an image" />
</p>
<input type="file" id="file" onchange="showImage(this)" style="display: none; visibility: hidden; width: 1px;" />
<!--Textarea to enter some texts.-->
<p>
<textarea onkeyup='writeText(this)' id='textArea' placeholder='Enter some value for text' rows='2' cols='50'>
</textarea>
</p>
<div>
<!--The parent container, image and container for text (to place over the image)-->
<div class="mainContainer" id='mainContainer'>
<!--The default image. You can select a different image too.-->
<img src="https://www.encodedna.com/images/theme/easy-image-resizer.jpg" id="myimage" alt="" />
<!--The text, which is also draggable.-->
<div id='theText' onmousedown='this.style.border = "dashed 2px #FF7F27";'>sample text</div>
</div>
<!--Button to save the image with the text.-->
<p><input type="button" onclick="saveImageWithText();" id="bt" value="Save the Image" /></p>
<input type="button" value="Download - JPG" onclick="candown('demo', 'jpg')"/>
</div>
</body>
<script>
// Make the text element draggable.
$(document).ready(function () {
$(function () {
$('#theText').draggable({
containment: 'parent' // set draggable area.
});
});
});
// Select image and show it.
let chooseImage = () => {
document.getElementById('file').click();
}
let showImage = (fl) => {
if (fl.files.length > 0) {
let reader = new FileReader();
reader.onload = function (e) {
let img = new Image();
img.onload = function () {
if (this.width > screen.width || this.height > screen.height) {
alert('Please select a small image. The image width and height should be less than the screen width and height.');
document.getElementById('theText').style.display = 'none';
document.getElementById('bt').style.display = 'none';
document.getElementById('textArea').style.display = 'none';
document.getElementById('myimage').src = '';
}
else {
document.getElementById('theText').style.display = 'block';
document.getElementById('bt').style.display = 'block';
document.getElementById('textArea').style.display = 'block';
}
}
img.src = e.target.result; // actual image.
document.getElementById('myimage').src = reader.result; // Add the image on the form.
};
reader.readAsDataURL(fl.files[0]);
}
}
let textContainer;
let t = 'sample text';
// Get the values that you have entered in the textarea and
// write it in the DIV over the image.
let writeText = (ele) => {
t = ele.value;
document.getElementById('theText').innerHTML = t.replace(/\n\r?/g, '<br />');
}
// Finally, save the image with text over it.
let saveImageWithText = () => {
textContainer = docume
Open service 192.185.129.71:80 · dev.remarkadv.com
2025-12-20 12:00
HTTP/1.1 200 OK
Date: Sat, 20 Dec 2025 12:01:01 GMT
Server: Apache
Upgrade: h2,h2c
Connection: Upgrade, close
Accept-Ranges: bytes
Content-Length: 7069
Cache-Control: max-age=0, public
Expires: Sat, 20 Dec 2025 12:01:01 GMT
Vary: Accept-Encoding
X-Powered-By: WP Rocket/3.9.3
Content-Type: text/html; charset=UTF-8
<!doctype html>
<html>
<head>
<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/smoothness/jquery-ui.css" rel="stylesheet"
type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
<style>
.mainContainer {
position: relative;
padding: 0;
min-width: 250px;
min-height: 250px;
display: inline-block;
margin: 0 auto;
}
img {
border: none;
max-width: 100%;
}
#textArea {
display: block;
padding: 10px 5px;
}
#theText {
position: absolute;
top: 90px;
left: 0;
background: #000;
background: rgba(0, 0, 0, 0.1);
color: #fff;
width: auto;
padding: 5px;
text-align: left;
border: dashed 2px #ff7f27;
font: 15px Calibri;
display: block;
cursor: move;
}
canvas {
max-width: 100%;
}
</style>
</head>
<body>
<!--File upload-->
<p>
<input type="submit" id="btChooseImage" onclick='chooseImage()' value="Select an image" />
</p>
<input type="file" id="file" onchange="showImage(this)" style="display: none; visibility: hidden; width: 1px;" />
<!--Textarea to enter some texts.-->
<p>
<textarea onkeyup='writeText(this)' id='textArea' placeholder='Enter some value for text' rows='2' cols='50'>
</textarea>
</p>
<div>
<!--The parent container, image and container for text (to place over the image)-->
<div class="mainContainer" id='mainContainer'>
<!--The default image. You can select a different image too.-->
<img src="https://www.encodedna.com/images/theme/easy-image-resizer.jpg" id="myimage" alt="" />
<!--The text, which is also draggable.-->
<div id='theText' onmousedown='this.style.border = "dashed 2px #FF7F27";'>sample text</div>
</div>
<!--Button to save the image with the text.-->
<p><input type="button" onclick="saveImageWithText();" id="bt" value="Save the Image" /></p>
<input type="button" value="Download - JPG" onclick="candown('demo', 'jpg')"/>
</div>
</body>
<script>
// Make the text element draggable.
$(document).ready(function () {
$(function () {
$('#theText').draggable({
containment: 'parent' // set draggable area.
});
});
});
// Select image and show it.
let chooseImage = () => {
document.getElementById('file').click();
}
let showImage = (fl) => {
if (fl.files.length > 0) {
let reader = new FileReader();
reader.onload = function (e) {
let img = new Image();
img.onload = function () {
if (this.width > screen.width || this.height > screen.height) {
alert('Please select a small image. The image width and height should be less than the screen width and height.');
document.getElementById('theText').style.display = 'none';
document.getElementById('bt').style.display = 'none';
document.getElementById('textArea').style.display = 'none';
document.getElementById('myimage').src = '';
}
else {
document.getElementById('theText').style.display = 'block';
document.getElementById('bt').style.display = 'block';
document.getElementById('textArea').style.display = 'block';
}
}
img.src = e.target.result; // actual image.
document.getElementById('myimage').src = reader.result; // Add the image on the form.
};
reader.readAsDataURL(fl.files[0]);
}
}
let textContainer;
let t = 'sample text';
// Get the values that you have entered in the textarea and
// write it in the DIV over the image.
let writeText = (ele) => {
t = ele.value;
document.getElementById('theText').innerHTML = t.replace(/\n\r?/g, '<br />');
}
// Finally, save the image with text over it.
let saveImageWithText = () => {
textContainer = docume
Open service 192.185.129.71:80 · remarkadv.com
2025-12-19 08:45
HTTP/1.1 200 OK Date: Fri, 19 Dec 2025 08:46:01 GMT Server: nginx/1.25.5 Content-Type: text/html; charset=UTF-8 Last-Modified: Thu, 18 Dec 2025 12:59:14 GMT Cache-Control: max-age=0 Expires: Fri, 19 Dec 2025 08:46:01 GMT Vary: Accept-Encoding X-Server-Cache: true X-Proxy-Cache: MISS Transfer-Encoding: chunked
Open service 192.185.129.71:443 · remarkadv.com
2025-12-19 03:42
HTTP/1.1 200 OK Date: Fri, 19 Dec 2025 03:42:33 GMT Server: nginx/1.25.5 Content-Type: text/html; charset=UTF-8 Last-Modified: Thu, 18 Dec 2025 16:53:23 GMT Cache-Control: max-age=0 Expires: Fri, 19 Dec 2025 03:42:33 GMT Vary: Accept-Encoding X-Server-Cache: true X-Proxy-Cache: MISS Transfer-Encoding: chunked