So Microsoft employees reacted to the recent investigations by Associated Press, Drop Site News, +972 Magazine and Guardian, published in January and February 2025. Of these, it became known about the large -scale cooperation of the American company from the IDF in the military sphere. “Medusa” retells the main thing of these materials. Microsoft has long been cooperating with the Israeli government and invest in this country. In 2014, the technological giant opened an accelerator of cybersecurity in Israel. In 2015, I bought a startup Adallom, which specializes in computer safety. This company was founded by former members of the 8200 unit, which is engaged in electronic intelligence in the military intelligence department, DSAL. In the 2021st Microsoft, he tried to conclude a contract for the modernization of the cloud computing of the public sector for $ 1.2 billion-but lost in Amazon and Google’s tender. In 2023, Microsoft launched a cloud data center in Israel, announced in 2020. And at the same time he opened his own development center. The main thing was to learn from the new investigations of journalists was confirmation of Microsoft cooperation and Israel in the military sector. The Associated Press material, in addition to previously leaked documents, is based on an interview with six acting and former military personnel of the Israeli army, as well as with 14 Microsoft employees ,. Journalists note a significant strengthening of Microsoft’s cooperation and the IDF after the Hamas attack on Israel on October 7. Izrail and Hamas agreed on a truce to the terrorists will release hostages in exchange for Palestinian prisoners. But Hamas will actually preserve power in the Gaza Strip Israel and Hamas, the terrorists have agreed on a truce in exchange for Palestinian prisoners. But Hamas will actually preserve the power in the gas sector from the documents analyzed by Drop Site, it follows that the Ministry of Defense of Israel spent 10 million dollars in the next nine months after the terrorist attack of terrorists. The total amount of all contracts, probably, could not be established from the documents that came to journalists. In July 2024, the commander of the Israeli Military Center for Information Systems of Rachel Dabembinski said that at the beginning of the ground operation in the gas sector, all the IDF systems were overloaded and the military had to purchase computing power from external contractors. For the period from October 2023 to July 2024, the volume of data stored on Microsoft servers was doubled. And the use of the Israeli military cloud servers of the company grew by almost two -thirds only in the first two months of the war. The manhal stores intelligence data on the cloud platform of Microsoft. They are used to determine the goals with the help of IIPs of the Words of the Israeli intelligence officer, whom the Associated Press agency talked to, artificial intelligence was used to search and identify the IDF over the past three years. The military loads huge arrays of observation data into the Microsoft Azure cloud platform, and then determine the goals for shock using their AI models. At the same time, according to officials, the last word, when deciding on a strike, always remains with a person. Journalists +972 Magazine note that in October 2023 the volume of services provided by the Azure of the Israeli army grew seven times compared to the pre -war month, and by March 2024 it increased by 64 times. In addition, as AP writes, after the attack on October 7, the IDF began to actively use AI for translating and deciphering intercepted conversations and audio messages, as well as to search for specific information in the resulting text. Kahal chooses goals in the gas sector using artificial intelligence. Because of this, together with the militants, Hamas perishes a huge number of civilians, the main thing from the investigation “+972” and “Sikha Mekomit” the DSAL chooses the goals in the gas sector with the help of artificial intelligence. Because of this, together with the militants, Hamas dies a huge number of civilians, the main thing from the investigation “+972” and “Sikha Mekomit” while the military admit that artificial intelligence does not always work correctly. The DSAL intelligence officer told AP about an error associated with the wrong translation that arose due to the fact that in Arabic a “handle of a hand grenade launcher” and “payment” denotes the same word. As a result, AI added to the list of goals of a person talking about money. According to the source of the publication, one officer accidentally noticed this error and the person was not killed. Another soldier who worked with guidance systems said that AI can marked as a goal of a house belonging to the Hamas fighter, but in which he does not live. Therefore, according to the protocol before applying the impact, the military must check who is inside. However, this does not always guarantee that the goal is determined correctly. In November 2023, the Israeli military mistakenly inflicted a car with civilian cars on the Lebanese border. Inside, the hijazi move with her mother and three daughters from 10 to 14 years old. After the airstrike, only Hijazi and her uncle survived, journalist Samir Ayub, who was traveling one in another car. The family claims that before leaving home, the children went outside. In addition, shortly before the blow, one of the girls helped the mother upload purchases into a car near the store – this confirms the recording from surveillance cameras. Therefore, the Israeli drones had to record that women and children were traveling in the car. In his statement after the incident, the DSAL said that he struck “on a car in the territory of Lebanon, which was identified as a suspicious vehicle with several terrorists.” Human Rights Watch did not find any evidence of a military goal nearby .AP spoke with the Israeli intelligence officer, who believes that the mistake in choosing a goal could occur at any stage of decision-making, including because of the human factor. The other military claims that AI was not used during the very blow, but did not answer the question whether he helped to choose the goal. Another source, aware of this airstrike, also confirmed AP that it was a mistake, but did not specify the details. Microsoft employees opposed the contracts with the Israeli army. Some are even fired for protesters about the cooperation of Microsoft with the IDF went before the last leaks. Inside the corporation, there is even a protest movement No Azure for Apartheid. Employees consisting in it demand to disclose all the connections of the Department, which is engaged in the Azure cloud platform, with Israel and terminate these contracts. The participants of the movement created a petition that everyone can sign (a little more than two thousand people joined it) and a closed petition for the company’s employees. In addition, they propose to send the companies a letter demanding to stop cooperation with Israeli military (215 thousand letters have already been sent). In October 2024, Microsoft fired two participants in the movement for organizing a protest and raising funds in support of Palestinian refugees at the company’s headquarters in the Redmond. About some sanctions to employees who came to a meeting with General Director Satia Outdalla in T-shirts with the text “Does our children be killed, Satya?”, It is unknown. Hoogle allowed himself to use AI to create weapons and surveillance technologies to explain why she did this, but she wanted to protect freedom of human freedom and human rights allowed the use of AI to create weapons and surveillance technologies to explain why it did, but she said that she wanted to help democratic countries to protect human freedom and human rights (Tagstotranslate) News
Credit-Read More
// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts
// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);
// Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);
Random Latest Posts Display // Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;
// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `
${description} Read more
`;
// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}
// Call the function to fetch and display the latest posts
fetchLatestPosts();