StegCloak Module
yes, hide messages inside other messages!
[ Original GitHub ] ~~ [ Original Website ] ~~ [ Roblox Module ]
this stegcloak module is not the original, itβs the first that came on roblox.
StegCloak is a NPM Module, made by KuroLabs.
Ever wanted to create any protected string? Ever wanted to protect strings for your game?
with this module, you can just hide strings with a password, if the password is incorrect, it will give you a different result, even if itβs just a mayus.
Some Examples
Decode β’ββββ’β€βββ‘βββ’β£β’ββ‘ββββ’β’β€β‘βββββ€β’β’β£β€βββ’ββββ’βββ£β’β£βββ‘β’ββ‘βββ‘β£ββ‘ββ‘ββ£βββ‘ββ‘ββ’ββ’β£β‘ββββ’β‘ββ’βββ’β€me?
= Password = Password
Not ββ€β£β‘β‘β’β’ββ‘β’β€β‘β’β‘β’β£β‘β‘β£β’ββ£β‘β‘ββ‘β’β‘ββ’β‘ββββ’ββ‘ββ‘ββ’β’β€β’β‘β’β‘ββ‘β’β’β’β’β‘ββ‘β£ββ’ββ‘β£β€ββ’β€β‘β‘ββ‘β£β’β‘β’ββ’β£βββ€ββ‘β‘β’βββ’β€β£β’ββ’β’β’β‘βββ’β‘βββ€β‘β€β’ββ’β’ββ’βββ‘β’β£β‘β‘β‘ββ’β’βββββ‘β£ββ‘βa cover message
= Password = Bread
Yeah, very cool, but how it works?
It compresses and encrypts the secret before cloaking it with special unicode invisible characters.
How to add it
How to add it
First of all, get the module here.
After you insert it to your game, add a script loading it.
Example (for newbies)
local Stegcloak = require(game:GetService('ReplicatedStorage').StegCloak)
or
local Stegcloak = require(8898019946) --this works for module updates!
Then, call any of the functions.
Steg:Hide(Secret, Pass, Cover) -- with this you hide all!
Steg:Reveal(Message, Pass)
local Stegcloak = require(game:GetService('ReplicatedStorage').StegCloak)
local Hidden = Stegcloak:Hide("Secret words here!", "PasswordOfSecrets", "Cover must have 2+ words!")
local Recovered = Stegcloak:Reveal(Hidden, "PasswordOfSecrets")
print("\nHidden: ", Hidden, "\nRecovered:", Recovered)
Expected Output
Hidden: Cover must β£ββ‘ββ£β€ββ’β‘β‘βββ’ββ’β£β€ββ‘β’ββ€β’β‘β‘βββ‘β’β‘β’βββ’βββββ‘β’βββββ’ββ’β‘β’β‘ββ£βββ‘β’β‘ββ‘β‘β£ββ‘β‘β€β‘ββ‘β’β‘ββ£ββ’βββββ€β’ββ’βββ‘ββββββββββ‘βhave 2+ words!
Recovered: Secret words here!
Aaand thats what the module do!
Itβs needed to run on a server script
as HTTP Requests arenβt allowed on the client.
Itβs recommended that you clone the glitch project and change the Url on the Module.
Things you can do
- You can test doing an E2E (End To End) chat.
- You can create new things and try that the exploiters canβt read it.