Help
RSS
API
Feed
Maltego
Contact
Domain > sugarlandtx.granitenetweb.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2024-09-22
3.220.19.50
(
ClassC
)
2025-11-23
52.86.208.211
(
ClassC
)
Port 443
HTTP/1.1 200 OKDate: Sun, 23 Nov 2025 20:55:48 GMTContent-Type: text/htmlContent-Length: 8994Connection: keep-aliveLast-Modified: Thu, 15 Dec 2022 15:32:58 GMTAccept-Ranges: bytesETag: 0313a829a10d91:0Server: Microsoft-IIS/10.0X-Powered-By: ASP.NET !DOCTYPE html>html langen> head> meta charsetutf-8 /> meta http-equivX-UA-Compatible contentIEedge /> meta nameviewport contentwidthdevice-width, initial-scale1 /> title>GraniteNet Web Solutions/title> link relshortcut icon hrefcontent/img/favicon.ico typeimage/x-icon /> link hrefhttps://fonts.googleapis.com/css?familyRoboto:400,500,700 relstylesheet typetext/css /> link relstylesheet typetext/css hrefcontent/styles/normalize.css /> link relstylesheet typetext/css hrefcontent/styles/styles.css /> script typetext/javascript srccontent/scripts/configuration.js >/script> script typetext/javascript srccontent/scripts/instances-configuration.js >/script> /head> body classbody default-text onloadonload()> header classheader> img classheader-logo srccontent/img/logo.png /> div classheader-title>GraniteNet Web Solutions/div> /header> main classmain> div classinstance-switcher-container> div classinstance-switcher-title>/div> div classinstance-switcher-button onclickonClickInstanceSwitcherButton() > div classinstance-switcher-button-icon> svg width20px height20px viewBox0 0 13 12 xmlnshttp://www.w3.org/2000/svg > g fillcurrentColor fill-rulenonzero> path dM5.201 1.333H7.8c1.08 0 1.951.894 1.951 2.003v3.988h1.3V3.336C11.05 1.49 9.596 0 7.799 0H5.2v1.333zM7.8 10.667H5.2c-1.075 0-1.951-.9-1.951-2V5.333h-1.3v3.334C1.95 10.504 3.408 12 5.201 12H7.8v-1.333z >/path> path dM3.06 4.195a.639.639 0 00-.92 0l-1.95 2a.679.679 0 000 .943c.254.26.666.26.92 0L2.6 5.667l1.49 1.471c.254.26.666.26.92 0a.679.679 0 000-.943l-1.95-2zM10.4 6.333L8.91 4.862a.639.639 0 00-.92 0 .679.679 0 000 .943l1.95 2c.254.26.666.26.92 0l1.95-2a.679.679 0 000-.943.639.639 0 00-.92 0L10.4 6.333z >/path> /g> /svg> /div> div classinstance-switcher-button-title> Switch Instance /div> /div> div classinstance-switcher-select>/div> /div> div classapps-list>/div> /main> bottom classbottom> div>Copyright 2022 by CUES/div> /bottom> /body>/html>script typetext/javascript> document.addEventListener(click, function (event) { var ignoreClickOnMeElement document.getElementsByClassName( instance-switcher-button-title )0; const instanceSwitcherSelect document.getElementsByClassName( instance-switcher-select )0; var isClickInsideElement ignoreClickOnMeElement.className event.target.className; if ( !isClickInsideElement && instanceSwitcherSelect.classList.contains( instance-switcher-select-active ) ) { instanceSwitcherSelect.classList.remove( instance-switcher-select-active ); } }); function onload() { setInstanceName(); if (typeof INSTANCES ! undefined && INSTANCES.length ! 0) { showInstanceSwitcher(); } appendInstancesToDOM(); appendAppsToDOM(); appendBottomsToDOM(); } function onClickInstanceSwitcherButton() { const instanceSwitcherSelect document.getElementsByClassName( instance-switcher-select )0; if ( instanceSwitcherSelect.classList.contains( instance-switcher-select-active ) ) { instanceSwitcherSelect.classList.remove( instance-switcher-select-active ); } else { instanceSwitcherSelect.classList.add( instance-switcher-select-active ); } } function setInstanceName() { const instanceSwitcherTitle document.getElementsByClassName( instance-switcher-title )0; if (typeof INSTANCE undefined) { instanceSwitcherTitle.textContent INSTANCE name isnt configured; } else { instanceSwitcherTitle.textContent INSTANCE; } } function showInstanceSwitcher() { const instanceSwitcherContainer document.getElementsByClassName( instance-switcher-button )0; instanceSwitcherContainer.style.display flex; } function appendAppsToDOM() { if (typeof APPS undefined || APPS.length 0) { appendEmptyMessageToDOM(); } else { for (const app of APPS) { appendAppToDOM(app); } } } function appendInstancesToDOM() { for (const instance of INSTANCES) { if (instance.name INSTANCE) { continue; } appendInstanceToDOM(instance); } } function appendBottomsToDOM() { if (typeof BOTTOM_LINKS undefined || BOTTOM_LINKS.length 0) { } else { for (const link of BOTTOM_LINKS) { appendBottomToDOM(link); } } } function appendAppToDOM(app) { const appDiv document.createElement(a); appDiv.className app; if (app.color) { appDiv.style.background app.color; } if (app.link) { appDiv.href app.link; } else { appDiv.className app app-disabled; } let appIconDiv null; if (app.icon) { appIconDiv document.createElement(img); appIconDiv.className app-icon; appIconDiv.src app.icon; } const appTitleDiv document.createElement(div); appTitleDiv.className app-title; if (app.name) { appTitleDiv.textContent app.name; } else { appTitleDiv.textContent app name is empty>; } if (appIconDiv) { appDiv.appendChild(appIconDiv); } appDiv.appendChild(appTitleDiv); document.getElementsByClassName(apps-list)0.appendChild(appDiv); } function appendInstanceToDOM(instance) { const instanceDiv document.createElement(a); instanceDiv.className instance-switcher-option link; if (instance.name) { instanceDiv.textContent instance.name; } else { instanceDiv.textContent instance name is empty>; } if (instance.link) { instanceDiv.href instance.link; } else { instanceDiv.className instance-switcher-option instance-switcher-option-disabled; } document .getElementsByClassName(instance-switcher-select)0 .appendChild(instanceDiv); } function appendBottomToDOM(link){ const bottomDiv document.createElement(a) bottomDiv.className link; if (link.url) { bottomDiv.href link.url; } if (link.name) { bottomDiv.textContent link.name; } else { bottomDiv.textContent link name is empty>; } document.getElementsByClassName(bottom)0.appendChild(bottomDiv); } function appendEmptyMessageToDOM() { const appDiv document.createElement(div); appDiv.className empty-apps-list-message; appDiv.textContent APPS isnt configured; document.getElementsByClassName(apps-list)0.appendChild(appDiv); }/script>
Subdomains
Date
Domain
IP
webgps-rest.granitenetweb.com
2024-10-14
3.214.93.177
sugarlandtx.granitenetweb.com
2025-11-23
52.86.208.211
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]