/self/proc/mem
/self/proc/mem
Posted Jan 20, 2026 9:25 UTC (Tue) by evomassiny (subscriber, #161550)In reply to: /self/proc/mem by cypherpunks2
Parent article: A 0-click exploit chain for the Pixel 9 (Project Zero)
Same for the pseudo-code,
i believe:
```
if ( total_size % 8 )
total_size += (8 - total_size) % total_size;
```
i believe:
```
if ( total_size % 8 )
total_size += (8 - total_size) % total_size;
```
should be:
```
if (total_size % 8)
total_size += 8 - (total_size % 8);
```
otherwise i don't understand what would be the intention
