question

Dmitry Kobzev avatar image
Dmitry Kobzev asked

How can i get a list of player IDs which are using a same specific IP?

Here's the deal: I noticed that several cheating player accounts share the same IP. Or even two.
Accounts gets banned, but some of them still there, using new IP, but most possibly sharing the same IP they first logged on from.
I was wondering how it's possible to find all of them at once. For example, enter specific IP- get specific player ID list.
Thank you in advance.

10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

·
Citrus Yan avatar image
Citrus Yan answered

First, you need to make sure the following settings are enabled:

Once that’s done, you should be able to receive the player_device_info event containing IP and other info (using our SDKs) when a player logs in. Then use our Data Explorer to query the player ids with a specific IP, for instance, here is a sample query:

['events.all'] 
| where FullName_Name == "player_device_info" 
| where EventData.DeviceInfo.PlayerLocation.IP == "xxx.xxx.xxx.xxx"
| distinct Entity_Id

It will return the following results:


1.png (33.0 KiB)
2.png (9.9 KiB)
10 |1200

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.