Apache 2.4.65
tcp/443 tcp/80
Apache
tcp/443 tcp/80
Open service 43.205.2.70:443 · www.tajindustry.com
2026-01-24 11:20
HTTP/1.1 404 Not Found Date: Sat, 24 Jan 2026 11:20:49 GMT Server: Apache/2.4.65 (Debian) Content-Type: httpd/unix-directory Content-Length: 0 X-Tradeindia-Request-GUID: catalog-lagacy-backend-5b54767bb-vqpcv]-90fe30b7-24cb-478c-94ae-ac1034898e2a X-Tradeindia-SMgmt: Yes Set-Cookie: CATALOG_TI_SESSION_COOKIE=1a263f432fe8235184d3826aaaa22ba6; path=/; domain=.tajindustry.com; expires=Thu, 23-Jul-2026 11:20:49 GMT Via: 1.1 3daquaonline.com Connection: close
Open service 43.205.2.70:443 · tajindustry.com
2026-01-24 11:20
HTTP/1.1 404 Not Found Date: Sat, 24 Jan 2026 11:20:49 GMT Server: Apache/2.4.65 (Debian) Content-Type: httpd/unix-directory Content-Length: 0 X-Tradeindia-Request-GUID: catalog-lagacy-backend-5b54767bb-4mnwl]-edf970c3-60d4-4443-8778-8dfb78ae1274 X-Tradeindia-SMgmt: Yes Set-Cookie: CATALOG_TI_SESSION_COOKIE=5dc51c795256c884da8062ced10d2b4c; path=/; domain=.tajindustry.com; expires=Thu, 23-Jul-2026 11:20:49 GMT Via: 1.1 3daquaonline.com Connection: close
Open service 216.40.42.5:443 · mail.tajindustry.com
2026-01-24 11:20
HTTP/1.1 200 OK
Date: Sat, 24 Jan 2026 11:20:47 GMT
Server: Apache
X-Powered-By: PHP/8.3.30
Expires: Sat, 24 Jan 2026 11:20:47 GMT
Cache-Control: private, no-cache, no-store, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
X-Frame-Options: sameorigin
Content-Language: en
Last-Modified: Sat, 24 Jan 2026 11:20:47 GMT
Reporting-Endpoints: report="https://mail.hostedemail.com/?_task=background&_action=csp_report"
Content-Security-Policy-Report-Only: default-src * 'unsafe-inline' 'unsafe-eval'; report-to report; report-uri /?_task=background&_action=csp_report
X-Robots-Tag: noindex, nofollow
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html; charset=UTF-8
Strict-Transport-Security: max-age=15768000 ; includeSubDomains
Set-Cookie: Q7tx-jncgzrLAA1Q6keos3yQTPMZ=v1l9zmgwSDQ7g; Path=/; Secure; HttpOnly
Set-Cookie: roundcube_sessid=5a5ad305fb0b07ece514e8b17fa68eb0; Path=/; Secure; HttpOnly
Page title: Webmail :: Welcome to WebmailWebmail :: Welcome to Webmail
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"><title>Webmail :: Welcome to Webmail</title>
<title>Webmail :: Welcome to Webmail</title>
<meta name="Robots" content="noindex,nofollow" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="skins/elastic/deps/bootstrap.min.css?s=1769007111" />
<link rel="stylesheet" type="text/css" href="plugins/skins/login.css?s=1728655216" />
<link rel="stylesheet" type="text/css" href="skins/elastic/../../brands/049/1/styles.2.css?s=1573249609" />
<script>
exit_preview = function() {
document.cookie = "preview=;-1;path=/";
document.cookie = "preview2=;-1;path=/";
};
preview_checkbox = function() {
if ($('#preview')[0].checked == true) {
var date = new Date();
date.setTime(date.getTime() + (30*24*60*60*1000));
expires = ";expires=" + date.toUTCString();
document.cookie = "preview=3"+expires+";path=/";
} else {
document.cookie = "preview=;-1;path=/";
document.cookie = "preview2=;-1;path=/";
}
};
preview_force = function() {
var date = new Date();
date.setTime(date.getTime() + (30*24*60*60*1000));
expires = ";expires=" + date.toUTCString();
document.cookie = "preview=3"+expires+";path=/";
}
check_realm = function() {
var user = $('#rcmloginuser').val();
var a = user.split('@');
if (a[1]) {
// already have realm
return;
}
var hostname = hostname_from_location();
if (hostname) {
var realmuser = a[0] + '@' + hostname;
$('#rcmloginuser').val(realmuser);
}
};
hostname_from_location = function() {
var hostname = window.location.hostname;
if (hostname.indexOf('hostedemail.com') !== -1) {
// check if domain part is in url after redirection
if (window.location.href.indexOf('?') !== -1) {
var args = window.location.href.split('?')[1];
var a = args.split('&');
for (var i in a) {
var b = a[i].split('=');
if (b[0] == '_d') {
return b[1];
}
}
}
// can't autocomplete realm
return;
}
b = hostname.split('.');
if ($('#autocomplete_shift').length > 0) {
if (b.length > $('#autocomplete_shift').val()) {
b.shift();
}
} else if (b.length > 2) {
b.shift();
}
return b.join('.');
};
update_example = function() {
var hostname = hostname_from_location();
if (hostname) {
$('#example_user').text('yourname@'+hostname);
}
if ($('#example-user-full')) {
$('#rcmloginuser').prop('title',$('#example-user-full').text());
$('#rcmloginpwd').prop('title',$('#example-case-sensitive').text());
var t2fa_type = $('#_2fatype').val();
if (t2fa_type == 'ga') {
$('#rcmloginpwd2').prop('title',$('#example-2fa-ga').text());
} else {
$('#rcmloginpwd2').prop('title',$('#example-2fa-sms').text());
}
}
};
test_checkboxes = function() {
var expire = $('#session_expire').is(':checked');
var persist = $('#persist').is(':checked');
if (expire) {
$('#persist').prop('checked',false);
$('#persist').prop('disabled',true);
} else {
$('#persist').prop('disabled',false);
}
};
isMobile = function () {
return;
}
window.onload = function() {
// handle IDN domain names in all browsers
$(form).submit(function() {
var user = $('#rcmloginuser').val();
user = punycode.toASCII(user);
$('#rcmloginuser').val(user);
return true;
});
if ($('#mobiletest').is(':visible')) {
$('#desktop').val('0');
}
}
</script>
<link rel="stylesheet" type="text/css" href="plugins/jqueryui/themes/elastic/jquery-ui.min.css?s=1769006880"><script src="program/js/jquery.min.js?s=1769007010"></script><script src="program/js/common.js?s=1769006884"></script><script src="program/js/app.js?s=1769006884"></script><script src="program/js/jstz.min.js?s=1769006884"></script><script src="p
Open service 43.205.2.70:80 · tajindustry.com
2026-01-24 11:20
HTTP/1.1 404 Not Found Date: Sat, 24 Jan 2026 11:21:08 GMT Server: Apache/2.4.65 (Debian) Content-Type: httpd/unix-directory Content-Length: 0 X-Tradeindia-Request-GUID: catalog-lagacy-backend-5b54767bb-ttblm]-e6f2c18e-5fc0-4255-82d8-df67ba07aa2e X-Tradeindia-SMgmt: Yes Set-Cookie: CATALOG_TI_SESSION_COOKIE=b9330515c2db251e364132617e5fc18d; path=/; domain=.tajindustry.com; expires=Thu, 23-Jul-2026 11:21:08 GMT Via: 1.1 catalog-legacy-frontend-vm-1.tradeindia.com Connection: close
Open service 43.205.2.70:80 · www.tajindustry.com
2026-01-24 11:20
HTTP/1.1 404 Not Found Date: Sat, 24 Jan 2026 11:21:08 GMT Server: Apache/2.4.65 (Debian) Content-Type: httpd/unix-directory Content-Length: 0 X-Tradeindia-Request-GUID: catalog-lagacy-backend-5b54767bb-nj245]-04674de8-0395-4036-a6ed-3f74de5d227a X-Tradeindia-SMgmt: Yes Set-Cookie: CATALOG_TI_SESSION_COOKIE=eaba45236c020abdfe1b3fe1db129e4e; path=/; domain=.tajindustry.com; expires=Thu, 23-Jul-2026 11:21:08 GMT Via: 1.1 catalog-legacy-frontend-vm-1.tradeindia.com Connection: close
Open service 216.40.42.5:80 · mail.tajindustry.com
2026-01-24 11:20
HTTP/1.1 200 OK
Date: Sat, 24 Jan 2026 11:21:16 GMT
Server: Apache
X-Powered-By: PHP/8.3.30
Expires: Sat, 24 Jan 2026 11:21:16 GMT
Cache-Control: private, no-cache, no-store, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
X-Frame-Options: sameorigin
Content-Language: en
Set-Cookie: roundcube_sessid=14a453d8985a916cab67b1ac799118c0; path=/; HttpOnly
Last-Modified: Sat, 24 Jan 2026 11:21:16 GMT
Reporting-Endpoints: report="https://mail.hostedemail.com/?_task=background&_action=csp_report"
Content-Security-Policy-Report-Only: default-src * 'unsafe-inline' 'unsafe-eval'; report-to report; report-uri /?_task=background&_action=csp_report
X-Robots-Tag: noindex, nofollow
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html; charset=UTF-8
Set-Cookie: Q7tx-jncgzrNBwFf6Ueos3yQTPMZ=v1kdzmgwSDuQq; Path=/; Secure; HttpOnly
Page title: Webmail :: Welcome to WebmailWebmail :: Welcome to Webmail
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"><title>Webmail :: Welcome to Webmail</title>
<title>Webmail :: Welcome to Webmail</title>
<meta name="Robots" content="noindex,nofollow" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="skins/elastic/deps/bootstrap.min.css?s=1769007111" />
<link rel="stylesheet" type="text/css" href="plugins/skins/login.css?s=1728655216" />
<link rel="stylesheet" type="text/css" href="skins/elastic/../../brands/049/1/styles.2.css?s=1573249609" />
<script>
exit_preview = function() {
document.cookie = "preview=;-1;path=/";
document.cookie = "preview2=;-1;path=/";
};
preview_checkbox = function() {
if ($('#preview')[0].checked == true) {
var date = new Date();
date.setTime(date.getTime() + (30*24*60*60*1000));
expires = ";expires=" + date.toUTCString();
document.cookie = "preview=3"+expires+";path=/";
} else {
document.cookie = "preview=;-1;path=/";
document.cookie = "preview2=;-1;path=/";
}
};
preview_force = function() {
var date = new Date();
date.setTime(date.getTime() + (30*24*60*60*1000));
expires = ";expires=" + date.toUTCString();
document.cookie = "preview=3"+expires+";path=/";
}
check_realm = function() {
var user = $('#rcmloginuser').val();
var a = user.split('@');
if (a[1]) {
// already have realm
return;
}
var hostname = hostname_from_location();
if (hostname) {
var realmuser = a[0] + '@' + hostname;
$('#rcmloginuser').val(realmuser);
}
};
hostname_from_location = function() {
var hostname = window.location.hostname;
if (hostname.indexOf('hostedemail.com') !== -1) {
// check if domain part is in url after redirection
if (window.location.href.indexOf('?') !== -1) {
var args = window.location.href.split('?')[1];
var a = args.split('&');
for (var i in a) {
var b = a[i].split('=');
if (b[0] == '_d') {
return b[1];
}
}
}
// can't autocomplete realm
return;
}
b = hostname.split('.');
if ($('#autocomplete_shift').length > 0) {
if (b.length > $('#autocomplete_shift').val()) {
b.shift();
}
} else if (b.length > 2) {
b.shift();
}
return b.join('.');
};
update_example = function() {
var hostname = hostname_from_location();
if (hostname) {
$('#example_user').text('yourname@'+hostname);
}
if ($('#example-user-full')) {
$('#rcmloginuser').prop('title',$('#example-user-full').text());
$('#rcmloginpwd').prop('title',$('#example-case-sensitive').text());
var t2fa_type = $('#_2fatype').val();
if (t2fa_type == 'ga') {
$('#rcmloginpwd2').prop('title',$('#example-2fa-ga').text());
} else {
$('#rcmloginpwd2').prop('title',$('#example-2fa-sms').text());
}
}
};
test_checkboxes = function() {
var expire = $('#session_expire').is(':checked');
var persist = $('#persist').is(':checked');
if (expire) {
$('#persist').prop('checked',false);
$('#persist').prop('disabled',true);
} else {
$('#persist').prop('disabled',false);
}
};
isMobile = function () {
return;
}
window.onload = function() {
// handle IDN domain names in all browsers
$(form).submit(function() {
var user = $('#rcmloginuser').val();
user = punycode.toASCII(user);
$('#rcmloginuser').val(user);
return true;
});
if ($('#mobiletest').is(':visible')) {
$('#desktop').val('0');
}
}
</script>
<link rel="stylesheet" type="text/css" href="plugins/jqueryui/themes/elastic/jquery-ui.min.css?s=1769006880"><script src="program/js/jquery.min.js?s=1769007010"></script><script src="program/js/common.js?s=1769006884"></script><script src="program/js/app.js?s=1769006884"></script><script src="program/js/jstz.min.js?s=1769006884"></script><script src="p