Post Syndicated from corbet original https://lwn.net/Articles/1019996/
Linus has released 6.15-rc5 for testing.
“So it all feels like things are just continuing to go well this
“
release. Let’s hope I didn’t jinx it by saying so.
Post Syndicated from corbet original https://lwn.net/Articles/1019996/
Linus has released 6.15-rc5 for testing.
“So it all feels like things are just continuing to go well this
“
release. Let’s hope I didn’t jinx it by saying so.
Post Syndicated from Eric Smith original https://www.servethehome.com/kioxia-cd8p-r-30-72tb-pcie-gen5-nvme-ssd-review/
In our Kioxia CD8P-R 30.72TB review, we see how this high capacity PCIe Gen5 SSD performs across our benchmarks
The post Kioxia CD8P-R 30.72TB PCIe Gen5 NVMe SSD Review appeared first on ServeTheHome.
Post Syndicated from LastWeekTonight original https://www.youtube.com/watch?v=TfgAd3Y0A3c
Post Syndicated from Explosm.net original https://explosm.net/comics/captain-2
New Cyanide and Happiness Comic
Post Syndicated from xkcd.com original https://xkcd.com/3085/

Post Syndicated from Explosm.net original https://explosm.net/comics/butterfingers
New Cyanide and Happiness Comic
Post Syndicated from Patrick Kennedy original https://www.servethehome.com/asus-rs720-e12-rs8g-2u-intel-xeon-server-nvidia-review/
ASUS RS720-E12-RS8GIn our ASUS RS720-E12-RS8G review, we see how this 2U server handles Intel Xeon 6 processors and up to ten expansion cards, including multiple NVIDIA H100 NVL GPUs
The post ASUS RS720-E12-RS8G 2U Intel Xeon 6 Server Review appeared first on ServeTheHome.
Post Syndicated from The History Guy: History Deserves to Be Remembered original https://www.youtube.com/watch?v=qaJci1mKrAQ
Post Syndicated from The History Guy: History Deserves to Be Remembered original https://www.youtube.com/watch?v=jgwAJKt_o8U
Post Syndicated from Oglaf! -- Comics. Often dirty. original https://www.oglaf.com/down/
Post Syndicated from LGR original https://www.youtube.com/watch?v=Z_Rd38K5U0M
Post Syndicated from Matt Granger original https://www.youtube.com/watch?v=tSKe9NJOEmc
Post Syndicated from Eric Smith original https://www.servethehome.com/crucial-x9-pro-2tb-usb-type-c-ssd-review/
In our Crucial X9 Pro review, we see how this 2TB USB Type-C SSD performs compared to the X10 Pro and the Samsung T7 Shield
The post Crucial X9 Pro 2TB USB Type-C SSD Review appeared first on ServeTheHome.
Post Syndicated from Explosm.net original https://explosm.net/comics/pirate-ship-3-at-worlds-end
New Cyanide and Happiness Comic
Post Syndicated from The History Guy: History Deserves to Be Remembered original https://www.youtube.com/watch?v=uPobKUueS-w
Post Syndicated from The Atlantic original https://www.youtube.com/watch?v=D7ot-oVq1P4
Post Syndicated from Backblaze original https://www.backblaze.com/blog/setting-the-record-straight/

Recently, a short seller made claims about Backblaze that were factually inaccurate, misleading, and filled with errors.
Short sellers frequently spread false or misleading information to manipulate a company’s stock price for their personal financial gain at the expense of other stockholders. Nevertheless, we want to set the record straight.
Whether you’re a Backblaze customer, investor, or you’re just getting to know us, here’s what you need to know:
The short seller largely rehashed baseless claims made by two disgruntled former employees last year.
In an effort to enrich themselves, the short seller questioned the health of Backblaze.
The short seller tried to push some other false narratives about Backblaze. Here are the facts:
If you want to hear more about how we’re doing and what we’re working on, check out our investor relations section.
The post Setting the Record Straight appeared first on Backblaze Blog | Cloud Storage & Cloud Backup
Post Syndicated from Bruce Schneier original https://www.schneier.com/blog/archives/2025/05/friday-squid-blogging-pyjama-squid.html
The small pyjama squid (Sepioloidea lineolata) produces toxic slime, “a rare example of a poisonous predatory mollusc.”
As usual, you can also use this squid post to talk about the security stories in the news that I haven’t covered.
Post Syndicated from Crosstalk Solutions original https://www.youtube.com/shorts/GXyo2Lz36LE
Post Syndicated from Spencer McIntyre original https://blog.rapid7.com/2025/05/02/metasploit-wrap-up-114/

Security is hard, and Open Source Security is a collaborative effort. This week, Metasploit released a fix for a vulnerability that was privately disclosed to us by long-time community member bcoles. The vulnerability in question impacted Metasploit users who were using the clipboard monitoring functionality contained within the extended-API Meterpreter extension (extapi). After a user enables monitoring, they would typically run clipboard_monitor_stop or clipboard_monitor_dump to retrieve information from the compromised host. The vulnerability existed in Metasploit’s handling of files that may be present in the remote hosts clipboard. When files were downloaded, they would, by default, be written to in the current working directory and would overwrite any existing files.
An attacker could leverage this by placing a malicious file into their clipboard and waiting for the Metasploit operator to download it, then execute it. As an example, an attacker may assume that the Metasploit operator is running Metasploit from the current working directory of Metasploit itself. In that case, they could have a malicious Ruby file named msfconsole in their clipboard. When the Metasploit operator dumps the contents of the remote clipboard, their local copy of msfconsole would be overwritten and then executed the next time they started Metasploit. It should be noted that the file that is written to is printed in the command’s output, but may be ignored by the user.
Now with the changes introduced in #19938, the extapi’s clipboard monitoring commands have been updated to make this significantly more difficult. Two primary changes were made. Now Metasploit will require a directory to be specified by the user of where file contents should be written to. Additionally, files will not be overwritten automatically. In order to overwrite an existing file, the user must specify the –force argument. If a file would be or is overwritten, it will be noted in the output:
meterpreter > clipboard_monitor_dump -d test_dir --force -p
Files captured at 2025-04-01 19:11:30.0503
==========================================
Remote Path : C:\Users\smcintyre\Desktop\hello-world.txt
File size : 11 bytes
Downloading : C:\Users\smcintyre\Desktop\hello-world.txt -> /home/smcintyre/Repositories/metasploit-framework.pr/test_dir/hello-world.txt
Downloaded 11.00 B of 11.00 B (100.0%) : C:\Users\smcintyre\Desktop\hello-world.txt -> /home/smcintyre/Repositories/metasploit-framework.pr/test_dir/hello-world.txt
Completed : Overwrote existing file /home/smcintyre/Repositories/metasploit-framework.pr/test_dir/hello-world.txt
The Metasploit team would like to thank bcoles for bringing this issue to our attention. We have assigned it CVE-2025-3095 and evaluated it with a CVSS score of 5.0 / Medium (CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:A/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P). This vulnerability was fixed in Metasploit version 6.4.60, released on April 30th, 2025.
Authors: Hynek Petrak, Spencer McIntyre, Thomas Seigneuret, and Tyler Booth
Type: Auxiliary
Pull request: #20017 contributed by zeroSteiner
Path: gather/ldap_passwords
Description: This updates and renames the ldap_hashdump module to ldap_passwords, extending its functionality to extract secrets used by LAPSv1 and LAPSv2 in Active Directory environments, alongside existing LDAP implementations. It simplifies usage by unifying techniques under one module and avoids requiring users to fingerprint the server type. Associated tests were also updated to include AD-specific data using Samba as a test LDAP server.
Authors: Milad "Ex3ptionaL" Karimi and msutovsky-r7
Type: Exploit
Pull request: #20081 contributed by msutovsky-r7
Path: multi/http/wondercms_rce
AttackerKB reference: CVE-2023-41425
Description: Adds a new module “exploit/multi/http/wondercms_rce” which exploits CVE-2023-41425 – a file upload vulnerability. The module will authenticate against the vulnerable WonderCMS instance using a given password and then creates a zip file with a malicious PHP file. The module then uploads a zip file, which gets automatically parsed into /themes directory and executed by the application.
modules/post/osx modules.You can find the latest Metasploit documentation on our docsite at docs.metasploit.com.
As always, you can update to the latest Metasploit Framework with msfupdate
and you can get more details on the changes since the last blog post from
GitHub:
If you are a git user, you can clone the Metasploit Framework repo (master branch) for the latest.
To install fresh without using git, you can use the open-source-only Nightly Installers or the
commercial edition Metasploit Pro