Vulnx Library
Anouar Ben Saad edited this page Jun 26, 2019
·
3 revisions
Clone this wiki locally
Vulnx is available as a library for both Python 2 & Python 3.
Examples
To install vulnx as a library, you can simply do
pip install vulnx --userWebHosting Gathering Example
import vulnx
vulnx.webhosting_info('http://example.com')PortScan Example
import vulnx
vulnx.portscan('http://example.com',22)DNS Dump Example
import vulnx
vulnx.dnsdumper('http://example.com')SubDomains Grabber Example
import vulnx
vulnx.domain_info('http://example.com')Type Of.
To make the gathering as flexible as possible, following optional arguments are present
| Argument | Type | Default |
|---|---|---|
| timeout | int | 3 |
| threads | float | 2 |
| dorks | str | None |
| cms-info | str | None |
| number-pages | int | 1 |
| dork-list | str | None |
| port-scan | int | 22 |