JC & Lua
262 subscribers
19 photos
3 videos
32 files
15 links
Just Code!
Sharing Codes and Tools For completely Free.
Download Telegram
Forwarded from LearnEncryptionMaking (🇮🇳 𝐀 𝐬 𝐮 𝐫 𝐚)
2020 - STM V was released
2017 - 2019 STM IV maybe idk when perfect
2020 - SM 4.1 released
2021 July - Konzlet Free released.


Just one thing ... Why you just chant about your Gods? Just go back to the past and think again about your words... even SM 4.1 , STM V and iv released before your master v7. I used respect Konzlet but lost it Fr.
I was Happy to be part of Xvio.- part of STM
👍1
Forwarded from LearnEncryptionMaking (🇮🇳 𝐀 𝐬 𝐮 𝐫 𝐚)
#KonzletEnc.lua.lua
15 KB
Try Decrypt , No Lasm obf , Send results to @YouKnowAsura
Forwarded from X Official (AR$£l BL00D)
im outta the waste of time community that named "Lua", there's no "X" and there's no "Max" anymore.. im happy to meet some special guys here like asura, sakura, ashor (mafia) and all "LV" members, hope you guys a better language to learn 😂. it was a great 3 years here i need to focus on real life or sum at least i've got some experience in coding, i've created many tools, many codes that i didn't realese and decrypted many scripts. I'm happy to get in the the best era of lua that at the end of "2019" cause of some ha*k videos then at "2020" i created my first channel "DecEncMax" it was one of the best lua channels in tg the content then was encrypting scripts for free, sharing hacking tools, sharing enc tools, beefin with the whole tg (Arabic, Indonesian, Indian) channels was cool decrypt scripts, leaking tools. i've worked with a big youtubers like "Scoober" then at "2021" with "GameStation". i was a leaking tools and codes from qq to tg that can help the people. and created my team that made many good lua coders, they are still doin lua til now, no body teached me lua but thanks for anyone that helped me i'll release some tools soon as free i am. bye 🙏🏻

- Max

@Decencmax
@XLuaGG
@MisterzMax
@aNotMax
👍3
md5.lua
3.9 KB
MD5 Algorithmn

Not By me I'm Just sharing it

Join :- @LearnEncryptionMaking
Also :- @JSLCode
👍2
Forwarded from LearnEncryptionMaking (🇮🇳 𝐀 𝐬 𝐮 𝐫 𝐚)
Rule 1) :- Do your Own fucking work.
Rule 2) :- my channel my decision my wish.
Rule 3) :- remember that I decoded your Dad's Encryption. oh sorry I'm the Dad of E* & S*.


It's very Good to see Kids adding Poop next to my Enc name (by logging it) , And kids coming from everywhere to celebrate when My encryption Got decoded.
Kids team.

Now Go do something other work I'm too going to Work On BGMI mod cracking & Other things.


Get some dare and come to my chat and talk
Forwarded from LearnEncryptionMaking (🇮🇳 𝐀 𝐬 𝐮 𝐫 𝐚)
::M::
local chat = gg.prompt({'ask a question'},{},{'text'})
if chat == nil then print('you quit') end
local gpt = chat[1]
local a=gg.makeRequest('https://tool.xwm.lol/api.php?msg='..gpt).content

gg.alert('Question you asked:'..gpt..'\nreply:\n'..a)

goto M

GPT 3.5 in Lua
Creator :- Unknown
Join
@LearnEncryptionMaking & JSLCode

File Complaint To get this post down if you are the creator : @YouKnowAsura
1🐳1
Forwarded from Shadow!! [ Official ] (Shadow0007)
Log Blocker
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

For More!!
👍21
Forwarded from 「 Kiran 」🇮🇳 ~[#TeamUKR]
@RevEngiBot
For reverse engineers

Channel: @RevEngi
Forwarded from LearnEncryptionMaking (🇮🇳 𝐀 𝐬 𝐮 𝐫 𝐚)
vpn=gg.makeRequest("https://time.tianqi.com/")["headers"]["Date"]
Hour,Montie,Second=vpn[1]:match("(%d+):(%d+):(%d+)")
if Hour=="00" then
Hour=24
end
time1=Hour*3600+Montie*60+Second
m=_ENV
local g=m["string"]["rep"]('\n',20000)
local d=m["string"]["rep"](g,1000)
local c=m["string"]["rep"]("\n",104857)
while #d~="20000000" or #g~="20000" or #c~="104857" do
m["os"]["exit"]()
end
local O0={}
for d=1,1024 do
O0[d]=c
end
m["__"]=function(...)
m["pcall"](...,O0)
m["xpcall"](...,m,O0)
end
local hook=function()
m["gg"]["getResults"](1)
m["gg"]["editAll"](d,4)
m["gg"]["searchNumber"](g,4)
end
m["debug"]["sethook"](hook,"r")
for b, d in m["pairs"]({
m["gg"]["toast"],
m["gg"]["alert"],
m["gg"]["bytes"],
m["gg"]["editAll"],
m["gg"]["copyText"],
m["gg"]["searchAddress"],
m["gg"]["searchNumber"],
m["gg"]["loadResults"],
m["gg"]["getListItems"],
m["gg"]["addListItems"],
}) do
m["__"](d)
end
m["debug"]["sethook"]()

vpn=gg.makeRequest("https://time.tianqi.com/")["headers"]["Date"]
Hour,Montie,Second=vpn[1]:match("(%d+):(%d+):(%d+)")
if Hour=="00" then
Hour=24
end
time2=Hour*3600+Montie*60+Second
while time2-time1>7 do
print(time2-time1)
m["os"]["exit"]()
end


Time based anti Log for LuaGG

IDK whether it's working or not
Creator = Unknown
Leak By = @YouKnowAsura
For more Leaks , Join @LearnEncryptionMaking & @JSLcode



note:- if you are the creator, complain @YouKnowAsura to take this post down
Forwarded from LearnEncryptionMaking (🇮🇳 𝐀 𝐬 𝐮 𝐫 𝐚)
Rl-v4.1.8加密工具.lua
319.6 KB
RL v4.1.8


Leaked on :- @LearnEncryptionMaking & @JSLCode

Note :- If you are the creator, dm me @YouKnowAsura for taking this post down
👍2
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.
👍1
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 : RL_PW



For more, Join above Channels must
👍1
Forwarded from X Official (سمكهعلىبلطيه)
last finish is konzlet. then leaking X & Asura decomplier
Forwarded from LearnEncryptionMaking (🇮🇳 𝐀 𝐬 𝐮 𝐫 𝐚)
ok and....lua
2.8 KB
Advice : String Obfuscation With Boolean & expression Helps you 👍
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
👍1
Forwarded from BGMI × Asura
New Channel

Hello Guys It's Me Asura And We are announcing New BGMI DDOS service 👏

What Makes our Service Unique:
1)I
t is Not a VPS, It's an API(stresser)
2) Your IP is Private And Even Socks Are Used
3) This is Not Any Kind Of lib File Spoofer. Our Api Is more than 10 times strong(18gbps) than Other bgmi ddos Bots in public(800mbps)
4) AutoMated Expiry date system makes us easier to Sell tokens
5) What's Needed more than this!

Note:
1)Its Your Gameplay Giving Ban for 1month. You can play DDOS once in a couple of days it's very better
2) Our Testing Team is Working upon New methods For implementing attacks so that we may stay unbanned


Hurry! We Have Limited Offers !!
Plans Available
:

1 week : 300rs 150rs
1 month : 700rs 500rs

Max Attacks in at a time: 3

(Basically if any 3 random guys started ddos then the 4th guy should wait until it's completed.)(But public Bots can do only 2🙈)
Hurry Offer Applies for limited Time period only!
Join The Channel To Get more Updates!

To Order: @YouKnowAsura
Forwarded from LearnEncryptionMaking (🇮🇳 𝐀 𝐬 𝐮 𝐫 𝐚)
🐳1
Q: Using bot/server can we disassemble Lua53/Lua52 ?🧐

A:
Yes, it is possible to disassemble Lua53,52 using Unluac.jar , using the command via subprocess.run() function , but there is one problem. You can't get the opcode of BOR/other bit32 api. Because Unluac Is old. It doesn't support the full bit32 api. But we can manage Because it gives specific output [op54,op(num)] etc for specific Opcodes. So do trails and check the opcode values for every left over missing code might help you, finally replacing it. (However this idea of fixing is only experimental / assumed by me, I don't garuntee this works. Else You Might Use LuaJ disassembler, extract it from gg (idk how to lol) . It is not too easy it's pretty tough to do it. But if we are able to do it then you just got the GameGuardian's disassembler without game guardian.