๐ฎ๐ณ Happy Independence Day ๐ฎ๐ณ
๐ฎ๐ณ เคเคช เคธเคญเฅ เคเฅ เคธเฅเคตเคคเคเคคเฅเคฐเคคเคพ เคฆเคฟเคตเคธ เคเฅ เคขเฅเคฐ เคธเคพเคฐเฅ เคถเฅเคญเคเคพเคฎเคจเคพเคเค ๐ฎ๐ณ
@shadow009
๐ฎ๐ณ เคเคช เคธเคญเฅ เคเฅ เคธเฅเคตเคคเคเคคเฅเคฐเคคเคพ เคฆเคฟเคตเคธ เคเฅ เคขเฅเคฐ เคธเคพเคฐเฅ เคถเฅเคญเคเคพเคฎเคจเคพเคเค ๐ฎ๐ณ
@shadow009
โค3
Forwarded from ๐๐ฎ๐ก ๐๐ค๐จ๐ง๐ก โฐ๐โฑ ๐ { ๐๐ก๐๐ง๐ง๐๐ฅ }
#Learn Make Enc Tool.lua
501 B
-> simple encrypt tool
-> made by @Huy_Modz
โโโโโโโโเผบเผปโโโโโโโโ
๐พJoin my Channel :
https://t.me/Channel_Huymodz
โโโโโโโโโโโโโโโโโโโ
-> made by @Huy_Modz
โโโโโโโโเผบเผปโโโโโโโโ
๐พJoin my Channel :
https://t.me/Channel_Huymodz
โโโโโโโโโโโโโโโโโโโ
Forwarded from LearnEncryptionMaking (๐ฎ๐ณ ๐ ๐ฌ ๐ฎ ๐ซ ๐)
EM5.2.lua
42.8 KB
Leaked Random Encryption
leak : 1
Credit: Unknown
fix your self if not working
Join @LearnEncryptionMaking
leak : 1
Credit: Unknown
fix your self if not working
Join @LearnEncryptionMaking
Someone please send a location where I can get a parrot.
๐คก1
This media is not supported in your browser
VIEW IN TELEGRAM
Shadow!! [ Official ]
Someone please send a location where I can get a parrot.
Kindly don't try any stupid shit could potential lead you in something really bad.
๐ฆ1
[KonZlet]BUSTED.lua
12.3 KB
Encrypted By Unknown
Decrypted By @shadow009
YouTube: Shadow!!
Join @shadow009 For More
Log script Fix it Yourself
Decrypted By @shadow009
YouTube: Shadow!!
Join @shadow009 For More
Log script Fix it Yourself
๐ฅ2
Forwarded from LearnEncryptionMaking (๐ฎ๐ณ [</>] ๐ ๐ฌ ๐ฎ ๐ซ ๐)
GameGuardian_101.1 (1).apk
15.1 MB
Game Guardian Logger Lua
Author : The great Jaraz
Leaked In @LearnEncryptionMaking
Usage:
-> Execute script normally, log file is saved into /sdcard/JarazCatchCode.lua
-> This doesn't log gg.searchNumber
Code to block this gg :
Join @LearnEncryptionMaking
Author : The great Jaraz
Leaked In @LearnEncryptionMaking
Usage:
-> Execute script normally, log file is saved into /sdcard/JarazCatchCode.lua
-> This doesn't log gg.searchNumber
Code to block this gg :
assert(not (gg.setVisible(false)))
Join @LearnEncryptionMaking
๐1
@Tara_Rara108
Hi it's Tara,I am a game developer in unity , i setup core mechanics and project for indie to a team from which they can build there whole game .
Contact @Tara_Rara108
For development and more
Hi it's Tara,I am a game developer in unity , i setup core mechanics and project for indie to a team from which they can build there whole game .
Contact @Tara_Rara108
For development and more
Shadow!! [ Official ] pinned ยซ@Tara_Rara108 Hi it's Tara,I am a game developer in unity , i setup core mechanics and project for indie to a team from which they can build there whole game . Contact @Tara_Rara108 For development and moreยป
Forwarded from LearnEncryptionMaking (๐ฎ๐ณ [</>] ๐ ๐ฌ ๐ฎ ๐ซ ๐)
VPS AVAILABLE
>>Containers: LXC & KVM
>> RAM : 1-16GB
>>EXT : 1-100GB
>>BANDWIDTH : 1GBPS *unmetred*
>>Price : starting from 6โฌ/month only
Dm @YouKnowAsura
>>Containers: LXC & KVM
>> RAM : 1-16GB
>>EXT : 1-100GB
>>BANDWIDTH : 1GBPS *unmetred*
>>Price : starting from 6โฌ/month only
Dm @YouKnowAsura
Everyone go and fuxk on this number whatsapp release all your anger.
+91 9538926036
This chigga is a scammer
+91 9538926036
This chigga is a scammer
Lua Encodeding and Decoding Formual
Join
@shadow009
@shadow0006
@Shad_x007
For More
local key = 69
local function encode(...)
local args = {...}
local encoded = ""
for i, arg in ipairs(args) do
local str = tostring(arg)
for j = 1, #str do
local char = str:sub(j, j)
local byteValue = char:byte() ~ key
if tonumber(char) then
encoded = encoded .. "_num[" .. i .. "][" .. j .. "]=" .. byteValue
else
if char == "_" then
encoded = encoded .. "_shad[" .. i .. "][" .. j .. "]=" .. byteValue
else
encoded = encoded .. "_char[" .. i .. "][" .. j .. "]=" .. byteValue
end
end
encoded = encoded .. char .. char
end
end
return encoded
end
local function decode(encoded)
local decoded = ""
for charType, i, j, byteValue in encoded:gmatch("(_[a-z]+)%[(%d+)%]%[(%d+)%]=(%d+)") do
local originalByteValue = tonumber(byteValue) ~ key
if charType == "_num" then
decoded = decoded .. tostring(originalByteValue)
elseif charType == "_shad" then
decoded = decoded .. "_"
else
decoded = decoded .. string.char(originalByteValue)
end
end
return decoded
end
print(decode(encode("Hello")))Join
@shadow009
@shadow0006
@Shad_x007
For More
Shadow!! [ Official ] pinned ยซLua Encodeding and Decoding Formual local key = 69 local function encode(...) local args = {...} local encoded = "" for i, arg in ipairs(args) do local str = tostring(arg) for j = 1, #str do local char = str:sub(jโฆยป
Fix if table cant take over 500K results
Join
@shadow009
@shadow0006
@Shad_x007
local _shad = _G['gg']
local function removeResultsInBatches(batchSize, maxResults)
local totalResults = _shad.getResultsCount()
while totalResults > 0 and maxResults > 0 do
local currentBatchSize = math.min(batchSize, maxResults)
local results = _shad.getResults(currentBatchSize)
_shad.removeResults(results)
totalResults = _shad.getResultsCount()
maxResults = maxResults - currentBatchSize
end
end
_shad.searchPointer(0)
local batchSize = 100000
local maxResults = 500000
removeResultsInBatches(batchSize, maxResults)
Join
@shadow009
@shadow0006
@Shad_x007
๐1