Net Library Exploiting
Hi, I recently came across a method to find pretty much all net.send and net.receive functions on a server, though I don't really know how to identify exploitable ones/how to exploit them, for example
00411: util.AddNetworkString( "egg" )
00488: net.Receive( "egg", function( len, ply )
00535: net.Start( "egg" )
00536: net.SendToServer()
*
or
00214: util.AddNetworkString( "SendFile" )
00218: net.Start( "SendFile" )
00219: net.WriteString( fileToSend )
00220: net.Send( target_plys[ i ] )
00254: net.Receive( "SendFile", function()
00255: local runFile = net.ReadString()