
64.2k Views
Description
Hidden Dumper constant dump scripts obfuscated by LuaObfuscator and MoonSec V3. Game Link: https://www.roblox.com/games/17250233689/Hidden-Dumper Tutorial: https://www.youtube.com/watch?v=HwTRNNwQSWI
Comments
7

Offline
katze7500 2 years ago - Edited
this looks malicious
Offline
0xRusian 2 years ago - Edited
@katze7500 Dude, it's open-source. If you think it's malicious, maybe try reading the code before jumping to conclusions. It just extracts TextBox content from Hidden Dumper's output and writes it to a file.
Offline
Gangster4178 2 years ago - Edited
@0xRusian Where does the output go? Cuz I cant find it
Offline
0xRusian 2 years ago - Edited
@Gangster4178 Work*e / Output.txt
Offline
r3itxgamer 2 years ago - Edited
Hey @0xRusian it seems like this code outdated so i updated it for you
local path = "Output.txt"
local startTime = os.clock()
print("[ + ] - Starting extraction...")
local success, result = pcall(function()
local texts, count = {}, 0
local gui = game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui.Background.BottomBar.Output.ScrollingFrame
if gui then
for _, child in pairs(gui:GetChildren()) do
if child:IsA("Frame") then
for _, grandchild in pairs(child:GetChildren()) do
if grandchild:IsA("TextLabel") and grandchild.Name == "Text" then
local text = grandchild.Text
text = text:gsub("<font[^>]*>", "")
text = text:gsub("</font>", "")
texts[#texts+1] = text
count = count + 1
end
end
end
end
writefile(path, table.concat(texts, "\n"))
return count
else
return "Failed to find ScrollingFrame"
end
end)
if success then
print("[ + ] - Total TextLabels: " .. result)
print("[ + ] - Output written to: " .. path)
print(string.format("[ + ] - Duration: %.2f seconds", os.clock() - startTime))
else
print("[ - ] - Error: " .. result)
end
Offline
dwaynericarddecosto 2 years ago - Edited
How does it work
Offline
offdaperc52 2 years ago - Edited
HOW DO I COPY THE TEXT??? @0xRusian



IdiotHub