dosomder

Results 48 comments of dosomder

If the symbols have been removed from kallsyms you need to use IDA and reverse some functions. - For `selinux_enabled` you can reverse `selinux_is_enabled` - For `selinux_enforcing` you can reverse...

@EddyVerbruggen any news on this?

I did patch the hook but then I get the error ``` Cannot find module 'C:\Users\hue\Documents\GitHub\hue\platforms\android\app\src\main\assets\app\tns_modules\nativescript-nodeify\patch-npm-packages.js' ``` The folder tns_modules does not exist in this path.

I experienced this bug. Line 194 was enough to fix it.

This isn't a proper fix since the same error would happen again if the rar file was an actual multivolume. This requires a design decision however. How should a multivolume...

I added an error message and used `ARCHIVE_FATAL` since other archive entry errors also used that one. Still need to add support to skip multiple archive entries so only the...

Ok it seems to work with `archive_read_open_filenames`. The implementation also properly skips the data when `archive_read_next_header` is called. In the file posted in https://github.com/libarchive/libarchive/issues/504 the data is set to 0...

I am fine to sign off aswell.

Why do you think checking the size of the uncompressed data is not enough?

The CRC is calculated from the header and data together as far as I remember. If you tamper the crc and decompressed size, does DotNetZip keep decompressing even when it...