Author: sparky
Date: Wed Oct 14 22:56:38 2009
New Revision: 10787

Added:
   toys/rsget.pl/Get/UpFile
Log:
- new


Added: toys/rsget.pl/Get/UpFile
==============================================================================
--- (empty file)
+++ toys/rsget.pl/Get/UpFile    Wed Oct 14 22:56:38 2009
@@ -0,0 +1,25 @@
+#!/usr/bin/perl
+
+name: UpFile
+short: UF
+uri: qr{up-file\.com/download/}
+cookie: uf
+status: OK 2009-10-14
+
+start:
+       GET( $-{_uri} );
+
+       ERROR( "file not found" )
+               if m{<h1>The requested file is not found</h1>};
+
+       my $info = $self->form( match => { action => qr{^/sms/check2.php$} } );
+       INFO( name => $info->get( "realname" ), size => $info->get( "sssize" ) 
);
+       
+       MULTI() if /Downloading is in process from your IP-Address/;
+
+       my $form;
+       ! $form = $self->form( id => "Premium" );
+
+       DOWNLOAD( $form->post() );
+
+# vim:ts=4:sw=4
_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to