Categories > Coding > Lua >

[RELEASE] HWID System in login

Posts: 2

Threads: 0

Joined: Dec, 2022

Reputation: 0

Replied

impressive

  • 0

Posts: 14

Threads: 0

Joined: Dec, 2022

Reputation: 0

Replied

Pretty nice but easily bypassed you should hide it in github and obfuscate the code if ur going to use it of the HWIDS

  • 0

Entity

Usability >> modern

vip

Posts: 416

Threads: 40

Joined: May, 2022

Reputation: 51

Replied

@90960maybe it can be bypassed anyway i just started learning lua and i did this first maybe it will inspire someone

https://cdn.discordapp.com/emojis/719305986703228978.png

  • 0

Posts: 14

Threads: 0

Joined: Dec, 2022

Reputation: 0

Replied

no problem quite good for just starting but yeah in the right hands it can be hard to bypass u did good

  • 0

Posts: 11

Threads: 2

Joined: Jul, 2022

Reputation: 0

Replied

This a very bad system, since you can just hook GetClientId

 

local mt = getrawmetatable(game)

make_writeable(mt)
local oldmt=mt.__namecall

mt.__namecall = newcclosure(function(self,...)
  local method = getnamecallmethod()

  if method == 'GetClientId' then
         return ""; -- here you'll just have to get a hwid of a whitelisted user
  end
  


   return oldmt(self,...)
end)
  • 0

bool dumbass = false;

if (dumbass) { dumbass = true; }

^^ my life weewewew

Entity

Usability >> modern

vip

Posts: 416

Threads: 40

Joined: May, 2022

Reputation: 51

Replied

  • 0

Posts: 205

Threads: 18

Joined: Sep, 2022

Reputation: 17

Replied

Nice I might use it 

  • 0

Prev

Users viewing this thread:

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