ThainetD เพจสำหรับแบ่งปันข้อมูลเรื่องความปลอดภัยในโลกไซเบอร์

Google แล้วก็ Canvas
13/05/2026

Google แล้วก็ Canvas

The U.S. House Committee on Homeland Security is calling on Instructure executives to testify about two cyberattacks by the ShinyHunters extortion group that targeted the company's Canvas platform, allowing threat actors to steal student data and disrupt schools during final exams.

ตามมาด้วยข้อมูลรั่วไหล สมัยนี้ ทำทุกอย่างจริงๆ
04/05/2026

ตามมาด้วยข้อมูลรั่วไหล สมัยนี้ ทำทุกอย่างจริงๆ

Cybersecurity firm Trellix disclosed a data breach after attackers gained access to "a portion" of its source code repository.

ถ้ายังไม่ได้ patch ช่องโหว่นี้มีมีเกือบสองเดือนแล้ว ในไทยก็ใช้กันหลายที่ ใครเช่าโฮสต์ ลองตรวจสอบดู
03/05/2026

ถ้ายังไม่ได้ patch ช่องโหว่นี้มีมีเกือบสองเดือนแล้ว ในไทยก็ใช้กันหลายที่ ใครเช่าโฮสต์ ลองตรวจสอบดู

For 64 days, attackers had root access to cPanel servers managing over 70 million websites, and nobody had to know a single password to get in. A crafted HTTP request was enough, and two-factor authentication made no difference. The company behind the software was told about it two weeks before the patch dropped. Their first response was that nothing was wrong.

Whoever gets in walks away with root access to the entire server through WHM: the hosted sites, the databases behind them, the email accounts, the certificates, and every credential stored on that machine. With that level of access, someone can read every hosted account, modify files and databases, create permanent backdoor accounts, install malware, steal credentials, and potentially pivot from there into customer networks. Compromising one cPanel server does not mean compromising one website. It means compromising everyone sharing that machine.

cPanel and WHM are the web-based control panels that most shared hosting providers use to manage their servers and give customers a way to control their websites, email accounts, and databases without touching the command line. cPanel is the customer-facing interface. WHM, which stands for Web Host Manager, sits above it and gives hosting providers root-level control over the entire server, including every customer account on it. According to W3Techs, cPanel is the most widely deployed web hosting control panel in the world. Rapid7 ran a Shodan scan and found approximately 1.5 million cPanel instances directly reachable from the internet. Every one of them running a version after 11.40 was affected, and version 11.40 is old enough that practically every active installation fell inside that range.

The first confirmed exploitation attempts were logged on February 23, 2026. KnownHost CEO Daniel Pearson stated publicly that his company had seen ex*****on attempts as early as that date and that the vulnerability had been used in the wild for at least 30 days before any disclosure. The public advisory came on April 28, 2026. The vulnerability was formally assigned CVE-2026-41940 the following day, with a CVSS score of 9.8 out of 10. Webhosting.today reported that the vulnerability had been flagged to cPanel roughly two weeks before that date, and that cPanel's initial response was that nothing was wrong.

The patch arrived 2 to 3 hours after the advisory. The attackers had a 64-day head start.

The technical details came to light through watchTowr researcher Sina Kheirkhah, who went looking for the answer the same way most serious vulnerability research starts: by comparing what changed. When cPanel pushed the emergency patch, Kheirkhah pulled both the old and the patched version of the code and looked at the differences. Three files had been modified: Cpanel/Session.pm, Cpanel/Session/Load.pm, and Cpanel/Session/Encoder.pm. Inside Session.pm, one change stood out. A function called filter_sessiondata had been moved. It had always existed in the codebase, always designed to strip dangerous characters from session data, but it was not being called from inside saveSession, the function that actually writes session files to disk. From that single observation, Kheirkhah worked backwards to the full exploit.

When cPanel processes a login attempt, the component responsible is called cpsrvd, the cPanel service daemon. This is the process that manages sessions and controls access to the panel. When a login attempt fails, cpsrvd does not just reject the request and move on. Before it checks whether the credentials are correct, it creates a temporary file on the server called a pre-authentication session file. Session files are how cPanel tracks request state across multiple connections. This pre-authentication file gets written to disk at a path like `/var/cpanel/sessions/raw/` and stores things like the originating IP address, an assigned security token, and whether two-factor authentication has been verified.

The format of that file is simple. One property per line, written as key=value:

```
local_ip_address=172.17.0.2
needs_auth=1
tfa_verified=0
ip_address=172.17.0.1
```

The attack relies on something called CRLF injection. CRLF stands for Carriage Return and Line Feed, two invisible control characters written in code as \r\n. On most systems, \r\n signals the start of a new line. In a session file where each line is a separate key-value property, injecting \r\n creates a new property. If an attacker can get those characters into values being written to that file, they can insert properties that were never supposed to be there, including user=root.

cPanel had a function called filter_sessiondata specifically designed to strip out \r\n characters and prevent exactly this kind of injection. The function existed in the codebase. It just was not being called from inside saveSession, the function that writes session files to disk. Every code path calling saveSession was expected to run filter_sessiondata first. One code path inside cpsrvd never did.

A second problem made it worse. When the session cookie is sent without its per-session encryption secret, cpsrvd skips the encoding of the password field entirely and writes it to the session file as raw plaintext. That combination, unsanitized input and no encoding, gave attackers a clean path to write anything they wanted into the session file.

The attacker first sends a failed login to trigger creation of the pre-authentication session file and get back a session cookie:

```
POST /login/?login_only=1 HTTP/1.1
Host: target:2087
Content-Type: application/x-www-form-urlencoded

user=root&pass=wrong
```

The response comes back as 401 Access Denied with a cookie that looks like this:

```
Set-Cookie: whostmgrsession=:Wg_mjzgt1hyfXefK,1bd3d4bf5ecbf83b660789ab0f3198fa
```

That cookie has two parts separated by a comma. The value after the comma is the per-session encryption secret. In the next request, the attacker sends the cookie back without that secret. With the encryption key gone, cpsrvd skips encoding and writes the password field as plaintext. The attacker loads that password field with \r\n-separated fake session properties:

```
Authorization: Basic [Base64 of: root:x\r\nhasroot=1\r\ntfa_verified=1\r\nuser=root\r\ncp_security_token=/cpsess999999999]
```

When cpsrvd writes the session file and reloads it, it reads user=root, hasroot=1, and tfa_verified=1 as legitimate session properties. The session is now a fully authenticated root session. Two-factor authentication is marked as already verified. No password was ever checked.

Within hours of the advisory going public, Namecheap, KnownHost, HostPapa, InMotion, and hosting.com all blocked access to cPanel and WHM ports across their own infrastructure. They locked their own customers out of their own control panels because the alternative was watching the entire customer base get compromised in real time. Namecheap had the patch applied by April 29 at 02:42 UTC. The U.S. Cybersecurity and Infrastructure Security Agency added CVE-2026-41940 to its Known Exploited Vulnerabilities catalog on April 30, 2026, with a deadline of May 21 for all federal civilian agencies to apply the fix.

On April 29, watchTowr published a full technical breakdown of the vulnerability along with a working proof-of-concept exploit. With a public exploit available and automated detection templates already built around it, the gap between disclosure and mass exploitation has closed. Anyone with a Shodan query and the PoC can scan and hit 1.5 million exposed instances. If you have not patched yet, assume scanning is already hitting your server.

The patch moved filter_sessiondata into saveSession directly, so sanitization happens automatically regardless of which code path calls the function, and added proper handling for when the per-session encryption key is missing. A function that already existed for years just needed to be called from the right place.

If you manage a cPanel or WHM server, run through these steps:

→ Check your current version: `cat /usr/local/cpanel/version`
→ Update immediately: `/scripts/upcp --force`
→ Restart the cPanel service after updating: `/scripts/restartsrv_cpsrvd`
→ If patching right now is not possible, block these ports at the firewall: 2083, 2087, 2095, and 2096
→ Stop the cpsrvd and cpdavd services if blocking ports is not an option
→ Run cPanel's official IOC detection script to check whether the server was accessed before the patch

The patched versions for each release track:

```
11.86.0.x → 11.86.0.41
11.110.0.x → 11.110.0.97
11.118.0.x → 11.118.0.63
11.126.0.x → 11.126.0.54
11.130.0.x → 11.130.0.19
11.132.0.x → 11.132.0.29
11.134.0.x → 11.134.0.20
11.136.0.x → 11.136.0.5
```

WP Squared users need version 136.1.7 or later.

If the server was running an unpatched version, cPanel released an official script that scans for signs of compromise. The two main things to look for are a pre-authentication session file that already contains user=root or similar authenticated properties, and sessions where a login was rejected but an authenticated security token was still written. WatchTowr also released a Detection Artifact Generator on their GitHub that checks whether a host is still vulnerable.

The function that would have stopped all of this already existed in the codebase. filter_sessiondata was written, tested, and in place for years. It just was not being called from the right location inside saveSession. The patch took 2 to 3 hours to write and ship after the advisory went out. The exploitation window was 64 days. That window opened the day a researcher reported the issue to cPanel and got back the response that nothing was wrong.

How attackers move through session handling, cookie manipulation, and every stage of a login process before it even completes is covered step by step in my ethical hacking course:

https://www.udemy.com/course/ethical-hacking-complete-course-zero-to-expert/?couponCode=MAY2026

Hacking is not a hobby but a way of life. 🎯

Read the full breakdown:
https://hackingpassion.com/cpanel-authentication-bypass-cve-2026-41940/

Research & writing: Jolanda de Koff | HackingPassion.com
Sharing is fine. Copying without credit is not.

ช่องโหว่ที่ยกสิทธิผู้ใช้ และพบโดย AI
03/05/2026

ช่องโหว่ที่ยกสิทธิผู้ใช้ และพบโดย AI

🚨 Copy Fail: 732 Bytes to Root on Every Major Linux Distribution

In April 2026, security researchers disclosed a critical Linux kernel vulnerability named “Copy Fail” (CVE-2026-31431) — a flaw so powerful that it allows any unprivileged user to gain root access using a tiny script.

This bug affects almost every Linux distribution released since 2017, making it one of the most widespread and dangerous privilege escalation vulnerabilities in recent years.

🔍 What is Copy Fail?

Copy Fail is a logic flaw in the Linux kernel’s cryptographic subsystem. It allows attackers to:

Write controlled data into the page cache
Modify read-only files in memory
Execute privileged binaries with injected code
Gain root (UID 0) access

👉 In simple words:

A normal user can silently modify how system files behave without changing them on disk, then execute them as root.

⚠️ Why This Vulnerability is Dangerous
1. 🔓 Works Everywhere
Same exploit works on Ubuntu, RHEL, SUSE, Amazon Linux, etc.
No need for version-specific tweaks
No compilation required

2. ⚡ 100% Reliable (No Race Conditions)

Unlike older bugs like Dirty COW:

No timing attack needed
No crash risk
Straightforward ex*****on
3. 🧠 Extremely Small Exploit
Only ~732 bytes Python script required
Uses standard libraries (no dependencies)

4. 🕵️ Stealthy Attack
Modifies memory (page cache), not disk
File integrity tools (AIDE, Tripwire) detect nothing

🧠 Root Cause (Simplified)

The bug is caused by a combination of:

AF_ALG (Linux crypto interface)
splice() (zero-copy file transfer)
Faulty handling of scatter-gather lists
What goes wrong?
splice() passes file pages directly from kernel memory
These pages are mistakenly treated as writable
A crypto function (authencesn) writes beyond bounds
Result → 4-byte overwrite in page cache

👉 That tiny overwrite is enough to:

Modify a setuid binary (like /usr/bin/su)
Inject code
Execute it as root
⚙️ How the Exploit Works (High-Level)
Open crypto socket (AF_ALG)
Load target file into memory (via splice)
Trigger controlled write into page cache
Modify a privileged binary (e.g., su)
Execute it → root shell

✔ No disk modification
✔ No alerts
✔ Immediate privilege escalation

🧨 Real Impact
💻 Affected Systems
All major Linux distros since 2017
Cloud servers
Containers / Kubernetes environments
☁️ Even Worse: Container Escape
Page cache is shared across system
Attack can break out of containers
Compromise entire host

🤖 AI Discovered It

This is one of the first major vulnerabilities discovered with AI-assisted analysis.

Researchers used an AI tool called Xint Code
It found this bug in ~1 hour

👉 This shows:

AI is becoming a powerful tool for vulnerability discovery.

🛠️ Fix & Mitigation
✅ Official Fix
Kernel patch removes unsafe “in-place” crypto operation
Separates read and write memory regions

CPanel นี่ก็ใช้กันเยอะ
03/05/2026

CPanel นี่ก็ใช้กันเยอะ

🚨 cPanel Security Alert – Stay Aware, Stay Safe

As a cybersecurity researcher, I want to bring attention to a critical security issue recently discovered in cPanel & WHM that is actively being exploited in the wild.

🔍 What happened?
A vulnerability (CVE-2026-41940) allows attackers to bypass authentication completely — meaning they can access servers **without username or password**. ([Malwarebytes][1])

⚠️ Why this is dangerous?

* Attackers can gain **root/admin access**
* Full control over websites, databases, and emails
* Possibility of data theft, malware injection, or total server wipe ([Rapid7][2])

Even more concerning — this vulnerability has been exploited as a zero-day since early 2026, before public disclosure. ([SecurityWeek][3])

🌍 Impact
cPanel is used by millions of websites worldwide, so this is not a small issue — it’s a global hosting security risk**. ([Malwarebytes][1])

🛡️ What should you do?
✔️ Update cPanel/WHM immediately to the latest patched version
✔️ Disable unused ports/services if not needed
✔️ Monitor logs and session files for suspicious activity
✔️ If you’re using shared hosting, confirm your provider has patched their servers

💬 Researcher Note:
This incident is a strong reminder — security misconfigurations and unpatched systems are still the #1 entry point for attackers. No matter how big the platform is, vulnerabilities exist.

Stay updated. Stay patched. Stay secure. 🔐



[1]: https://www.malwarebytes.com/blog/news/2026/05/actively-exploited-cpanel-bug-exposes-millions-of-websites-to-takeover

[2]: https://www.rapid7.com/blog/post/etr-cve-2026-41940-cpanel-whm-authentication-bypass "CVE-2026-41940: cPanel & WHM Authentication Bypass"

[3]: https://www.securityweek.com/critical-cpanel-whm-vulnerability-exploited-as-zero-day-for-months/amp "Critical cPanel & WHM Vulnerability Exploited as Zero-Day ..."

เหตุการณ์แฮกค์ตั้งแต่ต้นทาง เกิดขึ้นบ่อย แม้แต่กับบริษัทรักษาความปลอดภัย ที่เกิดจาก McAfee กับ FireEye
03/05/2026

เหตุการณ์แฮกค์ตั้งแต่ต้นทาง เกิดขึ้นบ่อย แม้แต่กับบริษัทรักษาความปลอดภัย ที่เกิดจาก McAfee กับ FireEye

Trellix reports source code breach with partial repository access, no exploitation found, raising security concerns.

เอกสารดีครับ
02/05/2026

เอกสารดีครับ

↪️⤵️⤵️⤵️⤵️⤵️

https://drive.google.com/file/d/1b_meVVTCkSJYqppZbUC2yomN3e2LnMS2/view

↕️↕️↕️↕️↕️↕️
↕️↕️↕️↕️↕️↕️
{🔝ที่มาบทความ-©CopyRight @ศ.พิเศษดร.เดชอุดม ไกรฤทธิ์}
ขอขอบคุณบทความ
🚫🚫cusa🚫🚫
↕️↕️↕️↕️↕️
↕️↕️↕️↕️↕️

จับได้สักที เห็นคลิปตระเวณทำหลายที่แล้ว น่าจะมีหลายกลุ่ม ใครเจอ แจ้งตำรวจได้เลย
30/04/2026

จับได้สักที เห็นคลิปตระเวณทำหลายที่แล้ว น่าจะมีหลายกลุ่ม ใครเจอ แจ้งตำรวจได้เลย

ตร.ไซเบอร์สกัดรถปล่อยคลื่นดักสัญญาณมือถือกลางกรุง รวบชาวจีน 2 รายพร้อมอุปกรณ์ อ้างไม่รู้ผิดกฎหมายไทย

อ่านข่าวในคอมเมนต์

#ตำรวจไซเบอร์ #ชาวจีน #ปล่อยคลื่นดักสัญญาณมือถือ

ของดีครับ สำหรับ Linux admin ที่กำลังมองหาคู่มือตรวจสอบเครื่อง
25/04/2026

ของดีครับ สำหรับ Linux admin ที่กำลังมองหาคู่มือตรวจสอบเครื่อง

🐧 เพราะ Linux คือ หัวใจสำคัญ ที่ขับเคลื่อนระบบ Cloud และ Infrastructure ทั่วโลก แต่น่าเสียดายที่หลายคนยังมองข้ามการทำ Monitoring ที่ลึกซึ้งพอ...
ในฐานะคนดูแลระบบ การรู้แค่ว่า "ระบบยังรันอยู่" นั้นไม่พอ แต่คุณต้องตอบได้ว่า "ใคร กำลังทำอะไร และเข้ามาทางไหน"
Linux Threat Detection 1 - 2 - 3 มาให้แบบเน้นๆ :
🔹 Part 1 : เจาะรอยนิ้วมือการเข้าถึงผ่าน SSH และ Service ต่างๆ
คู่มือจะสอนให้เราดู "รอยนิ้วมือ" ที่ประตูบ้าน (Log Files) เพื่อตอบคำถามว่า :

- มีคนพยายามสุ่มรหัสผ่าน SSH หรือไม่?
- แฮกเกอร์เจาะผ่านช่องโหว่ของเว็บไซต์ที่เราเปิดไว้หรือเปล่า?
- เครื่องมือหลัก : /var/log/auth.log หรือ sshd logs
--------------------------------
🔹 Part 2 : เทคนิคการล่า (Hunting) ด้วย Process Tree และ Auditd
เมื่อแฮกเกอร์เข้าเครื่องได้ เขาจะเริ่ม "สำรวจ" ข้อมูลสำคัญ คู่มือนี้จะสอนเทคนิคที่เรียกว่า Process Tree Analysis (การไล่สายสัมพันธ์ของโปรแกรม)

- ทุกคำสั่งที่รันบน Linux ต้องมี "พ่อ" (Parent) เสมอ
- ตัวอย่าง : ถ้าเราเห็นคำสั่ง whoami (ฉันเป็นใคร?) รันโดยมี "พ่อ" เป็น Web Server (Apache) นั่นคือสัญญาณว่าขโมยเข้ามาทางเว็บไซต์แล้ว
- เครื่องมือหลัก: Auditd, ausearch, ps aux
--------------------------------
🔹 Part 3 : ป้องกันการฝังตัว (Persistence) และการยึดสิทธิ์ Root
แฮกเกอร์ที่ฉลาดจะไม่รีบหนี แต่จะแอบ "ฝังตัว" เพื่อให้กลับมาได้อีกครั้งแม้เราจะปิดเครื่องไปแล้ว

- Persistence: การแอบรัน Script อัตโนมัติทุกครั้งที่เครื่องเปิด (Cron jobs)
- Privilege Escalation : การพยายามยึดอำนาจจาก User ธรรมดา เพื่อเป็น Root (ผู้ดูแลสูงสุดที่มีสิทธิ์ทำลายเครื่องได้)
- เครื่องมือหลัก : systemctl, crontab, การตรวจสอบสิทธิ์ sudo

✅ ยกระดับความปลอดภัยให้ Server ของคุณวันนี้ ดาวน์โหลดคู่มือฉบับเต็มได้ที่ลิงก์ด้านล่าง
--------------------------------
สอบถามรายละเอียดเพิ่มเติม :
LINE :
Facebook : Kencafe

ต้องเสียเงินเลยอ่านไม่ครบ แต่ประมาณเจอมัลแวร์ขโมยข้อมูลในการบุกค้นศูนย์แสกมเมอร์ในกัมพูชา
24/04/2026

ต้องเสียเงินเลยอ่านไม่ครบ แต่ประมาณเจอมัลแวร์ขโมยข้อมูลในการบุกค้นศูนย์แสกมเมอร์ในกัมพูชา

US-based firm and Vietnamese NPO say crime becoming easier to carry out

น่าสนใจ จังหวะทุกอย่างดูพอดีไปหมด ทั้งรหัส ทั้งช่วงเวลาเปลี่ยนโปรแกรม
23/04/2026

น่าสนใจ จังหวะทุกอย่างดูพอดีไปหมด ทั้งรหัส ทั้งช่วงเวลาเปลี่ยนโปรแกรม

ประกาศ! แจ้งเพื่อทราบ
SERVER ของสภาวิศวกรถูก Hack! และข้อมูลส่วนตัวของสมาชิกสภาวิศวกร ทั้งหมด 3 แสนกว่าราย ได้ตกอยู่ในมือของมิจฉาชีพเรียบร้อยแล้ว!!!

โดยมิจฉาชีพได้ฉวยโอกาสใช้ช่องโหว่ในช่วงสงกรานต์ที่ผ่านมา เนื่องจากช่วงเวลาดังกล่าวทางสภาวิศวกรได้ทำการอัพเกรดระบบ COE Service 2 ไปใช้ COE Service 3 ซึ่งในช่วงเวลานั้น มีช่องโหว่เกิดขึ้น กล่าวคือ โดยปกติแล้วกรรมการผู้ชำนาญในการสอบเลื่อนระดับ จะสามารถเข้าไปดูข้อมูลสมาชิกที่ขอเลื่อนระดับ ที่ตัวเองรับผิดชอบได้เท่านั้น (ซึ่งมีอยู่จำนวนหลักสิบราย) แต่ในช่วงที่มีการเปลี่ยนแปลงระบบ ได้เกิดความผิดพลาด โดยมีการอนุญาตให้ กรรมการผู้ชำฯสามารถเข้าไปดูข้อมูลของสมาชิกได้ทั้งหมดทุกคน!!
และในช่วงนั้นเองมิจฉาชีพได้ใช้ Username กับ Password ของ Admin Server และ ของกรรมการผู้ชำนาญอีก 3 ชื่อ ในการดูดเอาข้อมูลของสมาชิกทั้งหมดไป

สิ่งที่มิจฉาชีพได้ไป คือ ข้อมูลทั่วไป ที่อยู่ เบอร์โทร ที่ทำงานและข้อมูลระดับวิศวกรของแต่ละท่าน

ซึ่งหนึ่งใน Username ที่ถูกใช้ในการดูดข้อมูลออกไปนั้นมีชื่อ Username ของผมร่วมด้วยครับ!! (ทำไมมันแสนจะบังเอิญได้ขนาดนั้น) และยังมี Username ของอีกท่านที่น่าสนใจ ที่ถูกใช้ในการโจรกรรมข้อมูลในครั้งนี้ ท่านเป็นวิศวกรที่มีชื่อเสียงในวงการศึกษาและท่านเป็นถึงระดับราชบัณฑิต! (ไม่ใช่สายโยธา)

ด้วยเหตุนี้ จึงขอให้สมาชิกสภาวิศวกรทุกท่าน ทั้ง 3 แสนกว่าราย เพิ่มความระมัดระวังในการดำเนินชีวิตให้มากยิ่งขึ้นกว่าเดิม เพราะท่านอาจจะถูกแก๊งคอลเซ็นเตอร์โทรมาหาบ่อยขึ้น หรืออาจหาทางหลอกลวงท่าน โดยใช้เรื่องราวที่เกี่ยวข้องกับทางวิศวกรรมเป็นตัวนำ ขอให้เพื่อนๆ พี่ๆ น้องๆ สมาชิกสภาวิศวกร ทุกท่านโชคดีครับ ใช้ชีวิตอย่างมีสติ ปลอดภัยจากอาชญากรรมไซเบอร์

ชูเลิศ จิตเจือจุน กรรมการสภาวิศวกร สมัยที่ 8

ที่อยู่

Bangkok

เว็บไซต์

แจ้งเตือน

รับทราบข่าวสารและโปรโมชั่นของ ThainetDผ่านทางอีเมล์ของคุณ เราจะเก็บข้อมูลของคุณเป็นความลับ คุณสามารถกดยกเลิกการติดตามได้ตลอดเวลา

ติดต่อ ธุรกิจของเรา

ส่งข้อความของคุณถึง ThainetD:

แชร์