You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

pyftpdlibsqladdon

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pyftpdlibsqladdon

Module for implementing FTP users in pyftpdlib through a SQL server

0.1.1
pipPyPI
Maintainers
1

pyftpdlibsqladdon

Module for implementing FTP users in pyftpdlib through a SQL server

Installation


pip install pyftpdlibsqladdon

Get started

How to start pyftpdlib with user support via SQL


from pyftpdlib.handlers import FTPHandler

from pyftpdlib.servers import FTPServer

from pyftpdlibsqladdon import DummySqlAuthorizer



def main():

    #define DummySqlAuthorizer

    authorizer = DummySqlAuthorizer()

    #add SQL server configuration

    authorizer.add_sql_config('host_ip','database','sql_user','sql_password')

    #add SQL column names where data is stored

    authorizer.add_sql_query('table','user_column','password_column','home_path_column','permission_colum')

    handler = FTPHandler

    handler.authorizer = authorizer

    server = FTPServer(('', 21), handler)

    server.serve_forever()



if __name__ == "__main__":

    main()

Considerations

This authorizer cannot be used in conjunction with DummyAuthorizer, as it overwrites the virtual table of users with those obtained from the database.

Keywords

ftp

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts