Help
RSS
API
Feed
Maltego
Contact
Domain > apps.skycamimagery.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-12-14
198.54.125.13
(
ClassC
)
Port 80
HTTP/1.1 301 Moved Permanentlykeep-alive: timeout5, max100content-type: text/htmlcontent-length: 795date: Sun, 14 Dec 2025 19:43:09 GMTserver: LiteSpeedlocation: https://apps.skycamimagery.com/x-turbo-charged-by: LiteSpeed !DOCTYPE html>html styleheight:100%>head>meta nameviewport contentwidthdevice-width, initial-scale1, shrink-to-fitno />title> 301 Moved Permanently/title>style>@media (prefers-color-scheme:dark){body{background-color:#000!important}}/style>/head>body stylecolor: #444; margin:0;font: normal 14px/20px Arial, Helvetica, sans-serif; height:100%; background-color: #fff;>div styleheight:auto; min-height:100%; > div styletext-align: center; width:800px; margin-left: -400px; position:absolute; top: 30%; left:50%;> h1 stylemargin:0; font-size:150px; line-height:150px; font-weight:bold;>301/h1>h2 stylemargin-top:20px;font-size: 30px;>Moved Permanently/h2>p>The document has been permanently moved./p>/div>/div>/body>/html>
Port 443
HTTP/1.1 200 OKkeep-alive: timeout5, max100x-powered-by: PHP/7.2.34content-type: text/html; charsetutf-8cache-control: public, max-age0expires: Sun, 14 Dec 2025 19:43:10 GMTcontent-length: 6424date: Sun, 14 Dec 2025 19:43:10 GMTserver: LiteSpeedx-turbo-charged-by: LiteSpeed !DOCTYPE html>html langen-us>head> script typetext/javascript> /script> meta http-equivcontent-type contenttext/html; charsetutf-8 /> title>Home/title> base hrefhttps://apps.skycamimagery.com/ /> meta nameviewport contentwidthdevice-width, initial-scale1 /> meta namedescription contentHome /> meta namekeywords contentHome /> !-- Facebook Open Graph --> meta propertyog:title contentHome /> meta propertyog:description contentHome /> meta propertyog:image content /> meta propertyog:type contentarticle /> meta propertyog:url contenthttps://apps.skycamimagery.com/ /> !-- Facebook Open Graph end --> script srcjs/jquery-3.5.1.min.js typetext/javascript>/script> link hrefcss/bootstrap.min.css relstylesheet typetext/css /> script srcjs/bootstrap.min.js typetext/javascript>/script> script srcjs/main.js?ts20230604164226 typetext/javascript>/script> link hrefcss/site.css?ts20230604164226 relstylesheet typetext/css /> link hrefcss/common.css?ts20230604164226 relstylesheet typetext/css /> link hrefcss/1.css?ts20230604164226 relstylesheet typetext/css idwb-page-stylesheet /> script typetext/javascript> window.useTrailingSlashes true; window.disableRightClick false; window.currLang en;/script> !--if lt IE 9> script srcjs/html5shiv.min.js>/script> !endif--> /head>body classsite site-lang-en >div idwb_root classroot wb-layout-vertical>div classwb_sbg>/div>div idwb_header_1 classwb_element wb-layout-element data-pluginLayoutElement>div classwb_content wb-layout-vertical>/div>/div>div idwb_main_1 classwb_element wb-layout-element data-pluginLayoutElement>div classwb_content wb-layout-vertical>div idwb_element_instance1_1 classwb_element wb-layout-element data-pluginLayoutElement>div classwb_content wb-layout-horizontal>div idwb_element_instance2_1 classwb_element data-pluginCustomHtml style overflow: hidden;>div stylewidth: 100%; height: 100%; overflow-y: auto;> title>Chatbot Overlay/title>style> #chatbot-overlay { position: fixed; bottom: 20px; right: 20px; width: 300px; border-radius: 10px; background-color: #f2f2f2; box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2); } #chatbot-overlay .profile-pic { width: 60px; height: 60px; border-radius: 50%; margin: 20px; } #chatbot-overlay .chat-container { height: 300px; padding: 10px; overflow-y: scroll; } #chatbot-overlay .message { margin-bottom: 10px; padding: 5px 10px; border-radius: 5px; background-color: #fff; } #chatbot-overlay .user-message { text-align: right; background-color: #cce5ff; } #chatbot-overlay .chat-input { margin-top: 10px; padding: 5px; width: 100%; border: none; border-radius: 5px; } /style>div idchatbot-overlay> img classprofile-pic srcprofile_picture.jpg>div classchat-container> div classmessage>Welcome to our chatbot!/div> /div> input classchat-input typetext placeholderType your message...>/div> script> const chatContainer document.querySelector(.chat-container); const chatInput document.querySelector(.chat-input); // Function to add a user message to the chat container function addUserMessage(message) { const userMessage document.createElement(div); userMessage.className message user-message; userMessage.textContent message; chatContainer.appendChild(userMessage); chatContainer.scrollTop chatContainer.scrollHeight; } // Function to add a chatbot message to the chat container function addChatbotMessage(message) { const chatbotMessage document.createElement(div); chatbotMessage.className message; chatbotMessage.textContent message; chatContainer.appendChild(chatbotMessage); chatContainer.scrollTop chatContainer.scrollHeight; } // Function to send user input to the chatbot function sendMessage() { const userMessage chatInput.value.trim(); if (userMessage ! ) { addUserMessage(userMessage); chatInput.value ; // Send the user message to the chatbot using AJAX or any other method // Replace the example URL with the actual endpoint to handle the user input fetch(https://example.com/chatbot, { method: POST, body: JSON.stringify({ message: userMessage }), headers: { Content-Type: application/json } }) .then(response > response.json()) .then(data > { addChatbotMessage(data.message); }) .catch(error > { console.log(Error:, error); }); } } chatInput.addEventListener(keyup, event > { if (event.key Enter) { sendMessage(); } }); /script>/div>/div>/div>/div>/div>/div>div idwb_footer_1 classwb_element wb-layout-element data-pluginLayoutElement>div classwb_content wb-layout-vertical>div idwb_footer_c_0 classwb_element data-pluginWB_Footer styletext-align: center; width: 100%;>div classwb_footer>/div>script typetext/javascript> $(function() { var footer $(.wb_footer); var html (footer.html() + ).replace(/^\s+|\s+$/g, ); if (!html) { footer.parent().remove(); footer $(#wb_footer, #wb_footer .wb_cont_inner); footer.css({height: }); } }); /script>/div>/div>/div>/div>/body>/html>
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
]