Metadata-Version: 2.1
Name: serverlla
Version: 1.21
Summary: Configure your linux server and check for vulnerabilities with serverlla
Home-page: https://github.com/dylan14567/serverlla
Author: dylan14567
Author-email: 
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/dylan14567/serverlla/issues
Description: # serverlla
        [![Build Status](https://img.shields.io/github/stars/dylan14567/serverlla.svg)](https://github.com/dylan14567/serverlla)
        [![License](https://img.shields.io/github/license/dylan14567/serverlla.svg)](https://github.com/dylan14567/serverlla/blob/main/LICENSE)
        [![dylan14567](https://img.shields.io/badge/author-dylan14567-green.svg)](https://github.com/dylan14567)
        [![bug_report](https://img.shields.io/badge/bug-report-red.svg)](https://github.com/dylan14567/serverlla/blob/main/.github/ISSUE_TEMPLATE/bug_report.md)
        [![security_policy](https://img.shields.io/badge/security-policy-cyan.svg)](https://github.com/dylan14567/serverlla/blob/main/.github/SECURITY.md)
        [![Python](https://img.shields.io/badge/language-Python%20-yellow.svg)](https://www.python.org)
        
        Configure your linux server and check for vulnerabilities with serverlla.
        
        Serverlla has a menu with options and allows you to configure your server through that menu but you can also import the serverlla module in another file.
        
        ## Pre-requirements
        
        The requirements to use the system is to have the following python modules installed:
        
        ```
        colorama
        requests
        ```
        
        The apt packages that you must have installed are:
        
        ```
        curl
        wget
        net-tools 
        strace 
        iftop 
        lsof 
        chkrootkit 
        inxi 
        lshw 
        git 
        python3 
        python3-pip 
        build-essential 
        libssl-dev 
        libffi-dev 
        python3-dev 
        ```
        
        ## Installation
        
        To install serverlla on linux run these commands on your Linux Terminal.
        
        ```shell
        
        pip3 install serverlla
        
        ```
        
        Once done, it begins to install.
        
        to start serverlla you just have to put the ``` serverlla ``` command in the terminal.
        
        Ready
        
        ## Usage:
        
        To use the serverlla command you just have to put the ```serverlla``` command, and once that is done the system menu will be loaded.
        
        ## Custom script
        
        If you want to create your own menu and your own code using the serverlla module you must do the following:
        
        ```python 
        
        from adminserver.main import *
        
        server = server ()
        
        server.systeminfo () # Shows you system information
        server.listusers () # List system users
        server.installpackages () # install the apt packages necessary for the code to work
        server.addnewuser () # Add new users
        
        # Removing information from my website
        link = "127.0.0.1"
        server.scanweb (link) # Get information from a website
        
        ```
        
        ## Authors
        
        * **Dylan Meca** - *Initial Work* - [dylan14567](https://github.com/dylan14567)
        
        You can also look at the list of all [contributors](https://github.com/dylan14567/serverlla/contributors) who have participated in this project.
        
        
        ## Contributing
        
        Please read [CONTRIBUTING.md](https://github.com/dylan14567/serverlla/blob/main/.github/CONTRIBUTING.md) for details of our code of conduct, and the process for submitting pull requests.
        
        ## License
        
        The license for this project is [MIT](https://github.com/dylan14567/serverlla/blob/main/.github/LICENSE)
        
Keywords: serverlla
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
