vultest

Vultest is a python library for testing router vulnerability.


Keywords
network-analysis, network-programming, python
License
MIT
Install
pip install vultest==0.1.2

Documentation

VULTEST (Vulnerability Tester)

Vultest is a python library for testing router vulnerability.

Installation

Use the package manager pip to install vultest.

The source code is currently hosted on GitHub at: https://github.com/Fa1sal-ali/vultest

Binary installers for the latest released version are available at the Python Package Index - PyPi

pip install vultest

Usage

from vultest import vultest

vultest.test_ip(deviceip = '') # returns if ip is valid or not
vultest.test_ping(deviceip = '') # returns if ip is reachable or not
vultest.device_login(username = '', password = '', deviceip = '') # returns a channel for communicating with device and a dictionary with result
vultest.send_command(username = '', password = '', deviceip = '', command = '') # returns the output of the command triggered on the device
vultest.test_pattern(username = '', password = '', deviceip = '', command = '', pattern = '') # returns whether the pattern present in the output of the command or not

Dependencies

ipaddress

paramiko

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT