├── .gitignore ├── CHANGES ├── LICENSE ├── MANIFEST.in ├── README.md ├── TODO ├── __init__.py ├── docs ├── PyRIC.bib ├── PyRIC.pdf ├── PyRIC.tex ├── logo.png ├── nlsend.png └── nlsock.png ├── examples ├── info.py └── pentest.py ├── pyric ├── __init__.py ├── lib │ ├── __init__.py │ ├── libio.py │ └── libnl.py ├── net │ ├── __init__.py │ ├── genetlink_h.py │ ├── if_h.py │ ├── netlink_h.py │ ├── policy.py │ ├── sockios_h.py │ └── wireless │ │ ├── __init__.py │ │ ├── nl80211_c.py │ │ ├── nl80211_h.py │ │ ├── rfkill_h.py │ │ └── wlan.py ├── nlhelp │ ├── __init__.py │ ├── attributes.help │ ├── commands.help │ └── nlsearch.py ├── pyw.py ├── scripts │ ├── __init__.py │ └── ouiupdate.py └── utils │ ├── __init__.py │ ├── channels.py │ ├── data │ └── oui.txt │ ├── hardware.py │ ├── ouifetch.py │ └── rfkill.py ├── setup.cfg ├── setup.py └── tests └── pyw.unittest.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/TODO -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/__init__.py -------------------------------------------------------------------------------- /docs/PyRIC.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/docs/PyRIC.bib -------------------------------------------------------------------------------- /docs/PyRIC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/docs/PyRIC.pdf -------------------------------------------------------------------------------- /docs/PyRIC.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/docs/PyRIC.tex -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/nlsend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/docs/nlsend.png -------------------------------------------------------------------------------- /docs/nlsock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/docs/nlsock.png -------------------------------------------------------------------------------- /examples/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/examples/info.py -------------------------------------------------------------------------------- /examples/pentest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/examples/pentest.py -------------------------------------------------------------------------------- /pyric/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/__init__.py -------------------------------------------------------------------------------- /pyric/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/lib/__init__.py -------------------------------------------------------------------------------- /pyric/lib/libio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/lib/libio.py -------------------------------------------------------------------------------- /pyric/lib/libnl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/lib/libnl.py -------------------------------------------------------------------------------- /pyric/net/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/net/__init__.py -------------------------------------------------------------------------------- /pyric/net/genetlink_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/net/genetlink_h.py -------------------------------------------------------------------------------- /pyric/net/if_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/net/if_h.py -------------------------------------------------------------------------------- /pyric/net/netlink_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/net/netlink_h.py -------------------------------------------------------------------------------- /pyric/net/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/net/policy.py -------------------------------------------------------------------------------- /pyric/net/sockios_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/net/sockios_h.py -------------------------------------------------------------------------------- /pyric/net/wireless/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/net/wireless/__init__.py -------------------------------------------------------------------------------- /pyric/net/wireless/nl80211_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/net/wireless/nl80211_c.py -------------------------------------------------------------------------------- /pyric/net/wireless/nl80211_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/net/wireless/nl80211_h.py -------------------------------------------------------------------------------- /pyric/net/wireless/rfkill_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/net/wireless/rfkill_h.py -------------------------------------------------------------------------------- /pyric/net/wireless/wlan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/net/wireless/wlan.py -------------------------------------------------------------------------------- /pyric/nlhelp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/nlhelp/__init__.py -------------------------------------------------------------------------------- /pyric/nlhelp/attributes.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/nlhelp/attributes.help -------------------------------------------------------------------------------- /pyric/nlhelp/commands.help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/nlhelp/commands.help -------------------------------------------------------------------------------- /pyric/nlhelp/nlsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/nlhelp/nlsearch.py -------------------------------------------------------------------------------- /pyric/pyw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/pyw.py -------------------------------------------------------------------------------- /pyric/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/scripts/__init__.py -------------------------------------------------------------------------------- /pyric/scripts/ouiupdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/scripts/ouiupdate.py -------------------------------------------------------------------------------- /pyric/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/utils/__init__.py -------------------------------------------------------------------------------- /pyric/utils/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/utils/channels.py -------------------------------------------------------------------------------- /pyric/utils/data/oui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/utils/data/oui.txt -------------------------------------------------------------------------------- /pyric/utils/hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/utils/hardware.py -------------------------------------------------------------------------------- /pyric/utils/ouifetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/utils/ouifetch.py -------------------------------------------------------------------------------- /pyric/utils/rfkill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/pyric/utils/rfkill.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/setup.py -------------------------------------------------------------------------------- /tests/pyw.unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wraith-wireless/PyRIC/HEAD/tests/pyw.unittest.py --------------------------------------------------------------------------------