User Management Code

  Home arrow User Management Code arrow smb_auth
USER MANAGEMENT CODE

smb_auth
By: Codewalkers
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 1
    2002-01-18

    Table of Contents:

     
     

    SEARCH CODEWALKERS

    TOOLS YOU CAN USE

    advertisement
    Quick little class to authenticate a username/password off of a PDC.

    By : Urkle

    <?
    /*
    Author: Edward Rudd <eddie@omegaware.com>
    Based on smb_print by Nathan Cassano <nathan@cjhunter.com>
    Version: 0.1

    Example:

    $test = new smb_auth();
    $test->host = "cannondale";
    $test->smbclient = "/usr/bin/smbclient"; #default is "/usr/bin/smbclient"
    $test->username = "guest";
    $test->password = "dontlook";

    if($test->authenticate() != 0){
    echo "Invalid Authentication";
    }else{
    echo "Authenticated";
    }
    */

    class smb_auth {

    var $host;
    var $username;
    var $password;
    var $smbclient = "/usr/bin/smbclient";

    function smb_auth()
    {
    return 0;
    }

    function authenticate()
    {
    /* Make sure smbclient path is correct */
    if(!is_executable($this->smbclient)){
    die("Error: '$this->smbclient' invalid smbclient path");
    }

    /* create the shell script */
    $script = "$this->smbclient //$this->host/IPC$ $this->password "
    ."-U $this->username -c 'quit' > /dev/null 2>&1";

    $stuff = system ($script,$result);

    return $result;
    }

    }
    ?>

    /* example */
    <?
    include "smb_auth.php";
    $test = new smb_auth();
    $test->host = "cannondale";
    $test->smbclient = "/usr/bin/smbclient";
    $test->username = "guest";
    $test->password = "dontlook";

    if($test->authenticate() != 0){
    echo "Invalid Authentication";
    }else{
    echo "Authenticated";
    }
    ?>
    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

    More User Management Code Articles
    More By Codewalkers

    blog comments powered by Disqus

    USER MANAGEMENT CODE ARTICLES

    - XCRYPT v1.0b
    - DB_eSession class stores sessions in a MySQL...
    - Ever Changing Dynamic Passcode Code
    - phpAutoMembersArea - create own members area
    - Azura Signup 2.5
    - Azura Signup 2.0
    - Azura Signup
    - Flexcustomer
    - PHP Quicksite 2.0
    - PHP Quicksite 1.0
    - random string generator (key generator)
    - Example Login system
    - Simple and Easy Security
    - Basic Security
    - UMA - User Management and Authentication

    Developer Shed Affiliates

     



    © 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap