Posted: Sat Nov 09, 2013 1:12 pm Post subject: Encrypting loadstring
OK so I have this script which Daspammer gave to me once when I asked him is their any way to encrypt the loadstrings but still I got no clue how can I use it in doing http request ? I want to encrypt the address of my site location from where the script is called can any one throw some light
Code:
Text = 'This is a random text'
local NewText = ''
-- Encryption part.
for i = 1,Text:len() do
if i~=Text:len() then
NewText = NewText .. string.byte(Text,i) .. ','
else
NewText = NewText .. string.byte(Text,i)
end
end
Text = NewText
print(Text);
This just converts text to numbers to avoid a plain text.
You can write your own encryption method (As I told you before).:
And you can't encrypt the site you're obtaining the data from.
If someone sniffs the packets, he can see the website url.
And response. _________________
I'm rusty and getting older, help me re-learn lua.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum