Categories > Exploiting > Scripts >

how can i get the hwid?

Posts: 36

Threads: 18

Joined: Apr, 2023

Reputation: 0

Posted

how can i get the users hwid? (using a script)

  • 0

TERIHAX

i say im gay as a joke 🙀

Posts: 2240

Threads: 102

Joined: Jul, 2020

Reputation: 32

Replied

according to chatgpt

In Lua or Luau, it is not possible to directly retrieve a user's HWID (Hardware ID). Luau is a lightweight scripting language primarily used for scripting within the Roblox platform. It doesn't provide direct access to low-level system information like a user's HWID.

HWID is typically a system-specific identifier that is unique to a particular device or hardware component. Retrieving such information would generally require lower-level programming languages or system APIs that are not available within the Lua or Luau scripting environment.

If you have a specific use case or requirement for obtaining a user's HWID, you may need to explore alternative methods or consider using other programming languages or tools that provide access to system-level information. However, it's important to note that capturing and using hardware identification information may have privacy implications and should be done with appropriate consent and adherence to relevant laws and regulations.
  • 0

Posts: 414

Threads: 3

Joined: Apr, 2021

Reputation: 43

Replied

Gethwid Is a function

  • 0

I am Styx/John/JJ.

I specialize in Luau, and I don't accept commissions. I am Jupiter's current and only founder, a known script for Prison Life. Jupiter is open-source to provide transparency.

Posts: 207

Threads: 9

Joined: Feb, 2023

Reputation: 5

Replied

You could get ClientID or send a http request to an api that returns your hwid.

  • 0

https://media.discordapp.net/attachments/1134643100715855893/1138795549244539011/SiggyOnGod.png

Posts: 1430

Threads: 71

Joined: May, 2022

Reputation: 20

Replied

Some executors have a header in their http requests with the full hwid, usually its named "exploitname-fingerprint", for example the synapse x hwid header is "Syn-Fingerprint". The thing is, not many free executors document the hwid header so i recommend setting up a repl with an express server that reads headers to find the name of the header but remember most executors dont have it so you will lack a lot of support.

 

As for the other replies, GetClientID will not always return the same response, im pretty sure that its also based on the current roblox version so its not a good method and I think that gethwid() doesnt return the full hwid but i could be wrong, the http header method is the best

Comments

ddwdwd 0 Reputation

Commented

is there a site that returns the hwid or something?

  • 0

Whoman 20 Reputation

Commented

@ddwdwd dont think so, i think you need to host your own server

 

Nevermind, you can use this:

local http_request = syn.request;

local body = http_request({Url = 'https://httpbin.org/get'; Method = 'GET'}).Body;
local decoded = game:GetService('HttpService'):JSONDecode(body)
local hwid = decoded.headers["Syn-Fingerprint"]

print(HWID: "..hwid)

keep in mind this will only work on synapse so you might need to change the header for free executors, might make a thread about something like this

  • 0

  • 1

i use arch btw

Posts: 215

Threads: 24

Joined: Jun, 2023

Reputation: 5

Replied

local HWID = game:GetService("RbxAnalyticsService"):GetClientId()
print("Your HWID is: " .. HWID)
  • 0

https://cdn.discordapp.com/attachments/968557692639666267/1139574673630318632/lodlk.png

https://cdn.discordapp.com/attachments/921008361342902274/1144217307170742363/Bez_tytuu692.png

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )