Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/uroboro/notificationexplorer
See what notifications exist at runtime
https://github.com/uroboro/notificationexplorer
jailbreak logos notifications reverse-engineering theos
Last synced: 25 days ago
JSON representation
See what notifications exist at runtime
- Host: GitHub
- URL: https://github.com/uroboro/notificationexplorer
- Owner: uroboro
- License: gpl-3.0
- Created: 2013-09-01T04:55:36.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-05-31T13:06:23.000Z (over 6 years ago)
- Last Synced: 2024-08-03T01:37:24.854Z (3 months ago)
- Topics: jailbreak, logos, notifications, reverse-engineering, theos
- Language: Logos
- Homepage:
- Size: 45.9 KB
- Stars: 49
- Watchers: 5
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
NotificationExplorer
====================See what notifications exist at runtime.
It keeps a list of notifications that come in contact with:
classes:
- NSNotificationCenter
- NSDistributedNotificationCenter
- CPDistributedNotificationCenter
- CPDistributedMessagingCenterfunctions:
- CFNotificationCenterAddObserver
- CFNotificationCenterPostNotification
- CFNotificationCenterPostNotificationWithOptions
- notify_post
- notify_register_check
- notify_register_signal
- notify_register_mach_port
- notify_register_file_descriptorCleared out list of hooked classes and functions: sources/interfaces.h
Designed to be used in cycript with the following commands:
```
?expand
[[UFSNotificationList sharedInstance].notifications description]
```To save the table of notifications, you can do:
```
[[UFSNotificationList sharedInstance].notifications writeToFile:@"/User/process.notifications.plist" atomically:YES]
```