diff --git a/file-5.44-org/magic/Magdir/archive b/file-5.44-mod/magic/Magdir/archive
index a706556..abc8740 100644
--- a/file-5.44-org/magic/Magdir/archive
+++ b/file-5.44-mod/magic/Magdir/archive
@@ -1669,6 +1669,16 @@
 >>50	string	epub+zip	EPUB document
 !:mime application/epub+zip
 
+# From: Hajin Jang <jb6804@naver.com>
+# hwpx (OWPML) document format follows OCF specification.
+# Hangul Word Processor 2010+ supports HWPX format.
+# URL: https://www.hancom.com/etc/hwpDownload.do
+#      https://standard.go.kr/KSCI/standardIntro/getStandardSearchView.do?menuId=503&topMenuId=502&ksNo=KSX6101
+#      https://e-ks.kr/streamdocs/view/sd;streamdocsId=72059197557727331
+>>50	string	hwp+zip     Hancom HWP (Hangul Word Processor) file, HWPX
+!:mime application/hwp+zip
+!:ext	hwpx
+
 # From:	Joerg Jenderek
 # URL:	http://en.wikipedia.org/wiki/CorelDRAW
 # NOTE:	version; til 2 WL-based; from 3 til 13 by ./riff; from 14 zip based
diff --git a/file-5.44-org/magic/Magdir/ole2compounddocs b/file-5.44-mod/magic/Magdir/ole2compounddocs
index dc08e9c..9a89ebe 100644
--- a/file-5.44-org/magic/Magdir/ole2compounddocs
+++ b/file-5.44-mod/magic/Magdir/ole2compounddocs
@@ -262,9 +262,11 @@
 !:ext	tpl
 #
 # URL:	https://en.wikipedia.org/wiki/Hangul_(word_processor)
+#       https://www.hancom.com/etc/hwpDownload.do
 # Note:	"HWP Document File" signature found in FileHeader
+# Hangul Word Processor WORDIAN, 2002 and later is using HWP 5.0 format.
 # Second directory entry name FileHeader hint for Thinkfree Office document
->>>>128 	lestring16	FileHeader		: Hangul (Korean) 5.0 Word Processor File
+>>>>128 	lestring16	FileHeader		: Hancom HWP (Hangul Word Processor) file, version 5.0
 #!:mime	application/haansofthwp
 !:mime	application/x-hwp
 # https://example-files.online-convert.com/document/hwp/example.hwp
diff --git a/file-5.44-org/magic/Magdir/wordprocessors b/file-5.44-mod/magic/Magdir/wordprocessors
index be71676..034c034 100644
--- a/file-5.44-org/magic/Magdir/wordprocessors
+++ b/file-5.44-mod/magic/Magdir/wordprocessors
@@ -381,8 +381,11 @@
 >10	byte	!0	\b, v%d.
 >11	byte	x	\b%d
 
-# Hangul (Korean) Word Processor File
-0	string	HWP\ Document\ File	Hangul (Korean) Word Processor File 3.0
+# Hancom HWP (Hangul Word Processor)
+# Hangul Word Processor 3.0 through 97 used HWP 3.0 format.
+# URL: https://www.hancom.com/etc/hwpDownload.do
+0	string	HWP\ Document\ File     Hancom HWP (Hangul Word Processor) file, version 3.0
+!:ext	hwp
 
 # CosmicBook, from Benoit Rouits
 0       string  CSBK    Ted Neslson's CosmicBook hypertext file
diff --git a/file-5.44-org/src/readcdf.c b/file-5.44-mod/src/readcdf.c
index 1e2593a..5a730af 100644
--- a/file-5.44-org/src/readcdf.c
+++ b/file-5.44-mod/src/readcdf.c
@@ -613,7 +613,7 @@ file_trycdf(struct magic_set *ms, const struct buffer *b)
 		    sizeof(HWP5_SIGNATURE) - 1) == 0) {
 		    if (NOTMIME(ms)) {
 			if (file_printf(ms,
-			    "Hangul (Korean) Word Processor File 5.x") == -1)
+			    "Hancom HWP (Hangul Word Processor) file, version 5.0") == -1)
 			    return -1;
 		    } else if (ms->flags & MAGIC_MIME_TYPE) {
 			if (file_printf(ms, "application/x-hwp") == -1)
