项目作者: jipegit

项目描述 :
Apple app-site-association database
高级语言:
项目地址: git://github.com/jipegit/apple-app-site-association-database.git


Apple app-site-association Database

This repository archives associations between Apple Team Identifiers, Bundle Identifiers and domain names. Such associations can be useful for macOS/iOS digital forensics investigations.

Data comes from app-site-association files available on Alexa TOP 100k websites. Do not expect it to be exhaustive.

More information about app-site-association files can be found on Apple Developer website.

The JSON database format is described below:

  1. [
  2. {
  3. team_id: [
  4. {
  5. "bundle_id": bundle_identifier,
  6. "domain": domain_name
  7. },
  8. ...
  9. ]
  10. },
  11. ...
  12. ]

Eg: for Facebook’s Team ID “G2H69UVXYE”:

  1. [
  2. {
  3. "G2H69UVXYE": [
  4. {
  5. "app_id": "com.leaplock.ColorfulBalloonsDev",
  6. "domain": "facebook.com"
  7. },
  8. {
  9. "app_id": "com.leaplock.ColorfulBalloons",
  10. "domain": "facebook.com"
  11. },
  12. {
  13. "app_id": "com.leaplock.ColorfulBalloonsDev",
  14. "domain": "fb.com"
  15. },
  16. {
  17. "app_id": "com.leaplock.ColorfulBalloons",
  18. "domain": "fb.com"
  19. }
  20. ]
  21. }
  22. ]

Contact

You can contact me on Twitter @Jipe_