Check all flags known to be related to extended permissions (TODO) It's possible anything which has root flags implicitly has debug perm as well But I haven't confirmed it.
| 31 | // It's possible anything which has root flags implicitly has debug perm as well |
| 32 | // But I haven't confirmed it. |
| 33 | bool ps3_process_info_t::debug_or_root() const { |
| 34 | return (ctrl_flags1 & (0xe << 28)) != 0; |
| 35 | } |
| 36 | |
| 37 | bool ps3_process_info_t::has_root_perm() const { |
| 38 | return (ctrl_flags1 & (0xc << 28)) != 0; |
no outgoing calls
no test coverage detected