Project

waps

0.0
No release in over 3 years
Low commit activity in last 3 years
Gem scans Wireless Access Points and return ruby hash
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 3.7
 Project Readme

Wireless Access Point Scanner Gem Version

WAPS uses iwlist to scan for wireless access points and convert the output into ruby hash format. Following is the usage of the gem.

Installation

gem install waps

Require

require 'waps'

Usage

  • First Require the gem: require 'waps'
  • Creating new instance require interface name. Leave it empty if not sure. new_scan = Waps.new('Interface_name')
  • Start Scan. results = new_scan.scan
  • Get specific field. mac_address = new_scan.get('address')
require 'waps'

new_scan = Waps.new('')
new_scan.scan
new_scan.output
mac_addresses = new_scan.get('address')

Response Field

  • Address
  • SSID
  • Signal Level
  • Encryption
  • Channel
  • Frequency
  • Quality

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details