Skip to content

Instantly share code, notes, and snippets.

@john-tornblom
Created April 5, 2024 22:56
Show Gist options
  • Save john-tornblom/28f20e79a54bed332ae46defb39c4891 to your computer and use it in GitHub Desktop.
Save john-tornblom/28f20e79a54bed332ae46defb39c4891 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
PS5_HOST=ps5
ELFLDR=https://github.com/john-tornblom/ps5-payload-elfldr/releases/download/release%2Fv0.11/Payload.zip
KLOGSRV=https://github.com/john-tornblom/ps5-payload-klogsrv/releases/download/release%2Fv0.3/Payload.zip
FTPSRV=https://github.com/john-tornblom/ps5-payload-ftpsrv/releases/download/release%2Fv0.6/Payload.zip
SHSRV=https://github.com/john-tornblom/ps5-payload-shsrv/releases/download/release%2Fv0.4/Payload.zip
wget -q -O - $ELFLDR | gunzip -c -d | nc -q3 $PS5_HOST 9020
wget -q -O - $KLOGSRV | gunzip -c -d | nc -q3 $PS5_HOST 9021
wget -q -O - $FTPSRV | gunzip -c -d | nc -q3 $PS5_HOST 9021
wget -q -O - $SHSRV | gunzip -c -d | nc -q3 $PS5_HOST 9021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment