Jump to content

What can this be?


Recommended Posts

Hello

 

What can this be?

ERROR: admin\server\admin_server.Lua:1560: Admin security - Client/player mismatch from " ip player " (onElementDataChange humanity>

 

function checkClient(checkAccess,player,...)
	if client and client ~= player and g_Prefs.securitylevel >= 2 then
		local desc = table.concat({...}," ")
		local ipAddress = getPlayerIP(client)
		outputDebugString( "Admin security - Client/player mismatch from " .. tostring(ipAddress) .. " (" .. tostring(desc) .. ")", 1 )
		cancelEvent()
		if g_Prefs.clientcheckban then
			local reason = "admin checkClient (" .. tostring(desc) .. ")"
			addBan ( ipAddress, nil, nil, getRootElement(), reason )
		end
		return true
	end

 

Link to comment
  • Moderators

It looks like a client/player triggered (indirect) an event which included a different player his userdata.

Either a script/resource seems to fail the security rules or you actually got a hacker in your server.

And yes, it is related to elementdata. Unfortunately you cut off the full reason, so...

 

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...