Jump to content

Protection


zezim

Recommended Posts

Hey guys, all right

I would like to know if it is still possible to steal my codes
I am using Multi Theft Auto .luac protection, ip protection and putting cache="false"

 

If yes, what would be the percentage?
Edited by zezim
Link to comment

Whats up man?

I would like to know if it is easy to decompile .luac files compiled with the tool https://luac.multitheftauto.com/

I don't want to know how to decompile, just if it's easy or not. I happen to have an ip protection that I downloaded for free from the internet.

I got free IP protection on the internet and I want to use it. What percentage do they decompile my file and overwrite the ip code?

A little about the code:

local server_ip = 'YOUR IP HERE'
local server_port = 22003
local Protect = {
   ["PROTECTED->getServerConfigSetting"] = true,
   ["PROTECTED->setServerConfigSetting"] = true
}
-- Event when resource starts
addEventHandler("onResourceStart", resourceRoot, function ( )
   -- Checking for originality of functions
   print('[PROTECT] Resource Started')
   print('[PROTECT] Checking functions for originality')
   if getServerPort() ~= server_port or getServerConfigSetting("serverip") ~= server_ip or not Protect["PROTECTED->getServerConfigSetting"] or not Protect["PROTECTED->setServerConfigSetting"] then
      print('[PROTECT] Bad Licence')
      local count = 0
      debug.sethook()
      while true do
         coroutine.resume((coroutine.create(
            function()
               while true do
                  outputDebugString("INVALID IP! PROTECTION BY ! FLOOD COUNT: " .. count)
                  count = count + 1
               end
         end)))
      end
      debug.sethook(_, debug.gethook())
      cancelEvent()
      return false
   else 
      print('[PROTECT] Good Licence')
      -- server code here
   end
end)

 

Edited by zezim
Link to comment
4 minutes ago, Tut said:

Movi seu outro post para o tópico existente@zezim, pois parece que eles compartilham o mesmo tópico

hey friend, thanks so much. sorry for it.

6 minutes ago, Tut said:

Movi seu outro post para o tópico existente@zezim, pois parece que eles compartilham o mesmo tópico

The best admin from the forum ?

  • Haha 1
Link to comment
  • Scripting Moderators
On 26/07/2022 at 22:47, zezim said:

Hey guys, all right

I would like to know if it is still possible to steal my codes
I am using Multi Theft Auto .luac protection, ip protection and putting cache="false"

 

If yes, what would be the percentage?

Your code will be fine if you're taking those precautions (using .luac & cache="false").
There's no percentage to give, but for someone to steal your code with these precautions in place would require a lot of effort & knowledge, so you don't have to worry that much.

Link to comment
3 hours ago, Vinyard said:

Your code will be fine if you're taking those precautions (using .luac & cache="false").
There's no percentage to give, but for someone to steal your code with these precautions in place would require a lot of effort & knowledge, so you don't have to worry that much.

Hey thanks so much s2

  • Like 1
Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...