toaruos icon indicating copy to clipboard operation
toaruos copied to clipboard

A completely-from-scratch hobby operating system: bootloader, kernel, drivers, C library, and userspace including a composited graphical UI, dynamic linker, syntax-highlighting text editor, network st...

Results 53 toaruos issues
Sort by recently updated
recently updated
newest added

K Lange sir, I am using your toaruos, so I git clone your GitHub project but the problem here is that I am unable to build an image file using...

Hi, there are many out-of-bounds read leading to possible temporary denial of service in readelf. PoC [poc_elf_out_of_bounds.zip](https://github.com/klange/toaruos/files/8879458/poc_elf_out_of_bounds.zip) ```shell ./readelf -a poc_elf_out_of_bounds ELF Header: ... Program Headers: Type Offset VirtAddr PhysAddr...

Hi `stringtable` variable appears to be missing in readelf. ```diff git diff diff --git a/apps/readelf.c b/apps/readelf.c index ce25d5e1..7ccb8082 100644 --- a/apps/readelf.c +++ b/apps/readelf.c @@ -803,6 +803,7 @@ int main(int argc,...

Hi, readelf in ToaruOS 2.0.1 has a global overflow allowing RCE when parsing a crafted ELF file. Through elaborately constructed elf files, remote code execution can be realized. PoC ```shell...

Hi If we run weather-configurator with normal permissions, the program will crash due to null pointer. ![bug](https://user-images.githubusercontent.com/25031216/172337679-6541a303-ce1e-42f8-a6fb-415b7583de33.png) Bug ```c FILE * f = fopen("/etc/weather.json", "w"); fprintf(f, "{\n"); ```

This ticket tracks functionality planned for ToaruOS 2.1, which is focused on releasing AArch64 support. ## Bug fixes and general improvements added since 2.0.1 - Several bugs have been fixed:...

Is it going to support QEMU running in ToaruOS as a host OS? So we'll have a chance to run secure os (ToaruOS) as a host and to use any...

This ticket tracks the status of support for AArch64 in Misaka and the rest of ToaruOS. As of 2022-02-09, most essential functionality is available. SMP, basic memory management, processes, threads,...

kernel

Basic bringup is completed for the RPi400 and ToaruOS can reach a desktop and run applications on one core. This ticket tracks incomplete functionality. - [x] SMP: spin up other...

Due to updates in the networking layer, it is currently impossible to get the package list with the msk app (and using the Package Manager as a result) There is...