Do not use on any
shared computer
August 29, 2008 02:59pm pdt
 
[x]
Attachment Details

Can someone explain this perl script?

=**************************************
    = Name: Administrator Log Backup Script
    = Description:This code was original mad
    =     e for personal use to monitor all my lin
    =     ux log files and keep them safe
    = By: Damian myerscough
    =
    = Returns:A report which will be encrypt
    =     ed and uploaded to an FTP server
    =
    = Assumes:you will need to know your Gnu
    =     PG ID for encrypting
    =
    =This code is copyrighted and has    = limited warranties.Please see http://w
    =     ww.Planet-Source-Code.com/vb/scripts/Sho
    =     wCode.asp?txtCodeId=587&lngWId=6    =for details.    =**************************************
   
    #!/usr/bin/perl -w
    #
    #
    use Net::FTP;
    #
    # System commands
    #
    $uname = `uname -a`;
    $proftpd = `tail /var/log/proftpd.log`;
    $secure = `tail /var/log/secure`;
    $lastlog = `lastlog`;
    $w = `w`;
    $date = `date`;
    $df = `df`;
    #
    # Split The Date up
    #
    @Time = split(/ /, $date);
    @NewTime = split(/:/, $Time[3]);
    #
    # Create a report
    #
    open(LOGFILE, ">>/home/*******/system.log") || die "Could not create file $!\n";
    print LOGFILE ("+--------------------------------------------------------------------+\n");
    print LOGFILE (" System Name: $uname\n");
    print LOGFILE ("+--------------------------------------------------------------------+\n");
    print LOGFILE (" Date: $date\n");
    print LOGFILE ("+--------------------------------------------------------------------+\n");
    print LOGFILE (" Secure: $secure \n");
    print LOGFILE ("+--------------------------------------------------------------------+\n");
    print LOGFILE (" Proftpd: $proftpd \n");
    print LOGFILE ("+--------------------------------------------------------------------+\n");
    print LOGFILE (" Lastlog: $lastlog \n");
    print LOGFILE ("+--------------------------------------------------------------------+\n");
    print LOGFILE (" Hard Disk: $df\n");
    print LOGFILE ("+--------------------------------------------------------------------+\n");
    print LOGFILE (" System ustage: $w \n");
    print LOGFILE ("+--------------------------------------------------------------------+\n");
    close(LOGFILE);
    #
    # Securly encrypt file
    #
    system("gpg -e -r 0xF297A73E /home/*****/system.log");
    #
    # Securly shred log files and make unrecoverbly
    #
    system("shred -n 1024 /home/********/system.log");
    system("rm -rf /home/********/system.log");
    $FTP = Net::FTP->new('ftp.tripod.com', Debug => 0) || die "Could not connect to FTP server: $@\n";
    $FTP->login("username", '******') || die "Could not login: ", $FTP->message;
    $FTP->put('/home/*******/system.log.gpg', 'system.log' . $NewTime[0] . $NewTime[1] . $NewTime[2] . '.gpg');
    $FTP->quit;
    #
    # Delete The encrypted file
    #
    system("rm -rf /home/******/system.log.gpg");
Start your free trial to view this solution
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

Question Stats
Zone: Programming
Question Asked By: jaisonshereen
Solution Provided By: torimar
Participating Experts: 3
Solution Grade: A
Views: 0
Translate:
Loading Advertisement...
 
[+][-]Expert Comment by torimar
Expert Comment by torimar:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Author Comment by jaisonshereen
Author Comment by jaisonshereen:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Expert Comment by ozo

Rank: Genius

Expert Comment by ozo:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Accepted Solution by torimar
Accepted Solution by torimar:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
[+][-]Assisted Solution by Tintin

Rank: Sage

Assisted Solution by Tintin:

All comments and solutions are available to Premium Service Members only.

Start your 7-day free trial and see for yourself why Experts Exchange is the easiest and most proven technology resource in the world. Get Started

Already a member? Login to view this solution.

 
 
Loading Advertisement...
20080723-EE-VQP-34 / EE_QW_2_20070628