项目作者: m8r0wn

项目描述 :
Internal penetration testing tool for Linux that can be used to enumerate OS information, domain information, shares, directories, and users through SMB.
高级语言: Python
项目地址: git://github.com/m8r0wn/nullinux.git
创建时间: 2016-04-28T16:45:02Z
项目社区:https://github.com/m8r0wn/nullinux

开源协议:MIT License

下载


nullinux



Nullinux is an internal penetration testing tool for Linux that can be used to enumerate OS information, domain information, shares, directories, and users through SMB. If no username and password are provided in the command line arguments, an anonymous login, or null session, is attempted. Nullinux acts as a wrapper around the Samba tools smbclient & rpcclient to enumerate hosts using a variety of techniques.

Key Features:

  • Single or multi-host enumeration
  • Enumerate shares and list files in root directory
  • Enumerate users & groups
  • Multi-threaded RID Cycling
  • Creates a formatted nullinux_users.txt output file free of duplicates for further exploitation
  • Python 2.7 & 3 compatible

For more information, and example output, visit the wiki page.

Getting Started

In the Linux terminal run:

  1. git clone https://github.com/m8sec/nullinux
  2. cd nullinux
  3. sudo bash setup.sh

Usage

  1. positional arguments:
  2. target Target server
  3. optional arguments:
  4. -h, --help show this help message and exit
  5. -v Verbose output
  6. -o OUTPUT_FILE Output users to the specified file
  7. Authentication:
  8. -u USERNAME, -U USERNAME Username
  9. -p PASSWORD, -P PASSWORD Password
  10. Enumeration:
  11. -shares Enumerate shares only
  12. -users Enumerate users only
  13. -q, -quick Fast user enumeration
  14. -r, -rid Perform RID cycling only
  15. -range RID_RANGE Set Custom RID cycling range (Default: '500-550')
  16. -T MAX_THREADS Max threads for RID cycling (Default: 15)