Skip to content

Commit

Permalink
new-post instagram
Browse files Browse the repository at this point in the history
  • Loading branch information
Scrrrr committed Nov 26, 2024
1 parent b2bb4ca commit 9f3167d
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 1 deletion.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
title: Instagram Storyのメタデータを取得する
published: 2024-11-26
description: ''
image: ''
tags: []
category: 'Internet Research'
draft: true
lang: 'ja'
---

Burp Suiteを使ってInstagramの通信を観測していたところ、たまたま面白いものが見つかったので共有します。

## 手順

### 1.ストーリーを取得する
Burp SuiteのProxyを起動してからクライアントからストーリーを表示します。
ストーリーを表示する前に`HTTP history`をclearしてから押すと後で探しやすくなります。
他にBurpを使わなくてもブラウザの開発者ツールのネットワークという項目からも同じことができます。
![](network.png)


### 2.GraphQLからデータを取得する
`HTTP history`で得た情報からこのような`/graphql/query`に注目します。
![](graphql-query.png)
`MEME type`がJSONであるのが特徴です。

Response Headerには`X-FB-Friendly-Name`という項目があります。これを見ることでjsonの中身が何なのか何となく分かります。

| X-FB-Friendly-Name | 機能内容(予測) |
| ---------------------------------------------- | ------------------------------------------------ |
| PolarisStoriesV3ReelPageGalleryQuery | ストーリーのタイムライン |
| PolarisStoriesV3SeenMutation | 不明 |
| PolarisStoriesV3ReelPageGalleryPaginationQuery | 特定のユーザのストーリー情報 |
| PolarisStoriesV3AdsPoolQuery | 広告関連 |
| PolarisAPICheckNewFeedPostsExistQuery | 名前からして、新しい投稿をチェックする動的処理? |
| PolarisStoriesV3HighlightsPageQuery | 特定のユーザのハイライト情報 |

メタ情報には12種類の画像サイズや、ストーリーに付けたステッカー情報を見ることができます。

![](metadata.png)
![](metadata2.png)

## 余談
以前までは`accessibility_caption`という項目で画像に写っている物や文字を自動的に説明する文章が生成されていました。これらは内部で垢BAN対策に用いられているのかなと考察していましたが、今回調べたらNULLに変わっていたのでなくなったのかもしれません。
![](GOlJu8paQAA73H1.jpg)
![](GOlLYM-bEAAup7a.jpg)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/content/posts/graphql-instagram/metadata.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/content/posts/graphql-instagram/metadata2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/content/posts/graphql-instagram/network.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ PUSHしているので、EBPレジスタが4減少します。
10行目は2行目と逆の操作をしています。これで、呼出し元の関数に戻ります。
11行目は1行目と逆の操作をしています。
͏
[x86アセンブリ言語での関数コール](https://web.archive.org/web/20220813235400/https://vanya.jp.net/os/x86calemistry/)
[x86アセンブリ言語での関数コール](https://web.archive.org/web/20220813235400/https://vanya.jp.net/os/x86calemistry /)

͏
main関数に話を戻します。test関数が終了した後、main関数では`add esp, 8`から始まります。
Expand Down

0 comments on commit 9f3167d

Please sign in to comment.