GitHub RDP - mirrored files (live index)
====================================
Main Rentry (myurl0): https://rentry.co/myurl0
Telegraph: https://telegra.ph/GHRDP-file-mirror-09-23
FOLDERS - quick overview (no scrolling needed)
| # | Folder | Files | Total size |
|---|---|---|---|
How to decrypt (.ghenc files)
Only needed when the file name ends with .ghenc. Plain files stream directly on gofile.
- Download the .ghenc file.
- Open PowerShell, run the one-liner below; when asked for Password paste the decrypt key above.
- Output = same file name without .ghenc.
powershell -c "& { $p=Read-Host 'Password'; $s=[IO.File]::ReadAllBytes($args[0]); $kdf=[Security.Cryptography.Rfc2898DeriveBytes]::new($p,$s[0..15],100000,'SHA256'); $a=[Security.Cryptography.Aes]::Create(); $a.Key=$kdf.GetBytes(32); $a.IV=$s[16..31]; $d=$a.CreateDecryptor(); $ms=[IO.MemoryStream]::new(); $cs=[Security.Cryptography.CryptoStream]::new($ms,$d,'Write'); $cs.Write($s,32,$s.Length-32); $cs.FlushFinalBlock(); [IO.File]::WriteAllBytes(($args[0] -replace '.ghenc$',''), $ms.ToArray()) }" FILE.ghenc
Runner egress used for uploads: 52.159.247.144