How to Reveal a Weibo Image’s Publisher Using Its URL

This guide explains how to extract the UID of a Weibo user who posted a specific image by dissecting the image URL, converting the embedded hexadecimal string to decimal, and verifying the result against the user’s profile.

Liangxu Linux
Liangxu Linux
Liangxu Linux
How to Reveal a Weibo Image’s Publisher Using Its URL

The article presents a practical technique for identifying the Weibo user who posted a given image by analyzing the image's URL, which contains the user’s UID in hexadecimal form.

Weibo stores user metadata in the image URL; the domain indicates the image server, the size code denotes the thumbnail version, and the filename includes an 8‑character hexadecimal string that represents the UID.

Example URL:

https://wx4.sinaimg.cn/orj360/4242e8adgy1hlugictxquj235s2pknpe.jpg

Steps to extract the UID:

Open the image in a new browser tab and copy its URL.

Split the URL into three parts:

Domain: wx4.sinaimg.cn – the image storage server (other subdomains like wx1, wx2, wx3 also exist).

Size code: orj360 – indicates a thumbnail; the original size uses mw690.

Filename: 4242e8adgy1hlugictxquj235s2pknpe.jpg – the first 8 characters ( 4242e8ad) are the UID in hexadecimal, followed by the rest of the filename.

The hexadecimal UID 4242e8ad converts to the decimal UID 1111681197, which matches the UID of the example user “来去之间”.

If a user has a custom domain and the UID is not directly visible, hovering over the “Follow” or “Fans” button reveals a URL with the numeric UID in the browser’s status bar.

Finally, compare the extracted UID with the UID displayed on the user’s profile page to confirm correctness.

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

WeiboOSINTImage URLUID extraction
Liangxu Linux
Written by

Liangxu Linux

Liangxu, a self‑taught IT professional now working as a Linux development engineer at a Fortune 500 multinational, shares extensive Linux knowledge—fundamentals, applications, tools, plus Git, databases, Raspberry Pi, etc. (Reply “Linux” to receive essential resources.)

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.