Search found 3 matches

by agentclark
May 8th, 2014, 12:28 pm
Forum: Post-Processing Scripts
Topic: codec folder exe virus:any postscript to detect and remove?
Replies: 6
Views: 9209

Re: codec folder exe virus:any postscript to detect and remo

Sorry for the late reply.

This is no Python code, it is a shell script.
Maybe it will work on mac too, i've no idea.
You can try to name the script

Code: Select all

checkcodec.sh
and make it executable.

Hope this helps.
Agent
by agentclark
March 16th, 2014, 6:28 am
Forum: Post-Processing Scripts
Topic: codec folder exe virus:any postscript to detect and remove?
Replies: 6
Views: 9209

Re: codec folder exe virus:any postscript to detect and remo

If you exclude .exe files in your config, you wont get the virus, but you still have a crab release. So you need a post progressing script which scans every release for a folder "codec" and if this folder is present, delete the whole release. #!/bin/bash dir=$1 name=$3 if [ -d "${dir}...
by agentclark
January 30th, 2013, 8:39 am
Forum: Third-party Addons
Topic: [NEWZNAB][LINUX] simple automated backfill day-by-day script
Replies: 2
Views: 14512

[NEWZNAB][LINUX] simple automated backfill day-by-day script

hey folks, just wrote a backfill script that is going day-by-day for either one or all active groups. <?php // This script is doing automated backfills and release updates day-by-day for either one or all groups. // After every 5 backfills, it will perform a database optimisation, can be changed on ...