This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
My local machine is a Mac and I ran out of disk space on on my remote machine's "/dev/xvda1" filesystem. % sudo df Filesystem 1K-blocks Used Available Use% Mounted on /dev/xvda1 10190104 9321508 747356 93% / tmpfs 15701132 27684 15673448 1% /dev/shm /dev/nvme0n1 913044544 89288740 777352704 11% /local so to [...] read more
I have been studying computer vulnerabilities and have been working on this problem for countless hours. I cannot seem to get the heap to overflow correctly. Despite glibc detecting a memory corruption, after disabling MALLOC_CHECK_ my program executes and exits correctly as if overwriting the chunk header didn't matter. I [...] read more
I have someone trying to connect to a CenOS 7 server via Windows Remote Desktop (based on the instructions here: https://www.itzgeek.com/how-tos/linux/centos-how-tos/install-xrdp-remote-desktop-to-centos-6-rhel-6.html) using SSSD and their AD credentials (if relevant). They are seeing this when attempting to connect: enter image description here [https://i.stack.imgur.com/5u0gF.png] Note that my own account is able to [...] read more
In Python, I'm trying to extract some data from a binary file. I know the offsets of my data. They are always the same. For instance, written beneath is the first 4 offsets and the converted offset as a decimal value. * Offset1 - 0x00000409 - 1033 * Offset2 - [...] read more
There is quite a common issue in unix world, that is when you start a process with parameters, one of them being sensitive, other users can read it just by executing ps -ef. (For example mysql -u root -p secret_pw Most frequent recommendation I found was simply not to do [...] read more