exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

procmask.txt

procmask.txt
Posted Aug 1, 2008
Authored by despai | Site despai.es

This is a simple piece of code for GNU/Linux that masquerades a process.

systems | linux
SHA-256 | 2d995009a52a37a5040f72bed8827c1ba14cf44fb05682fd3ee28e43148c8543

procmask.txt

Change Mirror Download
# + procmask.pl
# + Version 0.8
# + Description: argv[] disguise
# u need to send new string from STDIN > file
# ! Tested on GNU/Linux 2.6.22-14-generic
# + written by despai [skkunk@gmail.com - www.despai.es]

#!/usr/bin/perl

die " \n Usage:\n $0 <file>\n\n"
if ( $#ARGV + 1 != 1 );
die " \n Error al abrir el fichero\n\n"
unless ( open FILENAME_IO, "+<" . $ARGV[0] );

# C code which we'll add
$new_code =
' int short pos;' . "\n"
. ' int short size;' . "\n"
. ' char new_argv[15][30];' . "\n"
. ' char MASCARA[]="xdxd";' . "\n"
. ' strncpy(new_argv[0],argv[0],30);' . "\n"
. ' bzero(argv[0],strlen(argv[0]));' . "\n"
. ' strncpy(argv[0], MASCARA, 30);' . "\n"
. ' if(argc >= 2) {' . "\n"
. ' for(pos=1; pos<=argc-1; pos++)' . "\n"
. ' strncpy(new_argv[pos], argv[pos],30);' . "\n"
. ' for(pos=1; pos<=argc-1; pos++)' . "\n"
. ' bzero(argv[pos],strlen(argv[pos]));}' . "\n";

# Going to remplace argv[] and argc to diffrents names
# And we had to find main() to add next $new_code
while ( $line = <FILENAME_IO> ) {
if ( ( $line =~ /.*main.*\(.*\).*/ ) and !$llave ) {
( $line =~ /.*{.*/ ) ? print $line. $new_code : ( $llave = 1 )
&& print $line;
next;
}
if ( $llave and ( $line =~ /.*{.*/ ) ) {
print $line. $new_code;
$llave = 0;
next;
}
$line =~ s/argv\[(\d)*\]/new_argv\[$1\]/;
print $line;
}

close FILENAME_IO;

Login or Register to add favorites

File Archive:

September 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Sep 1st
    261 Files
  • 2
    Sep 2nd
    17 Files
  • 3
    Sep 3rd
    38 Files
  • 4
    Sep 4th
    52 Files
  • 5
    Sep 5th
    23 Files
  • 6
    Sep 6th
    27 Files
  • 7
    Sep 7th
    0 Files
  • 8
    Sep 8th
    1 Files
  • 9
    Sep 9th
    16 Files
  • 10
    Sep 10th
    38 Files
  • 11
    Sep 11th
    21 Files
  • 12
    Sep 12th
    40 Files
  • 13
    Sep 13th
    18 Files
  • 14
    Sep 14th
    0 Files
  • 15
    Sep 15th
    0 Files
  • 16
    Sep 16th
    21 Files
  • 17
    Sep 17th
    51 Files
  • 18
    Sep 18th
    23 Files
  • 19
    Sep 19th
    48 Files
  • 20
    Sep 20th
    0 Files
  • 21
    Sep 21st
    0 Files
  • 22
    Sep 22nd
    0 Files
  • 23
    Sep 23rd
    0 Files
  • 24
    Sep 24th
    0 Files
  • 25
    Sep 25th
    0 Files
  • 26
    Sep 26th
    0 Files
  • 27
    Sep 27th
    0 Files
  • 28
    Sep 28th
    0 Files
  • 29
    Sep 29th
    0 Files
  • 30
    Sep 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close