!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 

uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/lib/udev/   drwxr-xr-x
Free 3.2 GB of 97.11 GB (3.29%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     migrate-iftab.pl (2.59 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl

use strict;
use warnings;


my $IFTAB = "/etc/iftab";
my $RULES = "/etc/udev/rules.d/70-persistent-net.rules";


#-----------------------------------------------------------------------------#
# Sanity check
#-----------------------------------------------------------------------------#
die "$IFTAB does not exist to convert\n" unless -f $IFTAB;
die "$RULES already exists\n" if -f $RULES;


#-----------------------------------------------------------------------------#
# Parse /etc/iftab
#-----------------------------------------------------------------------------#

open IFTAB, $IFTAB
    or die "Unable to open $IFTAB: $!";
open RULES, ">$RULES"
    or die "Unable to open $RULES: $!";

print RULES "# This file maintains persistent names for network interfaces.\n";
print RULES "# See udev(7) for syntax.\n";
print RULES "#\n";
print RULES "# Entries are automatically added by the 75-persistent-net-generator.rules\n";
print RULES "# file; however you are also free to add your own entries.\n\n";

my @lines;
while (<IFTAB>) {
    push @lines, $_;

    chomp;
    s/^\s*//;

    next if /^\#/;
    next unless length;

    my ($iface, $selectors) = split /\s/, $_, 2;
    next unless $selectors;

    my @rules;
    while ($selectors) {
    my ($selector, $value, $remainder) = split /\s/, $selectors, 3;
    last unless $selector;
    last unless $value;
    $selectors = $remainder;

    if ($selector =~ /^SYSFS\{([^\}]*)\}$/) {
        push @rules, "ATTRS{$1}==\"$value\"";
    } elsif ($selector =~ /^driver$/) {
        push @rules, "DRIVERS==\"$value\"";
    } elsif ($selector =~ /^bus$/) {
        push @rules, "SUBSYSTEMS==\"$value\"";
    } elsif ($selector =~ /^businfo$/) {
        push @rules, "ATTR{device}==\"$value\"";
    } elsif ($selector =~ /^(mac|address)$/) {
        push @rules, "ATTRS{address}==\"" . lc($value) . "\"";
    } elsif ($selector =~ /^(arp|linktype)$/) {
        push @rules, "ATTRS{type}==\"$value\"";
    }
    }

    next unless @rules;

    print RULES "# Converted from $IFTAB on upgrade\n";
    print RULES join(", ", "SUBSYSTEM==\"net\"", "DRIVERS==\"?*\"", @rules,
             "NAME=\"$iface\"") . "\n";
    print RULES "\n";
}

close RULES
    or warn "Error while closing $RULES: $!";
close IFTAB
    or warn "Error while closing $IFTAB: $!";


open IFTAB, ">$IFTAB"
    or die "Unable to open $IFTAB: $!";

print IFTAB "# This file is no longer used and has been automatically replaced.\n";
print IFTAB "# See $RULES for more information.\n";
print IFTAB "#\n\n";

foreach my $line (@lines) {
    $line =~ s/^(\s*)/$1\#/ if $line !~ /^\s*\#/;
    print IFTAB $line;
}

close IFTAB
    or warn "Error while closing $IFTAB: $!";

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.005 ]--