getFTP.pl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:3k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #!/usr/bin/perl -w
  2. #
  3. # Copyright (C) 2001 by USC/ISI
  4. # All rights reserved.
  5. #
  6. # Redistribution and use in source and binary forms are permitted
  7. # provided that the above copyright notice and this paragraph are
  8. # duplicated in all such forms and that any documentation, advertising
  9. # materials, and other materials related to such distribution and use
  10. # acknowledge that the software was developed by the University of
  11. # Southern California, Information Sciences Institute.  The name of the
  12. # University may not be used to endorse or promote products derived from
  13. # this software without specific prior written permission.
  14. #
  15. # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
  16. # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  17. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  18. #
  19. # An perl script that seperate inbound and outbound traffic of ISI domain, 
  20. # used by SAMAN ModelGen
  21. #
  22. # This work is supported by DARPA through SAMAN Project
  23. # (http://www.isi.edu/saman/), administered by the Space and Naval
  24. # Warfare System Center San Diego under Contract No. N66001-00-C-8066
  25. #
  26. sub usage {
  27.         print STDERR <<END;
  28. usage: $0 [-r Filename]
  29. Options:
  30.     -r string  file that contains a list of FTP clients, which
  31.                is output of getFTPclient.pl
  32. END
  33.         exit 1;
  34. }
  35. BEGIN {
  36.      $dblibdir = "./";
  37.         push(@INC, $dblibdir);
  38. }
  39. use DbGetopt;
  40. require "dblib.pl";
  41. my(@orig_argv) = @ARGV;
  42. &usage if ($#ARGV < 0);
  43. my($prog) = &progname;
  44. my($dbopts) = new DbGetopt("r:?", @ARGV);
  45. my($ch);
  46. while ($dbopts->getopt) {
  47.      $ch = $dbopts->opt;
  48.         if ($ch eq 'r') {
  49. $infile = $dbopts->optarg;
  50.      } else {
  51.              &usage;
  52.         };
  53. };
  54. open(FIN,"< $infile") || die("cannot open $infilen");
  55. $special_port=1024;
  56. $ftp_port=20;
  57. $num_ftp=0;
  58. while (<FIN>) {
  59.    ($host,$newline) = split(/[:() n]/,$_);
  60.    $newline="";
  61.    $ftpC[$num_ftp]=$host;
  62.    $num_ftp++;
  63. }
  64. close(FIN);
  65. while (<>) {
  66.         ($time1,$time2,$ip11,$ip12,$ip13,$ip14,$srcPort,$dummy1,$ip21,$ip22,$ip23,$ip24,$dstPort,$flag,$dummy2) = split(/[.:() ]/,$_);
  67. #        ($time1,$time2,$dummy0,$ip11,$ip12,$ip13,$ip14,$srcPort,$dummy1,$ip21,$ip22,$ip23,$ip24,$dstPort,$flag,$dummy2) = split(/[.:() ]/,$_);
  68. #        $dummy0="";
  69.         $dummy1="";
  70.         $dummy2="";
  71. $time1=0;
  72. $time2=0;
  73. $src=join(".",$ip11,$ip12,$ip13,$ip14);
  74. $dst=join(".",$ip21,$ip22,$ip23,$ip24);
  75.         if ((($srcPort > $special_port) && ($dstPort > $special_port)) ||
  76.             (($srcPort > $special_port) && ($dstPort == $ftp_port)) ||
  77.             (($srcPort == $ftp_port) && ($dstPort > $special_port))) {
  78.            $found=0;
  79.    foreach $j (0 .. $#ftpC) {
  80.      if (($src eq $ftpC[$j]) || ($dst eq $ftpC[$j])) {
  81.            $found=1;
  82.                     }
  83.    }
  84.    if (($found eq 1)  && ($flag ne "udp")) {
  85.     print "$_";
  86.    }
  87. }
  88. }