Skip to content

Instantly share code, notes, and snippets.

@SonnyRR
Last active July 15, 2023 10:10
Show Gist options
  • Save SonnyRR/f43309b6793c4c47c6e7dfdc8cc64ca8 to your computer and use it in GitHub Desktop.
Save SonnyRR/f43309b6793c4c47c6e7dfdc8cc64ca8 to your computer and use it in GitHub Desktop.
🔍Easily query the RARBG torrent sqlite database.
-- View to easily query the leaked RARBG torrent DB.
CREATE VIEW magnet_links as
SELECT id, title, cat, size, 'magnet:?xt=urn:btih:' || hash as magnetLink, imdb, dt
FROM items
ORDER BY dt DESC;
-- Example query:
SELECT * FROM magnet_links
WHERE title LIKE '%Apocalypse.Now.1979.Theatrical%'
LIMIT 501
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment