Fi6s

IPv6 network scanner designed to be fast
Alternatives To Fi6s
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Bettercap13,764
15 days ago61April 21, 2021146otherGo
The Swiss Army knife for 802.11, BLE, IPv4 and IPv6 networks reconnaissance and MITM attacks.
Zmap4,687
7 days ago4August 03, 202113apache-2.0C
ZMap is a fast single packet network scanner designed for Internet-wide network surveys.
Ivre2,865
5 days ago38gpl-3.0Python
Network recon framework. Build your own, self-hosted and fully-controlled alternatives to Shodan / ZoomEye / Censys and GreyNoise, run your Passive DNS service, collect and analyse network intelligence from your sensors, and much more!
Cloudfail1,784
2 months ago41mitPython
Utilize misconfigured DNS and old database records to find hidden IP's behind the CloudFlare network
Sx1,272
5 days ago12August 25, 202114mitGo
:vulcan_salute: Fast, modern, easy-to-use network scanner
100 Redteam Projects1,264
10 days ago1Java
Projects for security students
Androidnetworktools1,233
a month ago29apache-2.0Java
Set of useful android network tools
Rats Search1,231
3 days ago56mitJavaScript
BitTorrent P2P multi-platform search engine for Desktop and Web servers with integrated torrent client.
Pi.alert1,141
8 months ago90gpl-3.0JavaScript
WIFI / LAN intruder detector. Check the devices connected and alert you with unknown devices. It also warns of the disconnection of "always connected" devices
Pythem1,139
4 years ago7March 05, 201810gpl-3.0Python
pentest framework
Alternatives To Fi6s
Select To Compare


Alternative Project Comparisons
Readme

fi6s: Fast IPv6 scanner

fi6s is an IPv6 port scanner designed to be fast. This is achieved by sending and processing raw packets asynchronously. The design and goal is pretty similar to Masscan, though it is not as full-featured yet.

Compiling

Building fi6s is fairly easy on any recent Linux system, e.g. on Ubuntu:

# apt install gcc make git libpcap-dev
$ git clone https://github.com/sfan5/fi6s.git
$ cd fi6s
$ make BUILD_TYPE=release

The scanner executable will be ready at ./fi6s.

Note that fi6s is developed and tested solely on Linux. It should work on other UNIX-like platforms, but don't expect it to run on Windows.

Usage

Usage is pretty easy, fi6s will try to auto-detect the dirty technical details such as source, router MAC addresses and source IP.

# ./fi6s -p 80,8000-8100 2001:db8::/120

This example will:

  • scan the 2001:db8::/120 subnet (256 addresses in total)
  • scan TCP ports 80 and 8000 to 8100 (102 ports in total)
  • send as many packets per second as possible
  • output scan results to standard output in the "list" format

There are more different ways of specifying an address range to scan, if you aren't sure what's about to happen invoke fi6s with --print-hosts to print all IPs or --print-summary to get a quick overview about the scan.

For more advanced features please consult the output of fi6s --help.

Grabbing banners

Since fi6s has its own TCP stack, the OS' stack needs to disabled to avoid interference with banner grabbing (RST packets). This is easily done using ip6tables and a constant --source-port.

Banner grabbing is then enabled by passing --banners:

# ip6tables -A INPUT -p tcp -m tcp --dport 12345 -j DROP
# ./fi6s -p 22 --banners --source-port 12345 2001:db8::xx

UDP

Dropping packets before they reach the OS stack is not required for UDP scans, but is still a good idea to avoid a flood of ICMPv6 unreachable responses.

Other than that you only need an additional --udp:

# ip6tables -A INPUT -p udp -m udp --dport 12345 -j DROP
# ./fi6s -p 53 --banners --udp --source-port 12345 2001:db8::xx

Note that unlike with TCP, you will only get useful (or any) results if you scan a port whose protocol is supported by fi6s. You can use fi6s --list-protocols to view a list.

Popular Scanner Projects
Popular Network Projects
Popular Security Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
C
Network
Port
Scanner
Tcp
Udp
Packets
Ipv6