| View previous topic :: View next topic |
| Author |
Message |
B@z
Joined: 03 Jan 2007 Posts: 11
|
Posted: Mon Mar 15, 2010 7:07 pm Post subject: Solution for passworded downloads |
|
|
Please all, help think of the best way to attack the passworded-rar-in-download problem.
This seems a new wat to spead mallware and receive ad fundings, but sure is annoying.
I thought something like to open file after the first few rar's have downloaded to review the contents.
But a better solution would be some sort of nuke system where if more than x nukes the post will be filtered. I don't know how this extends to newsgroup policy.
But the bottom line must be, this has to stop. So help brainstorm for the best (long term) solution. |
|
| Back to top |
|
 |
Digitoxin
Joined: 29 Aug 2010 Posts: 6
|
Posted: Sun Aug 29, 2010 9:43 am Post subject: |
|
|
| Seems like there should be a way to analyze the rar file and abort as soon as Newsleecher is able to detect that is is password protected. This could also be extended to a content filter that can scan within the rar file to get rid of downloads containing files with extensions like .avi.exe |
|
| Back to top |
|
 |
Downstream

Joined: 09 Dec 2005 Posts: 219 Location: Somewhere downstream
|
Posted: Sat Oct 02, 2010 2:41 pm Post subject: |
|
|
Some free .nzb sites mark hits with "password protected".
But they are not failproof.
https://bugs.launchpad.net/sabnzbd/+bug/562296
I want to add if the header of the first RAR is corrupted this test can give false results.
===========================
Sorry, that is not true. It is true that WinRAR can not distinguish between password protected data and corrupted data based on the data and the checksum alone, but the RAR format has a flag for password protected files in the header, this is the way the software knows when to prompt the user for a password.
Password protected files can usually be detected by just having the first MESSAGE PART of the first .rar file, like this:
The following is some code I have used for another project:
$data is the first n bytes of a RAR archive file.
$rar=unpack('H14header/H6junk/S1encrypted', $data);
if ($rar['header']!='526172211a0700') {
output('Not a RAR archive: '.$filename.' - header is '.$rar['header']);
}
if ($rar['encrypted'] & 128) {
output('Encrypted archive!');
$encrypted=true;
} else {
$file=tempnam('/tmp','unrar-test-file');
file_put_contents($file, $data);
exec('unrar lt -ep -c- -id -r -kb -p- '.$file, $output);
unlink($file);
foreach ($output as $line) if (substr($line,0,1)=='*') $encrypted=true;
if ($encrypted) {
output('Encrypted file in archive!');
}
} _________________ To avoid the usual none answer for most bugs: "Did you defrag?"
CPU: i7 3960X 3.3Ghz
HD on which NL runs Velicoraptor in raid setup (900 GB total)
RAM: more than useful
Defrag: Daily |
|
| Back to top |
|
 |
Downstream

Joined: 09 Dec 2005 Posts: 219 Location: Somewhere downstream
|
Posted: Sat Oct 02, 2010 2:55 pm Post subject: |
|
|
Anyone got a similar header check for .wmv files? _________________ To avoid the usual none answer for most bugs: "Did you defrag?"
CPU: i7 3960X 3.3Ghz
HD on which NL runs Velicoraptor in raid setup (900 GB total)
RAM: more than useful
Defrag: Daily |
|
| Back to top |
|
 |
deedubb
Joined: 14 Feb 2009 Posts: 10
|
Posted: Sat Oct 02, 2010 4:19 pm Post subject: |
|
|
| I would love to see this feature |
|
| Back to top |
|
 |
tygrys
Joined: 23 Nov 2010 Posts: 2
|
Posted: Tue Nov 23, 2010 6:01 pm Post subject: |
|
|
| One way is to download the first rar and open it..can be annoying but I find it easier then downloading the whole thing lol |
|
| Back to top |
|
 |
Downstream

Joined: 09 Dec 2005 Posts: 219 Location: Somewhere downstream
|
Posted: Tue Nov 23, 2010 6:23 pm Post subject: |
|
|
| tygrys wrote:
|
|
One way is to download the first rar and open it..can be annoying but I find it easier then downloading the whole thing lol
|
NL could/should do that. _________________ To avoid the usual none answer for most bugs: "Did you defrag?"
CPU: i7 3960X 3.3Ghz
HD on which NL runs Velicoraptor in raid setup (900 GB total)
RAM: more than useful
Defrag: Daily |
|
| Back to top |
|
 |
B@z
Joined: 03 Jan 2007 Posts: 11
|
Posted: Thu Nov 25, 2010 7:37 pm Post subject: |
|
|
| Downstream wrote:
|
|
NL could/should do that.
|
Agreed, and thanks tygrys for bumping this up again.
This should not be that hard to implement.
Could a NL developer/admin/mod at least say if this is on the roadmap? |
|
| Back to top |
|
 |
Spiril Site Admin

Joined: 07 Nov 2003 Posts: 3589 Location: At the lab, pimping my Evel Knievel suit ...
|
Posted: Sat Nov 27, 2010 10:46 am Post subject: |
|
|
A feature that prevents NewsLeecher from downloading RAR-in-RAR sets is on the roadmap for NewsLeecher V4.1 or NewsLeecher V5.0. _________________
Bug fixed. No idea how. Hate it when that happens. Trying to break it again now. Will. not. be. defeated. |
|
| Back to top |
|
 |
Malignant
Joined: 02 Dec 2004 Posts: 16
|
Posted: Mon Dec 13, 2010 6:16 pm Post subject: |
|
|
Is it also possible to enter a password in R&E ?
I.E.
Right click on a set and have the option to "Set extraction password" ?
This way NL can cope with PW protected files. |
|
| Back to top |
|
 |
BlizzardUK
Joined: 20 Feb 2007 Posts: 31
|
Posted: Sat Feb 26, 2011 5:57 pm Post subject: |
|
|
That feature of stopping rar in rar downloads sounds great. These people uploading all these passworded files must be making money, but surely after a while people should have learnt just to bin them and not go to the site they send you to.
Just a handy little tip, always download the LAST rar file and not the first one, the last one is usually not only much smaller than the first, but also the one that contains the password.txt file.
Also perhaps there is a way to use http://www.mysterbin.com software within the supersearch ? |
|
| Back to top |
|
 |
Lazruss66
Joined: 02 Mar 2011 Posts: 1
|
Posted: Wed Mar 02, 2011 4:33 am Post subject: |
|
|
| Spiril wrote:
|
|
A feature that prevents NewsLeecher from downloading RAR-in-RAR sets is on the roadmap for NewsLeecher V4.1 or NewsLeecher V5.0.
|
So does the 5.0 beta contain this? REALLY tired of downloading crap or having to download what I dont need so that I can view what is inside. A preview feature would be the bomb.
Thanks |
|
| Back to top |
|
 |
dlmvegas
Joined: 25 Aug 2008 Posts: 39
|
Posted: Fri Mar 11, 2011 1:52 am Post subject: |
|
|
There is only one retard that is doing most, if not all of the passworded crap on the news servers. DO NOT WASTE YOUR TIME DOWNLOADING ANYTHING POSTED BY [b]Yenc-PP-A&A[/b]. Movies by this scum are showing up primarily in A.B.Movies group. I have seen some in other groups by this same scum bag.
Makes you wish there were group monitors out there that could just filter out or have an auto delete for certain poster's files. |
|
| Back to top |
|
 |
highwaykind
Joined: 01 Oct 2004 Posts: 30
|
Posted: Mon Mar 14, 2011 12:23 pm Post subject: |
|
|
I would LOVE a 'passworded' alert too!
binsearch and other have this, so I hope NL can mark passworded posts a certain color (grey them out? red?)
Blocking the Yenc-PP-A&A poster does NOT work - it's what Yenc defaults to so this will mean you also block good posts.. |
|
| Back to top |
|
 |
mrpopo
Joined: 22 Jan 2011 Posts: 2
|
Posted: Wed Apr 13, 2011 3:59 pm Post subject: |
|
|
I would love the ability to add a password to a download.
So if I download something of which I know the password. I would like to enter this password for that specific download so NL can download and unrar it when done downloading / repairing. |
|
| Back to top |
|
 |
|