Categories > Exploiting > Scripts >
how can i get the hwid?
Posted
how can i get the users hwid? (using a script)
Cancel
Post
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.
Cancel
Post
Replied
You could get ClientID or send a http request to an api that returns your hwid.
Cancel
Post
https://media.discordapp.net/attachments/1134643100715855893/1138795549244539011/SiggyOnGod.png
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
Cancel
Post
Did I mention I use arch btw?
Replied
local HWID = game:GetService("RbxAnalyticsService"):GetClientId()
print("Your HWID is: " .. HWID)
Cancel
Post
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 )
Comments
ddwdwd 0 Reputation
Commented
is there a site that returns the hwid or something?
0
Whoman 17 Reputation
Commented
@ddwdwd dont think so, i think you need to host your own server
Nevermind, you can use this:
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