ADVERTISEMENT

British spy chief says he sees no evidence Putin wants to negotiate peace in Ukraine

Published Sep 19, 2025 07:15 pm
ISTANBUL (AP) — There is "absolutely no evidence" that Russia's President Vladimir Putin wants to negotiate peace in Ukraine, the head of Britain's foreign intelligence agency said Friday in an outgoing speech.
FILE - Richard Moore, the Chief of Britain's Secret Intelligence Service, also known as MI6, answers questions in London, England, Nov. 30, 2021, after giving his first public speech since becoming head of the organization. (AP Photo/Matt Dunham, File)
FILE - Richard Moore, the Chief of Britain's Secret Intelligence Service, also known as MI6, answers questions in London, England, Nov. 30, 2021, after giving his first public speech since becoming head of the organization. (AP Photo/Matt Dunham, File)
Richard Moore, chief of the Secret Intelligence Service, or MI6 as it is more commonly known, said Putin was "stringing us along."
"He seeks to impose his imperial will by all means at his disposal. But he cannot succeed," Moore said. "Bluntly, Putin has bitten off more than he can chew. He thought he was going to win an easy victory. But he – and many others – underestimated the Ukrainians."
The war has continued unabated in the three years since Russia invaded its neighbor, despite renewed U.S.-led efforts in recent months to steer Moscow and Kyiv to a settlement. Ukraine has accepted proposals for a ceasefire and a summit meeting, but Moscow has demurred.
U.S. President Donald Trump said Thursday during a state visit to the United Kingdom that Putin " has really let me down " in peace efforts.
Moore was speaking at the British consulate in Istanbul after five years as head of MI6. He leaves the post at the end of September. The agency will then get its first female chief.
During his tenure, Russia launched its full-scale invasion of Ukraine in February 2022, a war that has seen tens of thousands killed and still rages, principally in eastern Ukraine.
Moore said the invasion had strengthened Ukrainian national identity and accelerated its westward trajectory, as well as pushing Sweden and Finland to join NATO.
"Putin has sought to convince the world that Russian victory is inevitable. But he lies. He lies to the world. He lies to his people. Perhaps he even lies to himself," Moore told a news conference.
Referring to the Russian scientist Ivan Pavlov, who conditioned dogs to respond to a bell, Moore said a phone call from the Russian president was "the equivalent of Pavlov's tinkling bell inside the Kremlin, eliciting learned behavior to tell Putin whatever it is the system thinks he want to hear."
He said that Putin was "mortgaging his country's future for his own personal legacy and a distorted version of history" and the war was "accelerating this decline."
Moore, who previously served as the U.K.'s ambassador to Ankara, the Turkish capital, added that "greater powers than Russia have failed to subjugate weaker powers than Ukraine."
Analysts say Putin believes he can outlast the political commitment of Ukraine's Western partners and win a protracted war of attrition by wearing down Ukraine's smaller army with sheer weight of numbers.
Ukraine, meanwhile, is racing to expand its defense cooperation with other countries and secure billions of dollars of investment in its domestic weapons industry.
The spy chief was speaking as MI6 unveiled a dark web portal to allow potential intelligence providers to contact the service. Dubbed " Silent Courier," the secure messaging platform aims to recruit new spies for the U.K., including in Russia.
"To those men and women in Russia who have truths to share and the courage to share them, I invite you to contact MI6," Moore said.
Not just Russians but "anyone, anywhere in the world" would be able to use the portal to offer sensitive information on terrorism or "hostile intelligence activity," he said.

Related Tags

World news
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; } }

{{ articles_filter_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.