of     2   
chevron_rightchevron_rightchevron_right

JulienDethurens
#59740641Sunday, December 18, 2011 7:34 AM GMT

So I made a source protector that protects all the scripts in your place. You just need to copy/paste the source of all your scripts in the script (following a format that is described in the script). I will later add support for an ObjectValue and StringValue system so it doesn't fill up the script with the source of all the scripts in your place. You also need to edit the source of all your scripts to change it to something like this: wait(1) _G.RunScript() SCP (Source Code Protector) will then detect what script called it and will execute the source of that script. I need some reviews and suggestions so I can release it after, perhaps, doing some edits. The source code is available at: Pastebin: fmU5K6in
JulienDethurens
#59740829Sunday, December 18, 2011 7:44 AM GMT

Added fancy ASCII title. ;)
[rfa#hidefromsearch]
#59742612Sunday, December 18, 2011 9:37 AM GMT

[rfa#hidefromsearch]
irelya
#59742651Sunday, December 18, 2011 9:41 AM GMT

@Quenty "The source code is available at: Pastebin: fmU5K6in"
[rfa#hidefromsearch]
#59742686Sunday, December 18, 2011 9:44 AM GMT

[rfa#hidefromsearch]
NXTBoy
#59742767Sunday, December 18, 2011 9:49 AM GMT

@Quenty: Looks awesome. People with forum enhancer, push "toggle markdown" to see his ascii art.
Oysi
#59744378Sunday, December 18, 2011 11:51 AM GMT

[ Content Deleted ]
JulienDethurens
#59794821Monday, December 19, 2011 3:11 AM GMT

"Also, would this protect the script? Wouldn't it still lie in memory?" Since the script was destroyed, no, it wouldn't still lie in the memory. However, you can find a version of the bytecode in the server's memory, so if you manage to go to the ROBLOX HQ, plug a monitor in the right server and open Cheat Engine from there, then you might be able to steal the bytecode of one of the functions. ""id = id == nil and getfenv(0) or id" I lol'd id = id or getfenv(0)" Sorry, you fail. What if the id is "false"? I still want to accept it. "Oh, thanks. .::::::. .,-::::: ... ;;;` ` ,;;;'````' .;;;;;;;. '[==/[[[[,[[[ ,[[ \[[, ''' $$$$ $$$, $$$ 88b dP`88bo,__,o,"888,_ _,88P "YMmMY" "YUMMMMMP" "YMMMMMP" ^ I made you a new logo. May not work too well with ROBLOX forums." Hum, I looked at the logo in Notepad++, Notepad, SciTE (with both monospaced and non-monospaced font) and it still only looked ugly, so I'm sorry, but I can't use it. :/ According to what NXTBoy said, it is awesome, so I'm sad that I can't use it. :/ I used an online ASCII thingy generator, I think.
JulienDethurens
#59795030Monday, December 19, 2011 3:15 AM GMT

Ok, so the _ONLY_ way to get a source somewhat similar to the source of your scripts is to follow these steps: 1. Go to the ROBLOX HQ. 2. Somehow get in. 3. Get in the place where the servers are. 4. Somehow find which server is the one executing a server of your game. 5. Plug a monitor on that server. 6. Download Cheat Engine on the server. 7. Run Cheat Engine. 8. Somehow find the bytecode of the script. 9. Go back home with the bytecode on an USB key. 10. Use a Lua decompiler to get a similar source. 11. Realize you forgot to get the source of the other scripts. 12. Repeat steps 1 to 10. 13. ??? 14. No profit because now, you're in jail for breaking in the ROBLOX HQ.
JulienDethurens
#59795149Monday, December 19, 2011 3:17 AM GMT

The reason this method is so awesome is simple: neither the source, neither the bytecode of your script is replicated to any client. In fact, the source is destroyed, all that is kept is the bytecode. And the only thing that can access the bytecode is the Lua VM. So.. yeah, I think this method is secure. :)
[rfa#hidefromsearch]
#59795393Monday, December 19, 2011 3:22 AM GMT

[rfa#hidefromsearch]
JulienDethurens
#59804109Monday, December 19, 2011 7:09 AM GMT

Does anyone here feel like making a plugin that automatically puts the source of all your scripts in this one and changes their source to '_G.RunScript()'? I might make one. :p Just so you guys know, this system really works and it is actually better than obfuscating your scripts. The exploiter can't even get the bytecode of the script. He can't get anything. It's like if you ran the script then removed it and it was still running. The source isn't there anymore, neither is the bytecode, but the script is still running.
xSIXxStorage
#59807378Monday, December 19, 2011 12:46 PM GMT

would not this only work in normal scripts... not local? because my local scripts is where all the good stuff is, my normal scripts are basicly round changers
Oysi
#59809456Monday, December 19, 2011 2:32 PM GMT

[ Content Deleted ]
Merlin11188
#59809711Monday, December 19, 2011 2:43 PM GMT

I'm with xSIXx. How does this work with localscripts?
Oysi
#59809775Monday, December 19, 2011 2:45 PM GMT

[ Content Deleted ]
Merlin11188
#59810084Monday, December 19, 2011 2:59 PM GMT

That's why we need to put them into the table in this script: do local sources = {} blarg = setmetatable({sources}, {__mode = "I vant to encode the source."}) end collectgarbage() Now try to get it out of memory >=D Oh wait... My scripts don't work D:
kaboom1
#59810271Monday, December 19, 2011 3:05 PM GMT

How about putting them in a data transfer system in workspace? (Values) Let the scripts communicate through them...... I might release my version when I fix the bugs. Yeah. :>
Oysi
#59812088Monday, December 19, 2011 4:03 PM GMT

[ Content Deleted ]
JulienDethurens
#59821390Monday, December 19, 2011 8:16 PM GMT

"would not this only work in normal scripts... not local? because my local scripts is where all the good stuff is, my normal scripts are basicly round changers" You are right, it only works with normal scripts, it is completely useless for local scripts. "But the table of the scripts still exists, right? In which case, it would still lie in memory." Yes, it is still in the memory. In the server's memory. And only the bytecode is there, because the source wasn't even there in the first place. I'm doing [Workspace.Script] = function() [source here] end, not [Workspace.Script] = "[source here]", so the source isn't even in the environment in the first place, it is only in the script's source, which is destroyed when the script gets destroyed. You are right, the bytecode is in the memory, in the server's memory. That's the reason I say that if you go to the ROBLOX HQ and open Cheat Engine there, you can get the bytecode of the script. But, I don't think breaking in the ROBLOX HQ is really an option... "I'm with xSIXx. How does this work with localscripts?" It doesn't. If you want to protect your local scripts, find another way. "I used this script, and did everything as instructed. But then I went online to see if I could get the source, and in a matter of seconds it was lying there in plain text. This fails more than anything. It doesn't increase security at all, it just forces you to put all your script in one little table. - _ -" You didn't use it correctly, then. Tell me, how exactly did you find the source? Even if you're in ROBLOX studio, getting the source is impossible and getting the bytecode is extremly hard. The script destroys itself, so the Source property and all the rest are gone, garbage collected. However, you CAN (since the server is on your computer, in this case) get the bytecode by using Cheat Engine and somehow finding it in the memory, since the Lua VM still has it. But, otherwise, in a real ROBLOX server, it's impossible because the only way to get the bytecode is to scan the ROBLOX server's RAM, which requires you to be in the ROBLOX HQ in the first place.. "Making scripts communicate will change nothing. Read my post. It DOESN'T WORK at all, Julien didn't even bother testing it. - _ - And EVERY script is in the memory, even global scripts (yeah)." Sorry, Oysi, but you fail completely. Neither the bytecode, neither the source is replicated. So how in the world can the player get the source from the memory? As for it just being there in plain text, that's nonsense. The script destroyed itself. Even if it didn't get garbage collected, it still doesn't get replicated, and therefore only exists in the server's memory. That is, IF it doesn't get garbage collected, but actually, it does, since there is no reference to it (unless you put one).
JulienDethurens
#59821671Monday, December 19, 2011 8:21 PM GMT

I tested it again just now to make sure, and it works perfectly.
Oysi
#59821944Monday, December 19, 2011 8:26 PM GMT

[ Content Deleted ]
DrAgonmoray
#59822058Monday, December 19, 2011 8:27 PM GMT

I don't like Oysi.
JulienDethurens
#59828989Monday, December 19, 2011 10:11 PM GMT

"THE SCRIPT CANNOT FREAKIN' GET OUT OF MEMORY 'CAUSE IT'S FREAKIN' RUNNING!!! And unless you haven't realized, server scripts ON THE SERVER replicate to the client. EVEN the source." Oh, really, so objects outside of the DataModel replicate to clients? Sure. Also, no, the script isn't "FREAKIN' RUNNING!!!". It did everything it had to do and then destroyed itself. If it destroyed itself, that's because it had finished to do everything it had to do, since the line that destroys it is the last line. I guess that a script that did everything it had to do can't be considered as "running". Look, if you don't believe me, I can just add 'error()' at the end of the script, and then, you'll be 100% certain that it isn't running anymore, since using "error()" stops the thread.
Oysi
#59833585Monday, December 19, 2011 11:14 PM GMT

[ Content Deleted ]

    of     2   
chevron_rightchevron_rightchevron_right