This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Null Pointer dereference in objcopy | |
A NULL pointer dereference was discovered in GNU objcopy (GNU Binutils) version 2.44.50.20250611 | |
due to insufficient validation in the elf_map_symbols function in elf.c. | |
This vulnerability allows attackers to cause a Denial of Service (DoS) via a crafted file. | |
### Reference | |
- https://sourceware.org/bugzilla/show_bug.cgi?id=33075 | |
- https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=412164f0a99a827a04394c7731c25084e794bcf4 | |
- https://www.cve.org/CVERecord?id=CVE-2025-55478 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from socket import * | |
import sys | |
import threading | |
HOST = "127.0.0.1" | |
PORT = 5706 | |
a = socket(AF_INET, SOCK_STREAM) | |
a.connect((HOST, PORT)) |