ADVERTISEMENT

North Korea slams US-South Korea military drills and threatens strong response

Published Aug 14, 2026 03:09 pm
A vehicle from U.S. Army's the Stryker Combat Team crosses a floating bridge on the Namhan River during the combined river-crossing drill between South Korea and the United States as a part of the Ulchi Freedom Shield 25 in Yeoju, South Korea, Aug. 27, 2025. (AP Photo/Lee Jin-man, File)
A vehicle from U.S. Army's the Stryker Combat Team crosses a floating bridge on the Namhan River during the combined river-crossing drill between South Korea and the United States as a part of the Ulchi Freedom Shield 25 in Yeoju, South Korea, Aug. 27, 2025. (AP Photo/Lee Jin-man, File)
SEOUL, South Korea (AP) — North Korea on Friday threatened unspecified stern steps against the United States and South Korea ahead of their upcoming military drills, which Pyongyang called a war rehearsal that would be more provocative than last year.
The warning is typical of the harsh rhetoric that North Korea often deploys ahead of major U.S.-South Korean military exercises and suggests the country could conduct more missile tests in coming days. Experts say North Korea has often used its rivals' drills as a pretext to ramp up its testing activities to expand its weapons arsenals and promote public support for leader Kim Jong Un.
The U.S. and South Korean militaries are to start their major summertime Ulchi Freedom Shield exercises Monday and have described their scope as similar to past years. The allies have said the 11-day exercises are meant to strengthen their readiness against North Korean threats and reiterated that they are defensive in nature.
In a statement carried by state media Friday, North Korea’s Foreign Ministry called the U.S.-South Korean training “a rehearsal for an aggressive war” that is triggering a different level of instability in the region.
“It is our consistent principle of ensuring security to respond to a new level of a threat with a new level of a deterrent,” the statement said. North Korea “will more clearly express its stance on the enemies to cope with any threats and challenges through the responsible and decisive exercise of the right to legitimate self-defense.”
North Korea also said the drills would be of a “more serious provocative nature and dangerousness than last year” and involve all the military assets and war-fighting modes of the U.S. and South Korea, a claim that those countries haven’t said.
A U.S. military statement issued Friday said U.S. and South Korean forces will practice joint operations in complex scenarios, including a live-fire exercise to test joint precision targeting and maneuver, a wet gap crossing, and distribution of prepositioned military equipment.
North Korea's neighbors detected two ballistic missile launches off the North's east coast in the past week. North Korea hasn’t commented on the launches, but outside experts assess they were likely meant to protest the U.S.-South Korean drills or upgrade its weapons systems.
Kim has ignored the U.S. and South Korea’s offers to resume diplomacy and focused on taking steps to bolster his nuclear arsenal since his diplomacy with U.S. President Donald Trump broke down in 2019. Experts say Kim will likely eventually aim to use his advancing nuclear program to win greater U.S. concessions such as extensive sanctions relief.
North Korea has expanded cooperation with Russia in recent years by supplying troops and ammunition to support its war against Ukraine in return for economic and military assistance. North Korea has also recently pushed to deepen ties with China, its biggest trading partner.

Related Tags

world news North Korea
ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ static_articles_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.