Last active
March 14, 2025 09:17
-
-
Save SonnyRR/f43309b6793c4c47c6e7dfdc8cc64ca8 to your computer and use it in GitHub Desktop.
🔍Easily query the RARBG torrent sqlite database.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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