Jann

Results 17 issues of Jann

Hello, what would you think about a feature that converts a comparison like `[a, b] is [c, d]` that must be false (same for objects) to element comparisons? E.g.: ```...

Linux added a new config `CONFIG_PAGE_TABLE_CHECK` that is supposed to detect some types of memory management bugs related to page table permissions. Syzkaller should probably turn on that config.

enhancement

When DTD processing inside a parameter entity encounters a reference to an undefined entity, it will clear the `dtd->keepProcessing` flag but keep parsing. If `dtd->keepProcessing` is cleared between `XML_ROLE_ATTRIBUTE_ENUM_VALUE` and...

bug
help wanted

`internalEntityProcessor` only processes one open entity from the `parser->m_openInternalEntities` stack before going back to parsing from the input buffer. This means that when the parser is suspended while inside a...

help wanted

Since Linux kernel release 5.10, there's a config option `CONFIG_RCU_STRICT_GRACE_PERIOD=y` specifically to help find UAFs under KASAN: ``` config RCU_STRICT_GRACE_PERIOD bool "Provide debug RCU implementation with short grace periods" depends...

Why does this app need the READ_CONTACTS permission?

WHAT THE HELL? I hope I'm reading this code wrong: ``` if sender == 'gribble': match = self.msg.match(message) if match: print 'recieved request from gribble, grabbing', match.group(1) data = urllib2.urlopen(match.group(1)).read()...

`near_path_nat.md` says: > For HTTP/3 traffic the browser assembled UDP packets are sent via MASQUE to the IPPS and then the IPPS sends the UDP packets to the target server,...

``` $ echo '{"a":1,"a":2}' | jsonlint The "sys" module is now called "util". It should have a similar interface. { "a": 2 } $ ```

See #223 - basically, this is about joining assignment statements into expressions when appropriate: ``` a=1;f(2,5,1) f(2,5,a=1) ```