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:

May 2024

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

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close