Reddit Piracy
1.9K subscribers
7.82K photos
191 videos
36.6K links
Download Telegram
igg-games.com downloads triggered Windows Security, Google Drive Antivirus, Microsoft says it's a trojan.

I was getting content from igg-games when chrome halted the download, triggering both Microsoft Security and Google Drive's native antivirus. Googling the detected file name gave me this:

[Microsoft Security Intelligence Description](https://www.microsoft.com/en-us/wdsi/threats/malware-encyclopedia-description?Name=Trojan:Win32/Wacatac.A!ml&ThreatID=2147735504)

Just a PSA!

(If this isin't the right subreddit, feel free to let me know.)

https://redd.it/cupxwh
@redditpiracy
What does "internal" mean?

Sorry if this sounds stupid but I looked it up in the search bar, didn't find any posts about it and I often see this on files and stuff. Does internal just signify their source? Like, for example,

Chilling Adventures of Sabrina S02E01 iNTERNAL 1080p WEB x264-AMRAP

At first I thought it'd be the group name because of the small i but that doesn't look like it since the group name is AMRAP I presume. So the next best guess is that it's the source? So, my next question would be, what's the difference between internal and web-dl and stuff?

And if its not the source, what does it mean and is it any different from other releases?

https://redd.it/curbjk
@redditpiracy
Yet another horriblesubs downloader

I've seen a lot of downloaders for horriblesubs in this sub.
And yet, I'm here to present a new downloader which is console based:
[https://github.com/Jelomite/horrible-downloader](https://github.com/Jelomite/horrible-downloader)


**Main Features**:

* everything is inside the console - no need for a torrent client.
* allows for subscribing to shows - automatically download new episodes.
* easy to configure


Suggesting new features are always welcome, just submit a new issue.

https://redd.it/curmm2
@redditpiracy
Anyone know how to crack iOSGods ViP Cheats?

Game cheats for iOS Jailbreak are cool and all, but an overpriced monthly subscription for them isn't. (Also im kinda broke rn) If anyone knows how to crack ViP accounts or cheats, info would be amazing!

https://redd.it/cuse4y
@redditpiracy
Watch movies on smart TV

Hi all,

so it’s my first time purchasing a smart TV so bear with me here.

I got all my movies in my external HDD (.MKV files). When I purchase a smart TV, to play the movies all I have to do is connect the drive to the TV and select said movie right?

https://redd.it/cuthzz
@redditpiracy
Certcollection

Is any else experiencing registration issues on cert? I always get a driver error and the database can't be reached. Any fixes?

https://redd.it/cuu2ge
@redditpiracy
Multiplayer with SSE

So, i got Deep Rock Galactic with the Smart Steam Emulator, and I'm wondering, are there any discord servers for SSE users to play together and talk? I have for some reason friends in the overlay already, but they don't pop up everytime, and playing DRG solo isn't recommended.

https://redd.it/cutns8
@redditpiracy
Transferring 150gb of pirated music from PC onto iPhone

I've been a flip phone user for a long time. Finally got an iPhone. I want to transfer my entire 150gb pirated music collection onto my iPhone to have access to on the go. First, is this safe? I'm not too savvy with smartphones just yet. Is there any way that the iPhone will somehow know that the music is pirated and rat me out or is this a ridiculous concern? Second, what would be the best way to transfer such a huge amount of data from a pc to an iPhone?

https://redd.it/cuxens
@redditpiracy
Youtube-dl for Youtube Movies

Just as the title said, I was wondering if there was a workaround for the "This video requires payment to watch" message in youtube-dl disallowing it from downloading the video. (Screenshot in comments)

https://redd.it/cuyj40
@redditpiracy
Vmware esxi standard license limitation bypass

so i host a little server at home for games
but i need to have more than 8 cores assigned for a vm but the standard license prevents that.
anyone know a way or crack that i can apply to bypass this limitation? i get that that the free version and test mode is ment for bussinesses but i'm a home user who likes to mess with industry hardware and software

https://redd.it/cuyofc
@redditpiracy
[Guide] How to set up Docker containers to automatically download any TV show or movie

Before I begin the guide, a few things:

- Mods, if you want to wiki this or want me to add/change anything, please let me know
- This guide is intended for educational purposes only - I used this myself to learn Docker for work
- Feel free to share this
- Ask for your help if you need it and I'll help where I can
- If this ca be improved, please let me know

Now to the guide

# Download Anything Using Docker Containers

## TL;DR What Is This?
- Download any TV show or movie that's coming out or is already out
- Easily rebuild, modify or add any component you like
- Download privately through a VPN
- Download from Usenet sources
- Manage your files with a web file browser UI

## What Do You Mean? Give Me An Example
- It's currently August 2019
- New episodes of the TV series "Suits" come out each week
- One of my containers runs Sonarr which will automatically download new episodes for me as soon as they are available
- I can check a box and hit search to download past episodes too
- The downloads come from torrents from any indexer I choose or from any Usenet provider I choose

## Requirements
- Ubuntu Server 18.04 ([The ISO can be downloaded from here](https://ubuntu.com/download/server))
- [My script that you're free to modify in any way you like](https://gitlab.com/snippets/1878730)
- Storage
- Some time
- (Optional) A Private Internet Access subscription
- (Optional) A Usenet news provider subscription
- (Optional) A Usenet indexer

## Installing Ubuntu Server
- Boot up the installer
- Choose your language and locale
- Change your IP to a static address
- My home network is 192.168.0.0/24 so I chose 192.168.0.19
- Use the entire disk and set up an LVM
- Don't forget to expand the disk size
- Enter your username and server hostname
- I chose "user1" and "docker-test"
- Check the box to install OpenSSH server
- Skip the snaps as there's issues with the Docker snap
- Wait for the server to install
- Reboot the server once install is complete

## Updating The Server
- SSH to the server using your application of choice
- I use PuTTY
- Run
```
sudo su
```
- Enter your password
- Then run
```
apt update && apt upgrade && reboot
```
- Enter `y` for any prompts
- Wait for the system to reboot
- SSH back into the server

## Installing Docker
- [Instructions for this are sourced from this page](https://docs.docker.com/install/linux/docker-ce/ubuntu/)
- Run the below and enter your password when prompted
```
sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common
```
- Run this to add the Docker GPG key
```
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
```
- Run this to check the fingerprint returns a match
```
sudo apt-key fingerprint 0EBFCD88
```
- Run this to add the Docker repo
```
sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
```
- Run this to update the repo list
```
sudo apt-get update
```
- Run this to install Docker
```
sudo apt-get install -y docker-ce docker-ce-cli containerd.io
```
- Run this to confirm Docker is installed
```
sudo docker run hello-world
```
- Run this to create the Docker group
```
sudo groupadd docker
```
- Run this to add your user account to the Docker group
```
sudo usermod -aG docker $USER
```
- Now reboot
```
sudo reboot
```
- Once rebooted try running hello-world as non-root
```
docker run hello-world
```
- The container should run
- This confirms you can run containers without needing to escalate to root each time

## Installing Portainer For Web Container Management
- [Instructions for this are sourced from this page](https://www.portainer.io/installation/)
- Create the portainer config volume
```
docker volume create portainer_data
```
- Run the below to start the container
```
docker run -d --restart always -p 8000:8000 -p 9000:9000 -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer
```
- Browse to http://serverip:9000 to confirm it works
- So I'd use http://192.168.0.19:9000
- You will be prompted to set a password to log into Portainer
- Create one
- I use `admin` for the username and `adminadmin` for the password
- Now select `local` and `connect` to connect to your server's local Docker instance
- You can now manage containers from the web

## Configuring Filebrowser
- Before we can deploy the containers we need to create the DB file for Filebrowser
- SSH to the server
- Run
```
sudo mkdir /var/lib/docker/volumes/filebrowser/
sudo touch /var/lib/docker/volumes/filebrowser/filebrowser.db
```

## Deploying The Containers
- Select `stacks` and `add stack`
- Give the stack a name at the top
- I called mine `Download-Stack`
- [Paste the contents of my script into it](https://gitlab.com/snippets/1878730)
- This is where we meet a small fork in the road
- If you know what you're doing with VPNs and other VPN providers, you can modify the script and go from there
- Assuming you're following this guide as-is, we will continue
- Scroll up to `pia` at the top
- Scroll down until you hit `environment`
- Modify your variables for your PIA account
- Modify your variables for the region you'd like to connect to
- Modify your variables to specify your subnet
- So mine would look like
```
- USER=MyPIAUsername
- PASSWORD=MyPIAPassword
- REGION=Netherlands
- EXTRA_SUBNETS=192.168.0.0/24
```
- Once modified, deploy the stack
- This will take a while depending on your internet connection as it needs to download each container image
- Once done, you will see all containers running in your containers view

## Configuring JDownloader
- To make JDownloader work you need to configure it with your account
- Click on the JDownloader container from your container view
- Click on `console`
- Change the command to `/bin/sh`
- Type
```
configure myemail@address.com myjdownloaderpassword
```
- Go to https://my.jdownloader.org/ and log in
- Your JDownloader container should appear there

## URLs & Logins For Each Container
- Below is a list of URLs for each container and what they do
- Modify for your IP and bookmark them for easy access

### Filebrowser
- For web management of files
- It's bound to port 80 so no port is specified
- http://192.168.0.19
- Username `admin`
- Password `admin`

### Firefox
- For private, disposable browsing through a VPN
- http://192.168.0.19:5800
- No login

### Jackett
- For adding torrent indexers to Sonarr and Radarr
- http://192.168.0.19:9117
- No login by default but you can add one

### JDownloader
- For downloading anything
- https://my.jdownloader.org/
- Login is configured in the container as specified above

### NZBget
- For downloading files from a Usenet provider
- http://192.168.0.19:6789
- Username `nzbget`
- Password `tegbzn6789`

### PIA
- VPN container
- All other containers force their network traffic through this container
- If this container dies, so do all other containers
- This is to prevent IP and DNS leaks
- The container uses iptables to kill the connection if the VPN drops inside it

### qBittorrent
- For downloading torrents
- http://192.168.0.19:8080
- Username `admin`
- Password `adminadmin`

### Radarr
- For downloading movies
- http://192.168.0.19:7878
- No login by default but you can add one

### Sonarr
- For downloading TV shows
- http://192.168.0.19:8989
- No login by default but you can add one

## Configuring Each Application
- Now for the boring manual part that I will gloss over because it's 22:30 and I'm tired
- A lot of this is bespoke depending on who you are and what you want
- I will create a video that quickly goes over each part of this with what to do
- I will continue with this guide tomorrow

## Other Useful Tools
- There's an Android app called `nzb360` which provides fantastic mobile management of
- Sonarr
- Radarr
- NZBGet
- qBittorrent

https://redd.it/cuzmro
@redditpiracy
Need Help Downloading Video from JW Player 8.3.5 Please

Hi all. I used to be able to download videos that were being streamed using JW Player, by using various browser add-ons/extensions. But, I haven't been able to find a way to get these anymore. It seems there is no actual file, just bits and pieces that get sent and then assembled/played on the fly. I think there might be some way to do it with VLC, but I'm not sure how.

Does anyone have a working method they're willing to share? Thank you very very much!!

https://redd.it/cuzcwy
@redditpiracy
How to get azw4 file form Amazon eBook for deDRMing

Hi, I'm a new pirate. I bought an ebook from Amazon but I got an azw file. I don't know how to get the azw4 file if it exists at all (for deDRM and converting to pdf). I tried to get free samples of other books to see if the book I bought only had azw format but they were all azw. I have Kindle4PC v1.17 and calibre with deDRM plugin.

https://redd.it/cv0gst
@redditpiracy
Is there an alternative for transmissionon Mac where I can get a similar "minimalist" client?
https://redd.it/cv215r
@redditpiracy