Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - kpicc.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sun, 11 May 2025 04:31:09 GMT
Server: Apache
Set-Cookie: PHPSESSID=eabb1c795d553bb5c3f209db1a724ecb; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html

HTTP Code 200 OK

200 http status code is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.

When is Code 200 used?

  • When loading a web page
  • When successfully receiving an API response
  • When processing a form or another HTTP request

What does Code 200 mean for the user?

The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.

GET / HTTP/1.1
Host: kpicc.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
                                                                    
                                                                    
                                                                      
                                                                    
                                                                    
                                                                    
                                                                    
                                                                    
                                                                    
                                                                    
                                                                    
                                                                    
                                                                    
  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ko">
<head>
	<title>::케이피아이씨코포레이션::</title>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript"> 
var $=function(id){return document.getElementById(id)}; 
Array.prototype.extend=function(C){for(var B=0,A=C.length;B<A;B++){this.push(C[B]);}return this;} 
function divDrag(){ 
var A,B,$cn; 
var zIndex=1099; 
this.dragStart=function(e){ 
e=e||window.event; 
if((e.which && (e.which!=1))||(e.button && (e.button!=1)))return; 
var pos=this.$pos; 
$cn=this.parent||this; 
if(document.defaultView){ 
_top=document.defaultView.getComputedStyle($cn,null).getPropertyValue("top"); 
_left=document.defaultView.getComputedStyle($cn,null).getPropertyValue("left");} 
else{ 
if($cn.currentStyle){_top=$cn.currentStyle["top"];_left=$cn.currentStyle["left"];}} 
pos.ox=(e.pageX||(e.clientX+document.documentElement.scrollLeft))-parseInt(_left); 
pos.oy=(e.pageY||(e.clientY+document.documentElement.scrollTop))-parseInt(_top); 
if(!!A){ 
if(document.removeEventListener){ 
document.removeEventListener("mousemove",A,false); 
document.removeEventListener("mouseup",B,false);} 
else{ 
document.detachEvent("onmousemove",A); 
document.detachEvent("onmouseup",B);}} 
A=this.dragMove.create(this); 
B=this.dragEnd.create(this); 
if(document.addEventListener){ 
document.addEventListener("mousemove",A,false); 
document.addEventListener("mouseup",B,false);} 
else{ 
document.attachEvent("onmousemove",A); 
document.attachEvent("onmouseup",B);} 
$cn.style.zIndex=(++zIndex); 
this.stop(e); 
} 
this.dragMove=function(e){ 
e=e||window.event; 
var pos=this.$pos; 
$cn=this.parent||this; 
$cn.style.top=(e.pageY||(e.clientY+document.documentElement.scrollTop))-parseInt(pos.oy)+'px'; 
$cn.style.left=(e.pageX||(e.clientX+document.documentElement.scrollLeft))-parseInt(pos.ox)+'px'; 
this.stop(e);} 
this.dragEnd=function(e){ 
var pos=this.$pos; 
e=e||window.event; 
if((e.which && (e.which!=1))||(e.button && (e.button!=1)))return; 
$cn=this.parent||this; 
if(!!(this.parent)){this.style.backgroundColor=pos.color} 
if(document.removeEventListener){ 
document.removeEventListener("mousemove",A,false); 
document.removeEventListener("mouseup",B,false);} 
else{ 
document.detachEvent("onmousemove",A); 
document.detachEvent("onmouseup",B);} 
A=null; 
B=null; 
$cn.style.zIndex=(++zIndex); 
this.stop(e); 
} 
this.shiftColor=function(){ 
this.style.backgroundColor="#EEEEEE"; 
} 
this.position=function (e){ 
var t=e.offsetTop; 
var l=e.offsetLeft; 
while(e=e.offsetParent){ 
t+=e.offsetTop; 
l+=e.offsetLeft;} 
return {x:l,y:t,ox:0,oy:0,color:null} 
} 
this.stop=function(e){ 
if(e.stopPropagation){e.stopPropagation();}else{e.cancelBubble=true;} 
if(e.preventDefault){e.preventDefault();}else{e.returnValue=false;} 
} 
this.stop1=function(e){ 
e=e||window.event; 
if(e.stopPropagation){e.stopPropagation();}else{e.cancelBubble=true;} 
} 
this.create=function(bind){ 
var B=this; 
var A=bind; 
return function(e){return B.apply(A,[e]);} 
} 
this.dragStart.create=this.create; 
this.dragMove.create=this.create; 
this.dragEnd.create=this.create; 
this.shiftColor.create=this.create; 
this.initialize=function(){ 
for(var A=0,B=arguments.length;A<B;A++){ 
C=arguments[A]; 
if(!(C.push)){C=[C];} 
$C=(typeof(C[0])=='object')?C[0]:(typeof(C[0])=='string'?$(C[0]):null); 
if(!$C)continue; 
$C.$pos=this.position($C); 
$C.dragMove=this.dragMove; 
$C.dragEnd=this.dragEnd; 
$C.stop=this.stop; 
if(!!C[1]){$C.parent=C[1];$C.$pos.color=$C.style.backgroundColor;} 
if($C.addEventListener){ 
$C.addEventListener("mousedown",this.dragStart.create($C),false); 
if(!!C[1]){$C.addEventListener("mousedown",this.shiftColor.create($C),false);}} 
else{$C.attachEvent("onmousedown",this.dragStart.create($C)); 
if(!!C[1]){$C.attachEvent("onmousedown",this.shiftColor.create($C));}} 
} 
} 
this.initialize.apply(this,arguments); 
}
</script>
<!--*********************Ecm start************************************************************************-->
<script language="JavaScript">
<!--
function setCookie( name, value, expiredays ) { 
    var todayDate = new Date(); 
        todayDate.setDate( todayDate.getDate() + expiredays ); 
        document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + todayDate.toGMTString() + ";" 
} 

//-->  
</script>


<script language="JavaScript">
<!--

function closeWin1() { 
    if ( document.notice_form1.chkbox1.checked ){ 
        setCookie( "maindiv1", "done" , 1 ); 
    } 
    document.all['divDialog_1'].style.visibility = "hidden";
}
//-->  
</script>

<script>
function move_div1( obj ){
	this.div_obj1 = obj;
	this.offsetX1 = 0;
	this.offsetY1 = 0; 

	this.div_mousemove1 = function(){
		var e1= window.event;
		if( e1.button != 1 )
		return false;

		var top1  = e1.clientY;
		var left1 = e1.clientX;

		this.div_obj1.style.left = left1 - this.offsetX1;
		this.div_obj1>.style.top = top1  - this.offsetY1;
	}

	this.div_mousedown1 = function(){
		var e1 = window.event;
		this.offsetY1 = e1.clientY - parseInt(this.div_obj1.style.top);
		this.offsetX1 = e1.clientX - parseInt(this.div_obj1.style.left);
	}
}
</script>
<div id="divDialog_1" style="left:50px; top:50px;width:700px;height:900px;position:absolute;text-align:center;z-index:90001;">
<table width="700" height="900" border="0" cellspacing="0" cellpadding="0">
	<tr>
		<td height="4" bgcolor="#5B5B5B" style="padding-left:5px;" class="text011" colspan="5" ></td>
	</tr>
	<tr>
		<td width="5" bgcolor="#5B5B5B"></td>
		<td width="100%" valign="top" bgcolor="FFFFFF" >
		<table border="0" cellspacing="0" cellpadding="0">
			<tr>
				<td><img src="http://www.kpicc.com/editor/attached/image/20250314/20250314172650_28056.png" />
<p>
	<br />
<img src="http://www.kpicc.com/editor/attached/image/20250314/20250314172658_58486.png" />
</p></td>
			</tr>
		</table>
		</td>
		<td width="5" bgcolor="#5B5B5B"></td>
	</tr>
 <form name="notice_form1">
	<tr>
		<td height="24" align="right" bgcolor="#5B5B5B" colspan="5" >
		<table width="235" border="0" cellspacing="0" cellpadding="0">
			<tr>
				<td width="24">
				<input type="checkbox" name="chkbox1" value="checkbox1"></td>
				<td style="padding-top:5px;color:#ffffff;" width="160" valign="top">
				<div style="font-size:11px;color: #ffffff;">오늘하루 이창을 열지 않기</div></td>
				<td style="padding-top:3px;" valign="top">
				<a href="javascript:closeWin1();">
				<img src="img/board/cont_btn02.gif" width="45" height="15" border="0"></a></td>
			</tr>
		</table>
		</td>
	</tr>
</form>
</table>
</div>
<script type="text/javascript" charset="utf-8"> 
new divDrag(['divDialog_1']); 
</script> 
<script language="Javascript">
cookiedata1 = document.cookie;    
if ( cookiedata1.indexOf("maindiv1=done") < 0 ){      
		document.all['divDialog_1'].style.visibility = "visible";
		} 
    else {
        document.all['divDialog_1'].style.visibility = "hidden"; 
}
</script>
<!--***********************************************end ecm**********************************************-->
	<link rel="stylesheet" href="./css/style.css" type="text/css" />
	<script type="text/javascript" src="js/jquery.js"></script>
	<script type="text/javascript" src="js/common.js"></script>
	
</head>

<body class="bg">
	<ul class="skip">
		<li><a href="#contents">본문바로가기</a></li>
		<li><a href="#header">상단메뉴바로가기</a></li>
		<li><a href="#left">서브메뉴바로가기</a></li>
	</ul>
	<div id="container">
		<!-- 상단 메뉴 영역 -->
		<div id="header" style="height:454px;">
			<div id="header_in">
				<h1><a href="index.php"><img src="img/index/logo01.jpg" alt="KPIC Corporation" /></a></h1>
				<ul id="gnb" class="ufl">
					<li class="r05"><a href="index.php"><img src="img/index/top_img01.jpg" alt="" /></a></li>
					<li class="r05"><a href="?module=Default&action=DefaultCn"><img src="img/index/top_img02.jpg" alt="" /></a></li>
					<li class="r15"><a href="?module=Default&action=DefaultEn"><img src="img/index/top_img03.jpg" alt="" /></a></li>
					<li><a href="index.php"><img src="img/index/top_img04.jpg" alt="HOME" /></a></li>
					<li><a href="?module=Html&action=SiteComp&sSubNo=14"><img src="img/index/top_img05.jpg" alt="SITEMAP" /></a></li>
				</ul>
				<ul id="top_menu" class="manNav">
					<li><a href="?module=Html&action=SiteComp&sSubNo=1" onmouseover="menu_over(1)"><img src="img/menu/menu_img01.png" alt="회사소개" id="m1" /></a>
						<div class="dropMenu" style="position:absolute;top:48px;left:-80px;">
							<ul class="subMenu">
								<li><a href="?module=Html&action=SiteComp&sSubNo=1"><img src="img/menu/sub_menu1.png" alt="회사개요" class="rollover" /></a></li>
								<li><a href="?module=Html&action=SiteComp&sSubNo=2"><img src="img/menu/sub_menu2.png" alt="CEO인사말" class="rollover" /></a></li>
								<li><a href="?module=Html&action=SiteComp&sSubNo=3"><img src="img/menu/sub_menu3.png" alt="회사연혁" class="rollover" /></a></li>
								<li><a href="?module=Html&action=SiteComp&sSubNo=4"><img src="img/menu/sub_menu4.png" alt="재무정보" class="rollover" /></a></li>
								<li><a href="?module=Html&action=SiteComp&sSubNo=5"><img src="img/menu/sub_menu5.png" alt="해외지사" class="rollover" /></a></li>
								<li><a href="?module=Html&action=SiteComp&sSubNo=6"><img src="img/menu/sub_menu6.png" alt="주소 및 약도" class="rollover" /></a></li>
							</ul>
						</div>
					</li>
					<li><a href="?module=Html&action=SiteComp&sSubNo=7" onmouseover="menu_over(2)"><img src="img/menu/menu_img02.png" alt="사업소개" id="m2" /></a>
						<div class="dropMenu" style="position:absolute;top:48px;left:210px;">
							<ul class="subMenu">
								<li><a href="?module=Html&action=SiteComp&sSubNo=7"><img src="img/menu/sub_menu7.png" alt="무역사업" class="rollover" /></a></li>
								<li><a href="?module=Html&action=SiteComp&sSubNo=8"><img src="img/menu/sub_menu8.png" alt="물류사업" class="rollover" /></a></li>
								<!--
								<li><a href="busi03.html"><img src="img/menu/sub_menu9.png" alt="신개발사업" class="rollover" /></a></li>
								-->
							</ul>
						</div>
					</li>
					<li><a href="?module=Html&action=SiteComp&sSubNo=9" onmouseover="menu_over(3)"><img src="img/menu/menu_img03.png" alt="채용정보" id="m3" /></a>
						<div class="dropMenu" style="position:absolute;top:48px;left:280px;">
							<ul class="subMenu">
								<li><a href="?module=Html&action=SiteComp&sSubNo=9"><img src="img/menu/sub_menu10.png" alt="인재상" class="rollover" /></a></li>
								<li><a href="?module=Html&action=SiteComp&sSubNo=10"><img src="img/menu/sub_menu11.png" alt="인사제도" class="rollover" /></a></li>
								<li><a href="?module=Html&action=SiteComp&sSubNo=11"><img src="img/menu/sub_menu12.png" alt="복리후생" class="rollover" /></a></li>
								<li><a href="?module=Html&action=SiteComp&sSubNo=12"><img src="img/menu/sub_menu13.png" alt="채용안내" class="rollover" /></a></li>
								<li><a href="?module=Board&action=SiteBoard&sMode=SELECT_FORM&iBrdNo=1"><img src="img/menu/sub_menu14.png" alt="채용공고" class="rollover" /></a></li>
								<li><a href="?module=Inquiry&action=SiteInquiry&iInquiryNo=1&sMode=INSERT_FORM"><img src="img/menu/sub_menu15.png" alt="채용문의" class="rollover" /></a></li>
							</ul>
						</div>
					</li>
					<li><a href="?module=Board&action=SiteBoard&sMode=SELECT_FORM&iBrdNo=2" onmouseover="menu_over(4)"><img src="img/menu/menu_img04.png" alt="커뮤니티" id="m4" /></a>
						<div class="dropMenu" style="position:absolute;top:48px;left:554px;">
							<ul class="subMenu">
								<li><a href="?module=Board&action=SiteBoard&sMode=SELECT_FORM&iBrdNo=2"><img src="img/menu/sub_menu16.png" alt="알림마당" class="rollover" /></a></li>
								<li><a href="?module=Html&action=SiteComp&sSubNo=13"><img src="img/menu/sub_menu17.png" alt="CONTACT" class="rollover" /></a></li>
							</ul>
						</div>
					</li>
				</ul>
			</div>
			<div id="fla_area"><img src="img/index/fla_img01.jpg" alt="" /></div>
		</div>
		
		<div class="cb"></div>
		<!--본문영역-->
		<div id="contents">
			<div id="m_content">
				<!-- 컨텐츠 내용 들어갈 부분 -->
				<div class="m_l">
					<div class="m_comm">
						<div class="m_tit">
							<div class="fl"><img src="img/index/cont_img01.jpg" alt="알림마당" /></div>
							<div class="fr"><a href="?module=Board&action=SiteBoard&sMode=SELECT_FORM&iBrdNo=2"><img src="img/index/more_img01.jpg" alt="" /></a></div>
						</div>
						<div class="m_cont">
							<div class="m_text">
							<a href="?module=Board&action=SiteBoard&sMode=VIEW_FORM&iBrdNo=2&iBrdContNo=20&sBrdContRe=0"><span class="text01 fl">
																[공지]제20기 결산공고
														</span></a><span class="text01 fr">2025.03.14</span></div>
							<div class="cb"></div>
							<div class="m_text">
							<a href="?module=Board&action=SiteBoard&sMode=VIEW_FORM&iBrdNo=2&iBrdContNo=19&sBrdContRe=0"><span class="text01 fl">
																[공지]외부감사인 선임공고
														</span></a><span class="text01 fr">2025.02.11</span></div>
							<div class="cb"></div>
							<div class="m_text">
							<a href="?module=Board&action=SiteBoard&sMode=VIEW_FORM&iBrdNo=2&iBrdContNo=18&sBrdContRe=0"><span class="text01 fl">
																[공지]제19기 결산공고
														</span></a><span class="text01 fr">2024.11.18</span></div>
							<div class="cb"></div>
							<div class="m_text">
							<a href="?module=Board&action=SiteBoard&sMode=VIEW_FORM&iBrdNo=2&iBrdContNo=15&sBrdContRe=0"><span class="text01 fl">
																[공지]제18기 결산공고
														</span></a><span class="text01 fr">2023.03.17</span></div>
							<div class="cb"></div>
						</div>
						<div class="cb"></div>
					</div>
					<div class="cb"></div>
					<div><a href="?module=Html&action=SiteComp&sSubNo=9"><img src="img/index/banner_img01.jpg" alt="채용정보
					자신의 능력을 마음껏 펼칠 수 있습니다.
					열정적인 당신의 지원을 기다립니다." /></a></div>
				</div>
				
				<div class="m_c">
					<div class="fl"><img src="img/index/cont_img08.jpg" alt="" /></div>
					<div class="fl t10">
						<div><img src="img/index/cont_img02.jpg" alt="사업소개" /></div>
						<div class="m_busi">
							<div class="fl r08"><a href="http://www.kpic.co.kr/product/olefin/ethylene.asp" target="_blank"><img src="img/index/cont_img03.jpg" alt="올레핀 OLEFINS" /></a></div>
							<div class="fl r08"><a href="http://www.kpic.co.kr/product/aromatic/benzene.asp" target="_blank"><img src="img/index/cont_img04.jpg" alt="아로마틱 AROMATICS" /></a></div>
							<div class="fl"><a href="http://www.kpic.co.kr/product/pr01/pr01.asp?apptype=10" target="_blank"><img src="img/index/cont_img05.jpg" alt="합성수지 POLYMERS" /></a></div>
							<div class="cb"></div>
						</div>
					</div>
					<div class="fl"><img src="img/index/cont_img09.jpg" alt="" /></div>
				</div>
				
				<div class="m_r">
					<div><img src="img/index/cont_img06.jpg" alt="주소 및 약도" /></div>
					<div class="m_map"><a href="?module=Html&action=SiteComp&sSubNo=6"><img src="img/index/cont_img07.jpg" alt="" /></a></div>
				</div>
				<div class="cb"></div>
			</div>
		</div>
		
	</div>
	
	<!-- Footer 영역 -->
	<div id="footer">
		<div id="footer_in">
			<div class="fl">
				<div class="fl"><img src="img/index/bottom_img01.jpg" alt="KPIC Corporation" /></div>
				<address class="fl"><img src="img/index/bottom_img02.jpg" alt="(주)케이피아이씨코포레이션
	대표 : 장석산      사업자등록번호 : 104-81-93116      주소 : 서울시 중구 남대문로5길 39 (소공동 117)      TEL : 02-3706-0887      FAX : 02-3706-0889
	COPYRIGHT 2014 ALL RIGHTS RESERVED" /></address>
			</div>
			<div class="fr">
				<select onChange="javascript:window.open(value);" class="in">
					<option selected>FAMILY SITE</option> 
					<option value="http://www.kpic.co.kr">대한유화주식회사</option> 
				</select>
			</div>
			<div class="cb"></div>
		</div>
	</div>
</body>
</html>                                                                    
                                                                    
                               

Whois info of domain

Domain Name: KPICC.COM
Registry Domain ID: 149705352_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.gabia.com
Registrar URL: http://www.gabia.com
Updated Date: 2017-11-23T02:20:07Z
Creation Date: 2005-04-07T05:54:07Z
Registry Expiry Date: 2027-04-07T05:54:07Z
Registrar: Gabia, Inc.
Registrar IANA ID: 244
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +82.28293543
Domain Status: ok https://icann.org/epp#ok
Name Server: NS.GABIA.CO.KR
Name Server: NS.GABIA.NET
Name Server: NS1.GABIA.CO.KR
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-11T04:30:53Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass