Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit deec103

Browse files
committed
First commit
0 parents  commit deec103

23 files changed

+7059
-0
lines changed

IMPORTANT_INFO

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#### NMAP INFO ####
2+
3+
# En /usr/local/lib/python2.7/dist-packages/nmap/nmap.py he modificado el método __init__ de PortScanner para que pueda localizar los scripts de nmap, quedando así (sólo he añadido la última ruta):
4+
5+
#def __init__(self, nmap_search_path=('nmap', '/usr/bin/nmap', '/usr/local/bin/nmap', '/sw/bin/nmap', '/opt/local/bin/nmap', '/usr/share/nmap/scripts')):

README.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
![[Version 1.6](https://github.com/R3nt0n)](http://img.shields.io/badge/version-v1.6-orange.svg)
2+
![[Python 2.7](https://github.com/R3nt0n)](http://img.shields.io/badge/python-2.7-blue.svg)
3+
![[GPL-3.0 License](https://github.com/R3nt0n)](https://img.shields.io/badge/license-GPL%203.0-brightgreen.svg)
4+
5+
6+
7+
# Pyntest
8+
Pyntest is an automated tool to **scan domain vulnerabilities** and generate reports.
9+
10+
All the information can be dumped into a **JSON file** to be analyzed later.
11+
12+
13+
## Requirements
14+
+ Python 2.7
15+
+ nmap
16+
+ python-pip
17+
+ whois
18+
+ nmap
19+
+ python-dnspython
20+
+ dnspython
21+
+ netaddr
22+
+ python-nmap
23+
24+
## Usage
25+
```
26+
27+
-h, --help show this help message and exit
28+
-d , --domain domain name to analyze
29+
-j , --json dump all the info into a json file
30+
31+
32+
33+
```
34+
35+
36+
## Legal disclaimer
37+
This tool is created for the sole purpose of security awareness and education, it should not be used against systems that you do not have permission to test/attack. The author is not responsible for misuse or for any damage that you may cause. You agree that you use this software at your own risk.
38+
39+
To do some tasks, I have used other sharp tools created by Github Users (links below).
40+
41+
+ [DNSRecon](https://github.com/darkoperator/dnsrecon)
42+
+ [Blcheck](https://github.com/IntellexApps/blcheck)
43+
+ [Traceroute](https://github.com/ayeowch/traceroute)

install.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
apt update -y && apt upgrade -y
4+
5+
apt install python-pip -y
6+
apt install whois -y
7+
apt install nmap -y
8+
apt install python-dnspython -y
9+
10+
pip install dnspython==1.15.0
11+
pip install netaddr==0.7.19
12+
pip install python-nmap==0.6.1

lib/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
3+
4+
"""module.py: Description of what module does."""

0 commit comments

Comments
 (0)