Hidden Dumper
64.2k Views

Output Copier

Hidden DumperUploaded by
2 years ago
Please login to perform these actions:

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

View Raw
Edited By: 0xRusian Download


Comments
7
User profile picture
katze7500 2 years ago - Edited
this looks malicious
User profile picture
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.
User profile picture
Gangster4178 2 years ago - Edited
@0xRusian Where does the output go? Cuz I cant find it
User profile picture
0xRusian 2 years ago - Edited
@Gangster4178 Work*e / Output.txt
User profile picture
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
User profile picture
dwaynericarddecosto 2 years ago - Edited
How does it work
User profile picture
offdaperc52 2 years ago - Edited
HOW DO I COPY THE TEXT??? @0xRusian
Please Login to add a comment.