ShellBanner
System:Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686
Software:Apache. PHP/5.3.6-13ubuntu3.10
ID:uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
Safe Mode:OFF
Open_Basedir:OFF
Freespace:27.14 GB of 70.42 GB (38.54%)
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,

/ usr/ share/ doc/ freeradius/ examples/ - drwxr-xr-x

Directory:
Viewing file:     users2mysql.pl (4.07 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl -w
#
# users2mysql.pl -- a script to parse a RADIUS users file and fill
#                   a freeradius mysql database...
#
#
# Script developed by Rich Puhek, Znet Telecom
#
# last change: Aug 8th, 2002.
#



#Modify to suit your db.
$database="radius";
$hostname="localhost";
$user="radius";
$password="passwd";


#location of source users file:
$users_file="/etc/raddb_cistron_backup/users";


#The following are defaults from freeradius 0.7
#  ...shouldn't have to change.
$groups_table="usergroup";
$check_table="radcheck";
$reply_table="radreply";

$debug=3;

use DBD::mysql;

#open the users file, and the db.
open USERS, $users_file or die "ERROR: Unable to open $users_file $!\n";
$database = DBI->connect("DBI:mysql:$database:$hostname",$user, $password) or die "ERROR: Unable to connect to $database on $hostname $!\n";

sub check_attribs {

    if (!defined($_[0]) or !defined($_[1])) {
        print "undefined parameter!\n";
        return undef;
    };

    $attr = $_[0];
    $val  =  $_[1];

    if ($attr !~ /Password|Framed-IP-Address|Framed-IP-Netmask|Framed-IP-Routing|Framed-Routing|Framed-IP-Route|Password|Simultaneous-Use|Idle-Timeout|Auth-Type|Service-Type|Netmask|Framed-Protocol/ ) {
        print "unrecognized attribute: $attr\n" if $debug>1;
        return undef;
    };

    return undef if (     (! defined($val) ) or
        ( ($attr =~ /Simultaneous\-Use/i) && ( $val !~ /^[0-9]*$/ ) )
        );
    print "attribs ok!\n" if $debug>3;
    return "TRUE";
};

sub cleanup {
    #clean up variables: strip leading/trailing spaces and trailing commas...
    my $myval;
    $myval = $_[0];
    $myval =~ s/^\s//g;
    $myval =~ s/\s$//g;
    $myval =~ s/,$//;
    return $myval;
};


sub user_attribute {
    #push values into db...
    $dtable=$_[0];
    $duser=$_[1];
    $dattrib=$_[2];
    $dval=$_[3];

    print "inserting \"$dattrib\", \"$dval\" for \"$duser\" in rad$dtable\n" if ( $dtable !~ /group/ and $debug>2);
    print "inserting \"$duser\" into usergroup table as member of \"$dattrib\"\n" if ( $dtable =~ /group/ and $debug>2);

    if ( $dtable =~ /group/ ) {
        $table = "usergroup";
    } elsif ( $dtable =~ /check/ ) {
        $table = "radcheck";
    } elsif ( $dtable =~ /reply/ ) {
        $table = "radreply";
    } else {
        die "argh! what table is $dtable?\n";
    };


    if ( $table =~ /usergroup/ ) {
        if ( $dattrib =~ /static/ ) {
            #Delete the "dynamic" entry...
            $return = $database->do ("DELETE FROM `$table` WHERE `UserName`='$duser' LIMIT 1");
        };
        $return = $database->do ("INSERT INTO `$table` SET `UserName`='$duser',`GroupName`='$dattrib'");

    } else {
        $return = $database->do ("INSERT INTO `$table` SET `UserName`='$duser',`Attribute`='$dattrib',`Value`='$dval', `op`=':='");
    };
    return $return;
};


while (<USERS>) {

    chop;
    #Skip comment lines and blank lines...
    next if ( /^\#/ );
    next if ( /^$/ );
    next if ( /^\s*$/ );

    if ( /^[a-zA-Z0-9]+/ ) {
        print "located a user entry: $_\n" if $debug>6;
        ($user,$rest) = split /\s/, $_, 2;
        #Put user into usergroup as dynamic, if the user's attributes
        # include an IP address, the script will change that later...
        user_attribute("group",$user,"dynamic","");
        @attribs = split /,/, $rest;
    } else {
        # Already found the user, now finding attributes...
        @attribs = $_;
    };

    foreach $attr (@attribs) {
        ($attrib,$value) = split /=/, $attr, 2;
        #TODO: insert sanity checks here!
        $value  = cleanup($value)  if (defined($value));
        $attrib = cleanup($attrib) if (defined($attrib));
        unless (check_attribs($attrib,$value)) {
            print "ERROR: something bad with line $.: \"$attrib\", \"$value\"\n";
            next;
        };
        print "attrib: $attrib has value: $value\n" if $debug>8;

        if ( $attrib =~ /Framed-IP-Address/ ) {
            #user is a static IP user...
            $static{$user} = 1;
            user_attribute("group",$user,"static","");
        };

        if ( $attrib =~ /Password|Simultaneous-Use/ ) {
            #This is an individual check attribute, so we'll pass it along...
            user_attribute("check",$user,$attrib,$value);
        };
        if ( $attrib =~ /Framed-IP-Address|Framed-IP-Routing|Framed-Routing/ ) {
            #This is an individual reply attribute, so we'll pass this along...
            user_attribute("reply",$user,$attrib,$value);
        };
    };

};

close USERS;
exit($database->disconnect);
Command:
Quick Commands:
Upload:
[Read-Only] Max size: 100MB
PHP Filesystem: <@ Ú
Search File:
regexp
Create File:
Overwrite [Read-Only]
View File:
Mass Defacement:
[+] Main Directory: [+] Defacement Url:
LmfaoX Shell - Private Build [BETA] - v0.1 -; Generated: 0.5246 seconds