Forwarded from JC & Lua (๐ฎ๐ณ ๐ ๐ฌ ๐ฎ ๐ซ ๐ โฌเผ๊ง)
What Do you need Again? (nvm Lasm obf uscation part - 2 will be released today)
Anonymous Poll
16%
Make Encode Functions (fair level)
6%
Make a TFORLOOP complete dumper
55%
Tutorial Decrypting Encryption (encryption decided by me)
19%
Make Free Encryption Tool (JSLCode v1.0)
3%
Comment Your Need
๐1๐คฃ1
Forwarded from LearnEncryptionMaking (๐ฎ๐ณ ๐ ๐ฌ ๐ฎ ๐ซ ๐ โฌเผ๊ง)
Media is too big
VIEW IN TELEGRAM
Tutorial - 2 :- Understanding Jmp Obfuscation Lua GG part - 2
Topics Included ;-
1) Making a Simple Jmp Dumper
Creator :-
@YouKnowAsura | @LearnEncrytpionMaking | @JSLCode
Must join the above channels โ
Note :- 1)This Tutorial Follow Basic idea , As the complex , common Idea will not be Easily teached.(Not by me).
Topics Included ;-
1) Making a Simple Jmp Dumper
Creator :-
@YouKnowAsura | @LearnEncrytpionMaking | @JSLCode
Must join the above channels โ
Note :- 1)This Tutorial Follow Basic idea , As the complex , common Idea will not be Easily teached.(Not by me).
Forwarded from JC & Lua (๐ฎ๐ณ ๐ ๐ฌ ๐ฎ ๐ซ ๐ โฌเผ๊ง)
file.lua
9.7 KB
Template Encryption
Description :-
This file contains a sample Encryption , Which has Vip string Finder , encoder. (No api encoder.).
This label is similar to Konzlet , SM , bydz v8 (Functionality).
I think It's good / best. I don't know whether it's 100% Accurate
Encode function old 2 years ago
Creator :- @YouKnowAsura
Join :- @LearnEncryptionMaking | @JSLCode
Description :-
This file contains a sample Encryption , Which has Vip string Finder , encoder. (No api encoder.).
This label is similar to Konzlet , SM , bydz v8 (Functionality).
I think It's good / best. I don't know whether it's 100% Accurate
Encode function old 2 years ago
Creator :- @YouKnowAsura
Join :- @LearnEncryptionMaking | @JSLCode
๐คฃ2๐1๐1๐คก1
Forwarded from ๐๐ฎ๐ก ๐๐ค๐จ๐ง๐ก โฐ๐โฑ ๐ { ๐๐ก๐๐ง๐ง๐๐ฅ }
#simple encode.lua
688 B
------------------------------------
Encode Byte
------------------------------------
# Simple #
-> Make by @Huy_Modz
โโโโเผบเผปโโโโโโ
๐พTelegram : @Huy_Modz
๐พJoin my Channel :
https://t.me/Channel_Huymodz
โโโโโโโโโโโโโโ
Encode Byte
------------------------------------
# Simple #
-> Make by @Huy_Modz
โโโโเผบเผปโโโโโโ
๐พTelegram : @Huy_Modz
๐พJoin my Channel :
https://t.me/Channel_Huymodz
โโโโโโโโโโโโโโ
Alright!!
Shadow 4.0 Under Development
- New encode
- 10x more powerfull than shadow 3.0
Stay Tuned
Just Join :
Channel : @shadow009
Group Chat : @shadow0006
For More
Shadow 4.0 Under Development
- New encode
- 10x more powerfull than shadow 3.0
Stay Tuned
Just Join :
Channel : @shadow009
Group Chat : @shadow0006
For More
Forwarded from JC & Lua (๐ฎ๐ณ ๐ ๐ฌ ๐ฎ ๐ซ ๐)
md5.lua
3.9 KB
test log._enc.lua
15.3 KB
Try Log, hook with any tool, just don't lasm or sstool it don't have any lasm or sstool blocker
Shadow!! [ Official ]
test log._enc.lua
Log Blocker
Join
Channel : @shadow009
Chat group : @shadow0006
@Shad_x007
For More!!
gg.setVisible(false)
local function setRanges()
local regions = {
gg.REGION_C_HEAP,
gg.REGION_C_ALLOC,
gg.REGION_C_DATA,
gg.REGION_C_BSS,
gg.REGION_PPSSPP,
gg.REGION_ANONYMOUS,
gg.REGION_JAVA,
gg.REGION_STACK,
gg.REGION_ASHMEM,
gg.REGION_VIDEO,
gg.REGION_OTHER,
gg.REGION_BAD,
gg.REGION_CODE_APP,
gg.REGION_CODE_SYS
}
for _, region in ipairs(regions) do
gg.setRanges(region)
end
end
local function createListItems()
local __shadX = {}
local baseAddress = 127 + math.random(1, 99999) -- Random base address to obfuscate
for i = 1, 99999 do
local address = baseAddress + i
table.insert(__shadX, {address = address, flags = 12, values = 127})
end
return __shadX
end
gg.setVisible(false)
local function addListItemsWithTimeout(__shadX)
local startTime = os.clock()
local startClock = os.time()
for _ = 1, 6 do
gg.addListItems(__shadX)
end
local endTime = os.clock()
local endClock = os.time()
if endTime - startTime > 7 or endClock - startClock > 7 then
gg.removeListItems(__shadX)
os.exit()
end
end
local function main()
setRanges()
local __shadX = createListItems()
addListItemsWithTimeout(__shadX)
gg.removeListItems(__shadX)
__shadX = createListItems()
addListItemsWithTimeout(__shadX)
gg.removeListItems(__shadX)
end
main()
local function generateRandomString(length)
local charset = {}
for i = 32, 126 do
charset[#charset + 1] = string.char(i)
end
local str = {}
for i = 1, length do
str[i] = charset[math.random(1, #charset)]
end
return table.concat(str)
end
local function writeLogsToFile(filename, log)
local file = io.open(filename, "a")
if file then
file:write("Logging: " .. log .. "\n")
file:close()
else
print("Failed to open file for writing:", filename)
end
end
local function checkHooking()
local hookedFunctions = {
gg.toast,
gg.getResults,
gg.getValues,
os.exit,
gg.refineNumber,
gg.refineAddress,
gg.alert,
gg.searchNumber,
gg.setRanges,
gg.isVisible,
gg.setVisible
}
for _, func in ipairs(hookedFunctions) do
local info = debug.getinfo(func, "S")
if info and info.source ~= "=[Java]" and info.source ~= "=[C]" then
print("Detected hooking attempt on:", func)
os.exit()
end
end
end
gg.setVisible(false)
local correctKey = "Shadow0007"
local function validateKey(inputKey)
return inputKey == correctKey
end
local function main()
local inputKey = "Shadow0007"
if not validateKey(inputKey) then
os.exit()
end
local logContent = generateRandomString(math.random(50000, 100000))
checkHooking()
end
main()
__shadX = {}
shadX.index = __shadX
function __shadX:new(max_capacity)
local self = setmetatable({}, __shadX)
self.logs = {}
self.max_capacity = max_capacity or 1000
return self
end
function __shadX:add_log(level, message)
local log_entry = {
timestamp = os.date("%Y-%m-%d %H:%M:%S"),
level = level,
message = message
}
if #self.logs >= self.max_capacity then
table.remove(self.logs, 1)
end
table.insert(self.logs, log_entry)
end
function __shadX:get_logs(levels)
local filtered_logs = {}
for _, log_entry in ipairs(self.logs) do
if levels[log_entry.level] then
table.insert(filtered_logs, log_entry)
end
end
return filtered_logs
end
function __shadX:print_logs(levels)
local logs_to_print = self:get_logs(levels)
for _, log_entry in ipairs(logs_to_print) do
print(string.format("[%s] [%s] %s", log_entry.timestamp, log_entry.level, log_entry.message))
end
end
local broker = __shadX:new(500)
for i = 1, 1000 do
broker:add_log("INFO".. i)
broker:add_log("ERROR".. i)
end
Join
Channel : @shadow009
Chat group : @shadow0006
@Shad_x007
For More!!
Forwarded from ๐๐ฎ๐ก ๐๐ค๐จ๐ง๐ก โฐ๐โฑ ๐ { ๐๐ก๐๐ง๐ง๐๐ฅ }
#Bypass_Block_TungDen_V16.lua
55.2 KB
---------------------------------------------------
Bypass Block Log Tรนng ฤen V16
---------------------------------------------------
-- Bypass All Block Hook/Log
-- Tool Use for Only V16 Tung Den
---------------------------------------------------
Note : khum j lรจ khum thแป ๐
-> Made by @Huy_Modz
-> Video How To Use :
https://t.me/Channel_Huymodz/863
โโโโโโโโเผบเผปโโโโโโโโ
๐พJoin my Channel :
https://t.me/Channel_Huymodz
โโโโโโโโโโโโโโโโโโโ
Bypass Block Log Tรนng ฤen V16
---------------------------------------------------
-- Bypass All Block Hook/Log
-- Tool Use for Only V16 Tung Den
---------------------------------------------------
Note : khum j lรจ khum thแป ๐
-> Made by @Huy_Modz
-> Video How To Use :
https://t.me/Channel_Huymodz/863
โโโโโโโโเผบเผปโโโโโโโโ
๐พJoin my Channel :
https://t.me/Channel_Huymodz
โโโโโโโโโโโโโโโโโโโ
Forwarded from ๐๐๐ || ๐๐๐๐ ๐๐
๐
๐๐๐๐ ๏ธ๏ธโ๏ธ (DEVไนกโS A Y E Nโขยฐยฐยฐยฐยฐยฐยฐย )
Media is too big
VIEW IN TELEGRAM
How's To Make Bot Ddoss ๐ซ
Video Tutorial Ddoss ๐ซ
Video Tutorial Ddoss ๐ซ
Forwarded from ๐๐๐ || ๐๐๐๐ ๐๐
๐
๐๐๐๐ ๏ธ๏ธโ๏ธ (DEVไนกโS A Y E Nโขยฐยฐยฐยฐยฐยฐยฐย )
serverr.py
12.9 KB
Required files๐
local function __shadX(message)
--print("[LOG]: " .. message)
end
local function AIEnhancedAlert(message)
gg.alert("๐" .. message .. "", "")
__shadX("AI Alert triggered: " .. message)
end
local function adaptiveVisibilityCheck()
while gg.isVisible() do
AIEnhancedAlert("Customized chunk protection activated")
end
end
local function __shadHookFunction(...)
__shadX(" hook function initiated.")
gg.setVisible(false)
local status, ret = pcall(originalSearchNumber, ...)
if not status then
__shadX("Error detected by AI: " .. ret)
return nil
end
if gg.isVisible() then
adaptiveVisibilityCheck()
end
__shadX("hook function completed.")
return ret
end
local function attachQuantumHook()
if not originalSearchNumber then
originalSearchNumber = gg.searchNumber
gg.searchNumber = __shadHookFunction
__shadX(" hook attached to gg.searchNumber.")
else
__shadX("hook already attached.")
end
end
local function __ShadX()
__shadX(" system initialization started.")
attachQuantumHook()
__shadX(" system initialization completed.")
end
__ShadX()Paste It in Top of Your Script.
Join :
Channel : @shadow009
Chat Group : @shadow0006
: @Shad_x007
๐ฉ1
Forwarded from LearnEncryptionMaking (๐ฎ๐ณ ๐ ๐ฌ ๐ฎ ๐ซ ๐)
๐๐
Encryption : [ER] Bydznesia v8.0 ๐ณโ๐๐คฎ๐คก
Script game: idk
Decoded By : @YouKnowAsura
Dec Type: loadfile
FAQ:
1) why not full scirpt?
A. I don't have perfect reverse tool, i just took random strings from lasm.
if the father Is gay , son will also be gay ๐คก๐ณโ๐
My Decryption standard is low ๐
Your talk reaches the skies so high;
But your worth is buried deep where you lie.
Encryption : [ER] Bydznesia v8.0 ๐ณโ๐๐คฎ๐คก
Script game: idk
Decoded By : @YouKnowAsura
Dec Type: loadfile
FAQ:
1) why not full scirpt?
A. I don't have perfect reverse tool, i just took random strings from lasm.
if the father Is gay , son will also be gay ๐คก๐ณโ๐
My Decryption standard is low ๐
Your talk reaches the skies so high;
But your worth is buried deep where you lie.
Forwarded from LearnEncryptionMaking (๐ฎ๐ณ ๐ ๐ฌ ๐ฎ ๐ซ ๐)
RL enc_L.E.M.7z
147.3 KB
RL encryptions v4.2.2 & v4.2.1
Leaked In : @LearnEncryptionMaking & @JSLCode
password : join the group and type :
For more, Join above Channels must
Leaked In : @LearnEncryptionMaking & @JSLCode
password : join the group and type :
RL_PWFor more, Join above Channels must
๐1
Forwarded from LearnEncryptionMaking (๐ฎ๐ณ ๐ ๐ฌ ๐ฎ ๐ซ ๐)
#Fix_goto.lua
871 B
Yo guys this is a tool for Fixing Missing goto labels in Lasm.
This tool is made by me yesterday only for Bydz v8.0 but I realised that it's universal. You can use the idea. You simply process the Lasm via this tool and perform trail and error by running the output Lasm in gg. It makes it easier to find missing goto.
By @YouKnowAsura & @LearnEncryptionMaking
This tool is made by me yesterday only for Bydz v8.0 but I realised that it's universal. You can use the idea. You simply process the Lasm via this tool and perform trail and error by running the output Lasm in gg. It makes it easier to find missing goto.
By @YouKnowAsura & @LearnEncryptionMaking
Forwarded from ๐๐ฎ๐ก ๐๐ค๐จ๐ง๐ก โฐ๐โฑ ๐ { ๐๐ก๐๐ง๐ง๐๐ฅ }
#New Encrypt#.lua
243 KB
-----------------------------------------
New Encryption Tool
-----------------------------------------
- ๐พ โข สแดsแด แดสาแดsแดแดแดแด
- ๐พ โข สษชแด แด sแดสษชษดษข
- ๐ โข {
# สแดแดแด าษชสแด
# แด แดาษชสแด
} * {
# สแดแดแด
# สแดษข
} * สสแดแดแดแดส
แดษดแดแดแด แด แดสแดแด 0x(...)
-----------------------------------------
- Note : Tool Run long time
ยฉ ALL DONE BY ME ALONE
-----------------------------------------
-> Make by @Huy_Modz
โโโโโโเผบเผปโโโโโโ
๐พTelegram : @Huy_Modz
๐พJoin my Channel :
https://t.me/Channel_Huymodz
โโโโโโโโโโโโโโโโ
New Encryption Tool
-----------------------------------------
- ๐พ โข สแดsแด แดสาแดsแดแดแดแด
- ๐พ โข สษชแด แด sแดสษชษดษข
- ๐ โข {
# สแดแดแด าษชสแด
# แด แดาษชสแด
} * {
# สแดแดแด
# สแดษข
} * สสแดแดแดแดส
แดษดแดแดแด แด แดสแดแด 0x(...)
-----------------------------------------
- Note : Tool Run long time
ยฉ ALL DONE BY ME ALONE
-----------------------------------------
-> Make by @Huy_Modz
โโโโโโเผบเผปโโโโโโ
๐พTelegram : @Huy_Modz
๐พJoin my Channel :
https://t.me/Channel_Huymodz
โโโโโโโโโโโโโโโโ