Help
RSS
API
Feed
Maltego
Contact
Domain > chemnet.kr
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2019-01-18
101.79.5.66
(
ClassC
)
2026-02-16
49.238.228.118
(
ClassC
)
Port 80
HTTP/1.1 200 OKDate: Mon, 16 Feb 2026 15:46:58 GMTServer: Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/1.0.1sSet-Cookie: PHPSESSIDljailuq22ga2267pkfu85na5h5; path/Expires: Thu, 19 Nov 1981 08:52:00 GMTCache-Control: no-store, no-cache, must-revalidate, post-check0, pre-check0Pragma: no-cacheConnection: closeTransfer-Encoding: chunkedContent-Type: text/html script language javascript>String.prototype.trim function() { return this.replace(/(^\s+)|(\s+$)/g, ); } // 공백제거var xhr null;function getXMLHttpRequest() { if (window.ActiveXObject) { try { return new ActiveXObject(Msxml2.XMLHTTP);//IE 상위 버젼 } catch (e1) { try { return new ActiveXObject(Microsoft.XMLHTTP);//IE 하위 버젼 } catch (e2) { return null; } } } else if (window.XMLHttpRequest) { return new XMLHttpRequest();//IE 이외의 브라우저(FireFox 등) } else { return null; }}// XMLHttpRequest 객체 얻기function Win(url, win_name, features){ // 해상도에 관계없이 화면 중앙에 새창 띄우기 // http://dizfeel.com features features.toLowerCase(); len features.length; sumchar ; for (i1; i len; i++) // 빈칸 제거 { onechar features.substr(i-1, 1); if (onechar ! ) sumchar + onechar; } features sumchar; sp new Array(); sp features.split(,, 10); // 배열에 옵션을 분리해서 입력 splen sp.length; // 배열 갯수 window.open(url,win_name,features);}function CenterWin(url, win_name, features){ // 해상도에 관계없이 화면 중앙에 새창 띄우기 // http://dizfeel.com features features.toLowerCase(); len features.length; sumchar ; for (i1; i len; i++) // 빈칸 제거 { onechar features.substr(i-1, 1); if (onechar ! ) sumchar + onechar; } features sumchar; sp new Array(); sp features.split(,, 10); // 배열에 옵션을 분리해서 입력 splen sp.length; // 배열 갯수 for (i0; i splen; i++) // width, height 값을 구하기 위한 부분 { if (spi.indexOf(width) 0) // width 값일때 { width Number(spi.substring(6)); } else if (spi.indexOf(height) 0) // height 값일때 { height Number(spi.substring(7)); } } sleft (screen.width - width) / 2; stop (screen.height - height) / 2; features features + ,left + sleft + ,top + stop + ,statusno; window.open(url,win_name,features);}function TopWin(url, win_name, features){ // 해상도에 관계없이 화면 중앙에 새창 띄우기 // http://dizfeel.com features features.toLowerCase(); len features.length; sumchar ; for (i1; i len; i++) // 빈칸 제거 { onechar features.substr(i-1, 1); if (onechar ! ) sumchar + onechar; } features sumchar; sp new Array(); sp features.split(,, 10); // 배열에 옵션을 분리해서 입력 splen sp.length; // 배열 갯수 for (i0; i splen; i++) // width, height 값을 구하기 위한 부분 { if (spi.indexOf(width) 0) // width 값일때 { width Number(spi.substring(6)); } else if (spi.indexOf(height) 0) // height 값일때 { height Number(spi.substring(7)); } } sleft (screen.width - width); stop (screen.height - height); features features + ,left0,top0,statusno; window.open(url,win_name,features);}function encodeURL(str){ var s0, i, s, u; s0 ; // encoded str for (i 0; i str.length; i++){ // scan the source s str.charAt(i); u str.charCodeAt(i); // get unicode of the char if (s ){s0 + +;} // SP should be converted to + else { if ( u 0x2a || u 0x2d || u 0x2e || u 0x5f || ((u > 0x30) && (u 0x39)) || ((u > 0x41) && (u 0x5a)) || ((u > 0x61) && (u 0x7a))){ // check for escape s0 s0 + s; // dont escape } else { // escape if ((u > 0x0) && (u 0x7f)){ // single byte format s 0+u.toString(16); s0 + %+ s.substr(s.length-2); } else if (u > 0x1fffff){ // quaternary byte format (extended) s0 + % + (oxf0 + ((u & 0x1c0000) >> 18)).toString(16); s0 + % + (0x80 + ((u & 0x3f000) >> 12)).toString(16); s0 + % + (0x80 + ((u & 0xfc0) >> 6)).toString(16); s0 + % + (0x80 + (u & 0x3f)).toString(16); } else if (u > 0x7ff){ // triple byte format s0 + % + (0xe0 + ((u & 0xf000) >> 12)).toString(16); s0 + % + (0x80 + ((u & 0xfc0) >> 6)).toString(16); s0 + % + (0x80 + (u & 0x3f)).toString(16); } else { // double byte format s0 + % + (0xc0 + ((u & 0x7c0) >> 6)).toString(16); s0 + % + (0x80 + (u & 0x3f)).toString(16); } } } } return s0;}function decodeURL(str){ var s0, i, j, s, ss, u, n, f; s0 ; // decoded str for (i 0; i str.length; i++){ // scan the source str s str.charAt(i); if (s +){s0 + ;} // + should be changed to SP else { if (s ! %){s0 + s;} // add an unescaped char else{ // escape sequence decoding u 0; // unicode of the character f 1; // escape flag, zero means end of this sequence while (true) { ss ; // local str to parse as int for (j 0; j 2; j++ ) { // get two maximum hex characters for parse sss str.charAt(++i); if (((sss > 0) && (sss 9)) || ((sss > a) && (sss f)) || ((sss > A) && (sss F))) { ss + sss; // if hex, add the hex character } else {--i; break;} // not a hex char., exit the loop } n parseInt(ss, 16); // parse the hex str as byte if (n 0x7f){u n; f 1;} // single byte format if ((n > 0xc0) && (n 0xdf)){u n & 0x1f; f 2;} // double byte format if ((n > 0xe0) && (n 0xef)){u n & 0x0f; f 3;} // triple byte format if ((n > 0xf0) && (n 0xf7)){u n & 0x07; f 4;} // quaternary byte format (extended) if ((n > 0x80) && (n 0xbf)){u (u 6) + (n & 0x3f); --f;} // not a first, shift and add 6 lower bits if (f 1){break;} // end of the utf byte sequence if (str.charAt(i + 1) %){ i++ ;} // test for the next shift byte else {break;} // abnormal, format error } s0 + String.fromCharCode(u); // add the escaped character } } } return s0;}/script>html>head>title>/title>meta http-equivContent-Type contenttext/html; charsetutf-8>link hrefcss/style.css relstylesheet typetext/css>link hrefcss/layer.css relstylesheet typetext/css>script languagejavascript srcscript/flash.js>/script>script typetext/javascript> var mobileKeyWords new Array(iPhone, iPod, Mobile, BlackBerry, Android, Windows CE, LG, MOT, SAMSUNG, SonyEricsson); for (var word in mobileKeyWords){ if (navigator.userAgent.match(mobileKeyWordsword) ! null){ location.href http://chemnet.kr/m; break; } }/script>script languagejavascript> !--function clickEvent(e) {if(e.which 3) {alert(우측마우스는 사용하실 수 없습니다.);return false; }} function click() {if ((event.button2) || (event.button3)) {alert(우측마우스는 사용하실 수 없습니다.)}} if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedown clickEvent;}if (document.all) {document.onmousedown click;}//-->/script> /head>body>!--subbg-->table width100% border0 cellpadding0 cellspacing0>tr> td> /td> td width1000 colspan2 styletext-align:right> ul classutil-menu> li>a href/index.php>HOME/a>/li> li>a hrefhttp://chemnet.kr/contactus/contactus.php>CONTACT US/a>/li> li>a hrefhttp://chemnet.kr/contactus/notice.php>NOTICE/a>/li> /ul> /td> td> /td>/tr>tr> td colspan4 styleline-height:10px> /td>/tr>tr> td> /td> td width240>a href/index.php>img src/img/logo.png alt>/a>/td> td width760 styletext-align:right> ul classnav> li>a hrefhttp://chemnet.kr/company/intro_eng.php>ABOUT COMPANY/a> ul> li>a hrefhttp://chemnet.kr/company/intro_eng.php>INTRODUCTION/a>/li> li>a hrefhttp://chemnet.kr/company/location.php>LOCATION/a>/li> /ul> /li> li>a hrefhttp://chemnet.kr/business/export.php>BUSINESS/a> ul> li>a hrefhttp://chemnet.kr/business/export.php>EXPORT DIVISION/a>/li> li>a hrefhttp://chemnet.kr/business/import.php>IMPORT DIVISION/a>/li> /ul> /li> li>a hrefhttp://chemnet.kr/product/product0111.php>PRODUCTS/a> ul> li>a hrefhttp://chemnet.kr/product/product0111.php>EXPORT/a>/li> li>a hrefhttp://chemnet.kr/product/product0211.php>OFFER 품목/a>/li> li>a hrefhttp://chemnet.kr/product/product0311.php>수입화공제품/a>/li> /ul> /li> li>a hrefhttp://chemnet.kr/inquiry/inquiry.php>INQUIRY/a>/li> li>a hrefhttp://chemnet.kr/refer/msds.php>REFERENCE/a> ul> li>a hrefhttp://chemnet.kr/refer/msds.php>MSDS/a>/li> li>a hrefhttp://chemnet.kr/refer/msds.php>기술자료/a>/li> /ul> /li> li>a hrefhttp://chemnet.kr/contactus/contactus.php>CONTACT US/a> ul> li>a hrefhttp://chemnet.kr/contactus/contactus.php>CONTACT US/a>/li> li>a hrefhttp://chemnet.kr/contactus/contactus.php>NOTICE/a>/li> /ul> /li> /ul> /td> td> /td> /tr> tr> td colspan4 styleline-height:25px> /td>/tr> tr> td> /td> td width1000 colspan2>img srcmain/img/main.png alt>/td> td> /td> /tr>/table>table width100% cellspacing0> tr> td> /td> td width1000 height170>!--toptable--> table width100% border0 aligncenter cellpadding0 cellspacing0> tr> td width270 valigntop> !-- notice start--> table border0 cellpadding0 cellspacing0> tr> td height20 valigntop>img srcmain/img/title01.jpg>/td> /tr> tr> td valigntop>table cellspacing0 classmain_table> tr> td>a hrefcontactus/notice.php?board_modeview&board_idx1&idx60>SAMPLE 요청시 유의 사항/a>/td> td width70>2011.10.05/td> /tr> tr> td>a hrefcontactus/notice.php?board_modeview&board_idx1&idx16>파라포름알데히드 포장변경/a>/td> td width70>2010.12.07/td> /tr> tr> td>a hrefcontactus/notice.php?board_modeview&board_idx1&idx4>공지사항 테스트 입니다./a>/td> td width70>2010.11.02/td> /tr> /table>/td> /tr> /table> !-- notice end--> /td> td>div alignright>a hrefbusiness/export.php target_self>img srcmain/img/cont01.jpg border0>/a>/div>/td> td>div alignright>a hrefproduct/product0311.php target_self>img srcmain/img/cont02.jpg border0>/a>/div>/td> td>div alignright>a hrefinquiry/inquiry.php target_self>img srcmain/img/cont03.jpg width166 height88 border0>/a>/div>/td> /tr> /table>/td> td> /td> /tr>/table>table width100% border0 cellpadding0 cellspacing0> tr> td height30 colspan3> /td> /tr> tr> td> /td> td width1000>table width100% border0 cellpadding0 cellspacing0> tr> td height1 bgcolorf2f2f2>/td> /tr> tr> td height69>img src../include/img/copy_address.jpg />/td> /tr> /table>/td> td> /td> /tr>/table>script typetext/javascript charsetutf-8 srchttp://log.inside.daum.net/dwi_log/js/dwi.js>/script>script src//code.jquery.com/jquery-1.11.0.min.js>/script>script typetext/javascript > _dwiPIDd-WbR-267; if(typeof(_dwiCatch) function) { _dwiCatch();} /*subpage leftmenu */ var menuHeight $(.leftmenu-position).height(); $(.leftmenu-wrap).height(menuHeight);/script>
Port 443
HTTP/1.1 200 OKDate: Mon, 16 Feb 2026 15:46:58 GMTServer: Apache/2.2.31 (Unix) mod_ssl/2.2.31 OpenSSL/1.0.1sSet-Cookie: PHPSESSIDno1qua34dmqkqnshijj4sgbe21; path/Expires: Thu, 19 Nov 1981 08:52:00 GMTCache-Control: no-store, no-cache, must-revalidate, post-check0, pre-check0Pragma: no-cacheConnection: closeTransfer-Encoding: chunkedContent-Type: text/html script language javascript>String.prototype.trim function() { return this.replace(/(^\s+)|(\s+$)/g, ); } // 공백제거var xhr null;function getXMLHttpRequest() { if (window.ActiveXObject) { try { return new ActiveXObject(Msxml2.XMLHTTP);//IE 상위 버젼 } catch (e1) { try { return new ActiveXObject(Microsoft.XMLHTTP);//IE 하위 버젼 } catch (e2) { return null; } } } else if (window.XMLHttpRequest) { return new XMLHttpRequest();//IE 이외의 브라우저(FireFox 등) } else { return null; }}// XMLHttpRequest 객체 얻기function Win(url, win_name, features){ // 해상도에 관계없이 화면 중앙에 새창 띄우기 // http://dizfeel.com features features.toLowerCase(); len features.length; sumchar ; for (i1; i len; i++) // 빈칸 제거 { onechar features.substr(i-1, 1); if (onechar ! ) sumchar + onechar; } features sumchar; sp new Array(); sp features.split(,, 10); // 배열에 옵션을 분리해서 입력 splen sp.length; // 배열 갯수 window.open(url,win_name,features);}function CenterWin(url, win_name, features){ // 해상도에 관계없이 화면 중앙에 새창 띄우기 // http://dizfeel.com features features.toLowerCase(); len features.length; sumchar ; for (i1; i len; i++) // 빈칸 제거 { onechar features.substr(i-1, 1); if (onechar ! ) sumchar + onechar; } features sumchar; sp new Array(); sp features.split(,, 10); // 배열에 옵션을 분리해서 입력 splen sp.length; // 배열 갯수 for (i0; i splen; i++) // width, height 값을 구하기 위한 부분 { if (spi.indexOf(width) 0) // width 값일때 { width Number(spi.substring(6)); } else if (spi.indexOf(height) 0) // height 값일때 { height Number(spi.substring(7)); } } sleft (screen.width - width) / 2; stop (screen.height - height) / 2; features features + ,left + sleft + ,top + stop + ,statusno; window.open(url,win_name,features);}function TopWin(url, win_name, features){ // 해상도에 관계없이 화면 중앙에 새창 띄우기 // http://dizfeel.com features features.toLowerCase(); len features.length; sumchar ; for (i1; i len; i++) // 빈칸 제거 { onechar features.substr(i-1, 1); if (onechar ! ) sumchar + onechar; } features sumchar; sp new Array(); sp features.split(,, 10); // 배열에 옵션을 분리해서 입력 splen sp.length; // 배열 갯수 for (i0; i splen; i++) // width, height 값을 구하기 위한 부분 { if (spi.indexOf(width) 0) // width 값일때 { width Number(spi.substring(6)); } else if (spi.indexOf(height) 0) // height 값일때 { height Number(spi.substring(7)); } } sleft (screen.width - width); stop (screen.height - height); features features + ,left0,top0,statusno; window.open(url,win_name,features);}function encodeURL(str){ var s0, i, s, u; s0 ; // encoded str for (i 0; i str.length; i++){ // scan the source s str.charAt(i); u str.charCodeAt(i); // get unicode of the char if (s ){s0 + +;} // SP should be converted to + else { if ( u 0x2a || u 0x2d || u 0x2e || u 0x5f || ((u > 0x30) && (u 0x39)) || ((u > 0x41) && (u 0x5a)) || ((u > 0x61) && (u 0x7a))){ // check for escape s0 s0 + s; // dont escape } else { // escape if ((u > 0x0) && (u 0x7f)){ // single byte format s 0+u.toString(16); s0 + %+ s.substr(s.length-2); } else if (u > 0x1fffff){ // quaternary byte format (extended) s0 + % + (oxf0 + ((u & 0x1c0000) >> 18)).toString(16); s0 + % + (0x80 + ((u & 0x3f000) >> 12)).toString(16); s0 + % + (0x80 + ((u & 0xfc0) >> 6)).toString(16); s0 + % + (0x80 + (u & 0x3f)).toString(16); } else if (u > 0x7ff){ // triple byte format s0 + % + (0xe0 + ((u & 0xf000) >> 12)).toString(16); s0 + % + (0x80 + ((u & 0xfc0) >> 6)).toString(16); s0 + % + (0x80 + (u & 0x3f)).toString(16); } else { // double byte format s0 + % + (0xc0 + ((u & 0x7c0) >> 6)).toString(16); s0 + % + (0x80 + (u & 0x3f)).toString(16); } } } } return s0;}function decodeURL(str){ var s0, i, j, s, ss, u, n, f; s0 ; // decoded str for (i 0; i str.length; i++){ // scan the source str s str.charAt(i); if (s +){s0 + ;} // + should be changed to SP else { if (s ! %){s0 + s;} // add an unescaped char else{ // escape sequence decoding u 0; // unicode of the character f 1; // escape flag, zero means end of this sequence while (true) { ss ; // local str to parse as int for (j 0; j 2; j++ ) { // get two maximum hex characters for parse sss str.charAt(++i); if (((sss > 0) && (sss 9)) || ((sss > a) && (sss f)) || ((sss > A) && (sss F))) { ss + sss; // if hex, add the hex character } else {--i; break;} // not a hex char., exit the loop } n parseInt(ss, 16); // parse the hex str as byte if (n 0x7f){u n; f 1;} // single byte format if ((n > 0xc0) && (n 0xdf)){u n & 0x1f; f 2;} // double byte format if ((n > 0xe0) && (n 0xef)){u n & 0x0f; f 3;} // triple byte format if ((n > 0xf0) && (n 0xf7)){u n & 0x07; f 4;} // quaternary byte format (extended) if ((n > 0x80) && (n 0xbf)){u (u 6) + (n & 0x3f); --f;} // not a first, shift and add 6 lower bits if (f 1){break;} // end of the utf byte sequence if (str.charAt(i + 1) %){ i++ ;} // test for the next shift byte else {break;} // abnormal, format error } s0 + String.fromCharCode(u); // add the escaped character } } } return s0;}/script>html>head>title>/title>meta http-equivContent-Type contenttext/html; charsetutf-8>link hrefcss/style.css relstylesheet typetext/css>link hrefcss/layer.css relstylesheet typetext/css>script languagejavascript srcscript/flash.js>/script>script typetext/javascript> var mobileKeyWords new Array(iPhone, iPod, Mobile, BlackBerry, Android, Windows CE, LG, MOT, SAMSUNG, SonyEricsson); for (var word in mobileKeyWords){ if (navigator.userAgent.match(mobileKeyWordsword) ! null){ location.href http://chemnet.kr/m; break; } }/script>script languagejavascript> !--function clickEvent(e) {if(e.which 3) {alert(우측마우스는 사용하실 수 없습니다.);return false; }} function click() {if ((event.button2) || (event.button3)) {alert(우측마우스는 사용하실 수 없습니다.)}} if (document.layers) {document.captureEvents(Event.MOUSEDOWN);document.onmousedown clickEvent;}if (document.all) {document.onmousedown click;}//-->/script> /head>body>!--subbg-->table width100% border0 cellpadding0 cellspacing0>tr> td> /td> td width1000 colspan2 styletext-align:right> ul classutil-menu> li>a href/index.php>HOME/a>/li> li>a hrefhttp://chemnet.kr/contactus/contactus.php>CONTACT US/a>/li> li>a hrefhttp://chemnet.kr/contactus/notice.php>NOTICE/a>/li> /ul> /td> td> /td>/tr>tr> td colspan4 styleline-height:10px> /td>/tr>tr> td> /td> td width240>a href/index.php>img src/img/logo.png alt>/a>/td> td width760 styletext-align:right> ul classnav> li>a hrefhttp://chemnet.kr/company/intro_eng.php>ABOUT COMPANY/a> ul> li>a hrefhttp://chemnet.kr/company/intro_eng.php>INTRODUCTION/a>/li> li>a hrefhttp://chemnet.kr/company/location.php>LOCATION/a>/li> /ul> /li> li>a hrefhttp://chemnet.kr/business/export.php>BUSINESS/a> ul> li>a hrefhttp://chemnet.kr/business/export.php>EXPORT DIVISION/a>/li> li>a hrefhttp://chemnet.kr/business/import.php>IMPORT DIVISION/a>/li> /ul> /li> li>a hrefhttp://chemnet.kr/product/product0111.php>PRODUCTS/a> ul> li>a hrefhttp://chemnet.kr/product/product0111.php>EXPORT/a>/li> li>a hrefhttp://chemnet.kr/product/product0211.php>OFFER 품목/a>/li> li>a hrefhttp://chemnet.kr/product/product0311.php>수입화공제품/a>/li> /ul> /li> li>a hrefhttp://chemnet.kr/inquiry/inquiry.php>INQUIRY/a>/li> li>a hrefhttp://chemnet.kr/refer/msds.php>REFERENCE/a> ul> li>a hrefhttp://chemnet.kr/refer/msds.php>MSDS/a>/li> li>a hrefhttp://chemnet.kr/refer/msds.php>기술자료/a>/li> /ul> /li> li>a hrefhttp://chemnet.kr/contactus/contactus.php>CONTACT US/a> ul> li>a hrefhttp://chemnet.kr/contactus/contactus.php>CONTACT US/a>/li> li>a hrefhttp://chemnet.kr/contactus/contactus.php>NOTICE/a>/li> /ul> /li> /ul> /td> td> /td> /tr> tr> td colspan4 styleline-height:25px> /td>/tr> tr> td> /td> td width1000 colspan2>img srcmain/img/main.png alt>/td> td> /td> /tr>/table>table width100% cellspacing0> tr> td> /td> td width1000 height170>!--toptable--> table width100% border0 aligncenter cellpadding0 cellspacing0> tr> td width270 valigntop> !-- notice start--> table border0 cellpadding0 cellspacing0> tr> td height20 valigntop>img srcmain/img/title01.jpg>/td> /tr> tr> td valigntop>table cellspacing0 classmain_table> tr> td>a hrefcontactus/notice.php?board_modeview&board_idx1&idx60>SAMPLE 요청시 유의 사항/a>/td> td width70>2011.10.05/td> /tr> tr> td>a hrefcontactus/notice.php?board_modeview&board_idx1&idx16>파라포름알데히드 포장변경/a>/td> td width70>2010.12.07/td> /tr> tr> td>a hrefcontactus/notice.php?board_modeview&board_idx1&idx4>공지사항 테스트 입니다./a>/td> td width70>2010.11.02/td> /tr> /table>/td> /tr> /table> !-- notice end--> /td> td>div alignright>a hrefbusiness/export.php target_self>img srcmain/img/cont01.jpg border0>/a>/div>/td> td>div alignright>a hrefproduct/product0311.php target_self>img srcmain/img/cont02.jpg border0>/a>/div>/td> td>div alignright>a hrefinquiry/inquiry.php target_self>img srcmain/img/cont03.jpg width166 height88 border0>/a>/div>/td> /tr> /table>/td> td> /td> /tr>/table>table width100% border0 cellpadding0 cellspacing0> tr> td height30 colspan3> /td> /tr> tr> td> /td> td width1000>table width100% border0 cellpadding0 cellspacing0> tr> td height1 bgcolorf2f2f2>/td> /tr> tr> td height69>img src../include/img/copy_address.jpg />/td> /tr> /table>/td> td> /td> /tr>/table>script typetext/javascript charsetutf-8 srchttp://log.inside.daum.net/dwi_log/js/dwi.js>/script>script src//code.jquery.com/jquery-1.11.0.min.js>/script>script typetext/javascript > _dwiPIDd-WbR-267; if(typeof(_dwiCatch) function) { _dwiCatch();} /*subpage leftmenu */ var menuHeight $(.leftmenu-position).height(); $(.leftmenu-wrap).height(menuHeight);/script>
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
]