If you only need a simple dlc unlocker + family sharing bypass for the native steam linux client I can give you one. It's a frida script, so it's unwieldy to inject it
Linux Crack Tips
Welcome to Linux Crack Tips!
The place to share and discuss everything about the intersection of Linux, Gaming and Piracy.
This is the official replacement for r/LinuxCrackSupport, which was abandoned by the original mod team!
Community rules:
- Be friendly, not offensive.
- No copyright infringement or illegal content.
- No NSFW content.
- Modmail is not tech support.
- No low-effort posts.
- No off-topic posts.
Important links:
- Wiki
- Database
- Repack releases
- Weekly Questions (WIP)
- Matrix room
- How to ask for support
- Gitlab repo
Related communities
I would appreciate that a ton. Sorry I'm still learning linux since I only started daily driving it around 3 months ago so I may have to bug you for help.
No biggie, let me upload it for you and also create a quick tutorial
Thank you so much, I can't thank you enough.
Don't worry, I made you a quick install script to setup Frida for your Specific use case:
#!/bin/sh
DIR="$HOME/Frida"
mkdir "$DIR"
cd "$DIR"
python -m venv "./python"
source "./python/bin/activate"
pip install frida-tools
wget https://github.com/frida/frida/releases/download/16.1.4/frida-server-16.1.4-linux-x86.xz
unxz frida-server-16.1.4-linux-x86.xz
chmod u+x frida-server-16.1.4-linux-x86
echo "#!/bin/sh
source ./python/bin/activate
frida -R -l _agent.js \$(pidof steam)" > inject.sh
chmod u+x inject.sh
echo "#!/bin/sh
sudo ./frida-server-16.1.4-linux-x86" > launch-server.sh
chmod u+x launch-server.sh
Make sure that your system has python3 installed, otherwise the script will most likely fail.
Now run my script, then download my _agent.js from https://anonymfile.com/84jO/agent.js and put it into your /home/YourUserName/Frida folder. After that navigate there and run ./launch-server.sh in your terminal. Open up another terminal in the same directory and enter ./inject.sh already, but don't press enter yet. Then startup steam and quickly execute the previously prepared ./inject.sh
That's it, good luck and enjoy :) If something's unclear feel free to reach out, and I know injecting it is annoying but I just can't be bothered to make yet another script to inject it fully automatically just yet
can you reupload the agent.js file ?