nibble-cli 0.5.1__tar.gz → 0.6.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,127 @@
1
+ Metadata-Version: 2.4
2
+ Name: nibble-cli
3
+ Version: 0.6.2
4
+ Summary: Fast local network scanner with hardware identification and a terminal UI
5
+ Home-page: https://github.com/backendsystems/nibble
6
+ Author: saberd
7
+ Author-email: mail@saberd.com
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Environment :: Console
10
+ Classifier: Intended Audience :: System Administrators
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: System :: Networking
15
+ Requires-Python: >=3.6
16
+ Description-Content-Type: text/markdown
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: classifier
20
+ Dynamic: description
21
+ Dynamic: description-content-type
22
+ Dynamic: home-page
23
+ Dynamic: requires-python
24
+ Dynamic: summary
25
+
26
+ [![GitHub Stars](https://img.shields.io/github/stars/backendsystems/nibble?style=social)](https://github.com/backendsystems/nibble)
27
+ [![PPA](https://img.shields.io/badge/Ubuntu-PPA-E95420?logo=ubuntu&logoColor=white)](https://launchpad.net/~backendsystems/+archive/ubuntu/ppa)
28
+ [![COPR](https://img.shields.io/badge/Fedora-COPR-51A2DA?logo=fedora&logoColor=white)](https://copr.fedorainfracloud.org/coprs/saberd/nibble)
29
+ [![AUR](https://img.shields.io/aur/version/nibble-bin)](https://aur.archlinux.org/packages/nibble-bin)
30
+ [![npm](https://img.shields.io/npm/v/@backendsystems/nibble)](https://www.npmjs.com/package/@backendsystems/nibble)
31
+ [![PyPI](https://img.shields.io/pypi/v/nibble-cli)](https://pypi.org/project/nibble-cli/)
32
+ [![Go Reference](https://pkg.go.dev/badge/github.com/backendsystems/nibble.svg)](https://pkg.go.dev/github.com/backendsystems/nibble)
33
+
34
+ <div align="center">
35
+ <img src="assets/nibble.svg" alt="Nibble" width="200">
36
+ </div>
37
+
38
+
39
+ Nibble is a CLI tool for local network scanning that focuses on speed and ease of use.
40
+
41
+ Select a network interface, and Nibble scans your local subnet. Lists hosts, hardware manufacturer, open ports and their services.
42
+
43
+ ![Nibble demo](https://raw.githubusercontent.com/backendsystems/nibble/main/demo.gif)
44
+
45
+ - Lightning fast scans using lightweight threads
46
+ - Stealthy, emits no network signals before a scan is started
47
+ - Colors uses your terminal theme colors
48
+ - Skips loopback and irrelevant adapters
49
+ - Defaults to SSH, Telnet, HTTP, HTTPS, SMB, RDP, and more
50
+ - Can be set to a list of custom ports that are stored for future use
51
+ - Target mode for targeted network scans
52
+ - Reads service banners on open ports (for example, OpenSSH or nginx versions)
53
+ - Looks up hardware vendors:
54
+ - Raspberry Pi, Ubiquiti, Apple and 40,000 other vendor ids
55
+
56
+ ## History
57
+ See past scans, the found hosts and re-scan all hosts ports. hotkey: `r`
58
+ History remembers your position between sessions, so jump right back in to your last viewed scan.
59
+
60
+ ![Nibble history](https://raw.githubusercontent.com/backendsystems/nibble/main/history.gif)
61
+
62
+ ## Hotkeys
63
+ `↑/↓/←/→`, `w/s/a/d`, `h/j/k/l`: selection
64
+ `Enter`: confirm
65
+ `p`: select ports
66
+ `r`: history
67
+ `t`: target mode
68
+ `q`: cancel
69
+ `Ctrl+C`: quit
70
+ `?`: help
71
+
72
+ ## Mouse
73
+ Full mouse support. Click to select, click again to confirm. Scroll to navigate lists.
74
+ Hold `Shift` and drag to select text.
75
+
76
+ ![Nibble click interface](https://raw.githubusercontent.com/backendsystems/nibble/main/click.gif)
77
+
78
+ ## Installation
79
+ you may have to restart terminal to run `nibble` after install.
80
+
81
+
82
+ <img src="https://cdn.simpleicons.org/ubuntu/E95420" width="16" style="vertical-align:middle"> apt (Ubuntu, Mint, Pop!_OS, Zorin, Elementary, KDE Neon):
83
+ ```bash
84
+ sudo add-apt-repository ppa:backendsystems/ppa
85
+ sudo apt install nibble
86
+ ```
87
+ <img src="https://cdn.simpleicons.org/fedora/51A2DA" width="16" style="vertical-align:middle"> dnf (Fedora, RHEL, CentOS Stream):
88
+ ```bash
89
+ sudo dnf copr enable saberd/nibble
90
+ sudo dnf install nibble
91
+ ```
92
+ <img src="https://cdn.simpleicons.org/archlinux/1793D1" width="16" style="vertical-align:middle"> aur (Arch Linux):
93
+ ```bash
94
+ yay -S nibble-bin
95
+ ```
96
+ <img src="https://cdn.simpleicons.org/homebrew/FBB040" width="16" style="vertical-align:middle"> brew:
97
+ ```bash
98
+ brew install backendsystems/tap/nibble
99
+ ```
100
+ <img src="https://cdn.simpleicons.org/go/00ADD8" width="16" style="vertical-align:middle"> go:
101
+ ```bash
102
+ go install github.com/backendsystems/nibble@latest
103
+ ```
104
+ <img src="https://cdn.simpleicons.org/python/3776AB" width="16" style="vertical-align:middle"> pip:
105
+ ```bash
106
+ pipx install nibble-cli
107
+ ```
108
+ <img src="https://cdn.simpleicons.org/npm/CB3837" width="16" style="vertical-align:middle"> npm:
109
+ ```bash
110
+ npm install -g @backendsystems/nibble
111
+ ```
112
+ or run without install
113
+ ```bash
114
+ npx @backendsystems/nibble
115
+ ```
116
+
117
+ ## Usage
118
+ Run the CLI with `nibble`, select a network interface.
119
+ Interface icons: `🔌` = Ethernet, `📶` = Wi-Fi, `📦` = Container, `🔒` = VPN.
120
+
121
+ Built with [Bubble Tea](https://github.com/charmbracelet/bubbletea)
122
+
123
+ ## License
124
+
125
+ This project is MIT licensed. See the [LICENSE](LICENSE) file for details.
126
+
127
+ Note: The "nibble" name and branding assets are excluded from this license, see the sepperate [LICENSE](assets/LICENSE) for branding terms.
@@ -0,0 +1,102 @@
1
+ [![GitHub Stars](https://img.shields.io/github/stars/backendsystems/nibble?style=social)](https://github.com/backendsystems/nibble)
2
+ [![PPA](https://img.shields.io/badge/Ubuntu-PPA-E95420?logo=ubuntu&logoColor=white)](https://launchpad.net/~backendsystems/+archive/ubuntu/ppa)
3
+ [![COPR](https://img.shields.io/badge/Fedora-COPR-51A2DA?logo=fedora&logoColor=white)](https://copr.fedorainfracloud.org/coprs/saberd/nibble)
4
+ [![AUR](https://img.shields.io/aur/version/nibble-bin)](https://aur.archlinux.org/packages/nibble-bin)
5
+ [![npm](https://img.shields.io/npm/v/@backendsystems/nibble)](https://www.npmjs.com/package/@backendsystems/nibble)
6
+ [![PyPI](https://img.shields.io/pypi/v/nibble-cli)](https://pypi.org/project/nibble-cli/)
7
+ [![Go Reference](https://pkg.go.dev/badge/github.com/backendsystems/nibble.svg)](https://pkg.go.dev/github.com/backendsystems/nibble)
8
+
9
+ <div align="center">
10
+ <img src="assets/nibble.svg" alt="Nibble" width="200">
11
+ </div>
12
+
13
+
14
+ Nibble is a CLI tool for local network scanning that focuses on speed and ease of use.
15
+
16
+ Select a network interface, and Nibble scans your local subnet. Lists hosts, hardware manufacturer, open ports and their services.
17
+
18
+ ![Nibble demo](https://raw.githubusercontent.com/backendsystems/nibble/main/demo.gif)
19
+
20
+ - Lightning fast scans using lightweight threads
21
+ - Stealthy, emits no network signals before a scan is started
22
+ - Colors uses your terminal theme colors
23
+ - Skips loopback and irrelevant adapters
24
+ - Defaults to SSH, Telnet, HTTP, HTTPS, SMB, RDP, and more
25
+ - Can be set to a list of custom ports that are stored for future use
26
+ - Target mode for targeted network scans
27
+ - Reads service banners on open ports (for example, OpenSSH or nginx versions)
28
+ - Looks up hardware vendors:
29
+ - Raspberry Pi, Ubiquiti, Apple and 40,000 other vendor ids
30
+
31
+ ## History
32
+ See past scans, the found hosts and re-scan all hosts ports. hotkey: `r`
33
+ History remembers your position between sessions, so jump right back in to your last viewed scan.
34
+
35
+ ![Nibble history](https://raw.githubusercontent.com/backendsystems/nibble/main/history.gif)
36
+
37
+ ## Hotkeys
38
+ `↑/↓/←/→`, `w/s/a/d`, `h/j/k/l`: selection
39
+ `Enter`: confirm
40
+ `p`: select ports
41
+ `r`: history
42
+ `t`: target mode
43
+ `q`: cancel
44
+ `Ctrl+C`: quit
45
+ `?`: help
46
+
47
+ ## Mouse
48
+ Full mouse support. Click to select, click again to confirm. Scroll to navigate lists.
49
+ Hold `Shift` and drag to select text.
50
+
51
+ ![Nibble click interface](https://raw.githubusercontent.com/backendsystems/nibble/main/click.gif)
52
+
53
+ ## Installation
54
+ you may have to restart terminal to run `nibble` after install.
55
+
56
+
57
+ <img src="https://cdn.simpleicons.org/ubuntu/E95420" width="16" style="vertical-align:middle"> apt (Ubuntu, Mint, Pop!_OS, Zorin, Elementary, KDE Neon):
58
+ ```bash
59
+ sudo add-apt-repository ppa:backendsystems/ppa
60
+ sudo apt install nibble
61
+ ```
62
+ <img src="https://cdn.simpleicons.org/fedora/51A2DA" width="16" style="vertical-align:middle"> dnf (Fedora, RHEL, CentOS Stream):
63
+ ```bash
64
+ sudo dnf copr enable saberd/nibble
65
+ sudo dnf install nibble
66
+ ```
67
+ <img src="https://cdn.simpleicons.org/archlinux/1793D1" width="16" style="vertical-align:middle"> aur (Arch Linux):
68
+ ```bash
69
+ yay -S nibble-bin
70
+ ```
71
+ <img src="https://cdn.simpleicons.org/homebrew/FBB040" width="16" style="vertical-align:middle"> brew:
72
+ ```bash
73
+ brew install backendsystems/tap/nibble
74
+ ```
75
+ <img src="https://cdn.simpleicons.org/go/00ADD8" width="16" style="vertical-align:middle"> go:
76
+ ```bash
77
+ go install github.com/backendsystems/nibble@latest
78
+ ```
79
+ <img src="https://cdn.simpleicons.org/python/3776AB" width="16" style="vertical-align:middle"> pip:
80
+ ```bash
81
+ pipx install nibble-cli
82
+ ```
83
+ <img src="https://cdn.simpleicons.org/npm/CB3837" width="16" style="vertical-align:middle"> npm:
84
+ ```bash
85
+ npm install -g @backendsystems/nibble
86
+ ```
87
+ or run without install
88
+ ```bash
89
+ npx @backendsystems/nibble
90
+ ```
91
+
92
+ ## Usage
93
+ Run the CLI with `nibble`, select a network interface.
94
+ Interface icons: `🔌` = Ethernet, `📶` = Wi-Fi, `📦` = Container, `🔒` = VPN.
95
+
96
+ Built with [Bubble Tea](https://github.com/charmbracelet/bubbletea)
97
+
98
+ ## License
99
+
100
+ This project is MIT licensed. See the [LICENSE](LICENSE) file for details.
101
+
102
+ Note: The "nibble" name and branding assets are excluded from this license, see the sepperate [LICENSE](assets/LICENSE) for branding terms.
@@ -0,0 +1,127 @@
1
+ Metadata-Version: 2.4
2
+ Name: nibble-cli
3
+ Version: 0.6.2
4
+ Summary: Fast local network scanner with hardware identification and a terminal UI
5
+ Home-page: https://github.com/backendsystems/nibble
6
+ Author: saberd
7
+ Author-email: mail@saberd.com
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Environment :: Console
10
+ Classifier: Intended Audience :: System Administrators
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Topic :: System :: Networking
15
+ Requires-Python: >=3.6
16
+ Description-Content-Type: text/markdown
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: classifier
20
+ Dynamic: description
21
+ Dynamic: description-content-type
22
+ Dynamic: home-page
23
+ Dynamic: requires-python
24
+ Dynamic: summary
25
+
26
+ [![GitHub Stars](https://img.shields.io/github/stars/backendsystems/nibble?style=social)](https://github.com/backendsystems/nibble)
27
+ [![PPA](https://img.shields.io/badge/Ubuntu-PPA-E95420?logo=ubuntu&logoColor=white)](https://launchpad.net/~backendsystems/+archive/ubuntu/ppa)
28
+ [![COPR](https://img.shields.io/badge/Fedora-COPR-51A2DA?logo=fedora&logoColor=white)](https://copr.fedorainfracloud.org/coprs/saberd/nibble)
29
+ [![AUR](https://img.shields.io/aur/version/nibble-bin)](https://aur.archlinux.org/packages/nibble-bin)
30
+ [![npm](https://img.shields.io/npm/v/@backendsystems/nibble)](https://www.npmjs.com/package/@backendsystems/nibble)
31
+ [![PyPI](https://img.shields.io/pypi/v/nibble-cli)](https://pypi.org/project/nibble-cli/)
32
+ [![Go Reference](https://pkg.go.dev/badge/github.com/backendsystems/nibble.svg)](https://pkg.go.dev/github.com/backendsystems/nibble)
33
+
34
+ <div align="center">
35
+ <img src="assets/nibble.svg" alt="Nibble" width="200">
36
+ </div>
37
+
38
+
39
+ Nibble is a CLI tool for local network scanning that focuses on speed and ease of use.
40
+
41
+ Select a network interface, and Nibble scans your local subnet. Lists hosts, hardware manufacturer, open ports and their services.
42
+
43
+ ![Nibble demo](https://raw.githubusercontent.com/backendsystems/nibble/main/demo.gif)
44
+
45
+ - Lightning fast scans using lightweight threads
46
+ - Stealthy, emits no network signals before a scan is started
47
+ - Colors uses your terminal theme colors
48
+ - Skips loopback and irrelevant adapters
49
+ - Defaults to SSH, Telnet, HTTP, HTTPS, SMB, RDP, and more
50
+ - Can be set to a list of custom ports that are stored for future use
51
+ - Target mode for targeted network scans
52
+ - Reads service banners on open ports (for example, OpenSSH or nginx versions)
53
+ - Looks up hardware vendors:
54
+ - Raspberry Pi, Ubiquiti, Apple and 40,000 other vendor ids
55
+
56
+ ## History
57
+ See past scans, the found hosts and re-scan all hosts ports. hotkey: `r`
58
+ History remembers your position between sessions, so jump right back in to your last viewed scan.
59
+
60
+ ![Nibble history](https://raw.githubusercontent.com/backendsystems/nibble/main/history.gif)
61
+
62
+ ## Hotkeys
63
+ `↑/↓/←/→`, `w/s/a/d`, `h/j/k/l`: selection
64
+ `Enter`: confirm
65
+ `p`: select ports
66
+ `r`: history
67
+ `t`: target mode
68
+ `q`: cancel
69
+ `Ctrl+C`: quit
70
+ `?`: help
71
+
72
+ ## Mouse
73
+ Full mouse support. Click to select, click again to confirm. Scroll to navigate lists.
74
+ Hold `Shift` and drag to select text.
75
+
76
+ ![Nibble click interface](https://raw.githubusercontent.com/backendsystems/nibble/main/click.gif)
77
+
78
+ ## Installation
79
+ you may have to restart terminal to run `nibble` after install.
80
+
81
+
82
+ <img src="https://cdn.simpleicons.org/ubuntu/E95420" width="16" style="vertical-align:middle"> apt (Ubuntu, Mint, Pop!_OS, Zorin, Elementary, KDE Neon):
83
+ ```bash
84
+ sudo add-apt-repository ppa:backendsystems/ppa
85
+ sudo apt install nibble
86
+ ```
87
+ <img src="https://cdn.simpleicons.org/fedora/51A2DA" width="16" style="vertical-align:middle"> dnf (Fedora, RHEL, CentOS Stream):
88
+ ```bash
89
+ sudo dnf copr enable saberd/nibble
90
+ sudo dnf install nibble
91
+ ```
92
+ <img src="https://cdn.simpleicons.org/archlinux/1793D1" width="16" style="vertical-align:middle"> aur (Arch Linux):
93
+ ```bash
94
+ yay -S nibble-bin
95
+ ```
96
+ <img src="https://cdn.simpleicons.org/homebrew/FBB040" width="16" style="vertical-align:middle"> brew:
97
+ ```bash
98
+ brew install backendsystems/tap/nibble
99
+ ```
100
+ <img src="https://cdn.simpleicons.org/go/00ADD8" width="16" style="vertical-align:middle"> go:
101
+ ```bash
102
+ go install github.com/backendsystems/nibble@latest
103
+ ```
104
+ <img src="https://cdn.simpleicons.org/python/3776AB" width="16" style="vertical-align:middle"> pip:
105
+ ```bash
106
+ pipx install nibble-cli
107
+ ```
108
+ <img src="https://cdn.simpleicons.org/npm/CB3837" width="16" style="vertical-align:middle"> npm:
109
+ ```bash
110
+ npm install -g @backendsystems/nibble
111
+ ```
112
+ or run without install
113
+ ```bash
114
+ npx @backendsystems/nibble
115
+ ```
116
+
117
+ ## Usage
118
+ Run the CLI with `nibble`, select a network interface.
119
+ Interface icons: `🔌` = Ethernet, `📶` = Wi-Fi, `📦` = Container, `🔒` = VPN.
120
+
121
+ Built with [Bubble Tea](https://github.com/charmbracelet/bubbletea)
122
+
123
+ ## License
124
+
125
+ This project is MIT licensed. See the [LICENSE](LICENSE) file for details.
126
+
127
+ Note: The "nibble" name and branding assets are excluded from this license, see the sepperate [LICENSE](assets/LICENSE) for branding terms.
nibble_cli-0.5.1/PKG-INFO DELETED
@@ -1,89 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: nibble-cli
3
- Version: 0.5.1
4
- Summary: Fast local network scanner with hardware identification and a terminal UI
5
- Home-page: https://github.com/backendsystems/nibble
6
- Author: saberd
7
- Author-email: mail@saberd.com
8
- Classifier: Development Status :: 4 - Beta
9
- Classifier: Environment :: Console
10
- Classifier: Intended Audience :: System Administrators
11
- Classifier: License :: OSI Approved :: MIT License
12
- Classifier: Operating System :: OS Independent
13
- Classifier: Programming Language :: Python :: 3
14
- Classifier: Topic :: System :: Networking
15
- Requires-Python: >=3.6
16
- Description-Content-Type: text/markdown
17
- Dynamic: author
18
- Dynamic: author-email
19
- Dynamic: classifier
20
- Dynamic: description
21
- Dynamic: description-content-type
22
- Dynamic: home-page
23
- Dynamic: requires-python
24
- Dynamic: summary
25
-
26
- # Nibble
27
- Nibble is a CLI tool for local network scanning that focuses on speed and ease of use.
28
-
29
- Select a network interface, and Nibble scans your local subnet. Lists hosts, hardware manufacturer, open ports and their services.
30
-
31
- ![Nibble demo](https://raw.githubusercontent.com/backendsystems/nibble/main/demo.gif)
32
-
33
- - Lightning fast scans using lightweight threads
34
- - Stealthy, emits no network signals before a scan is started
35
- - Colors uses your terminal theme colors
36
- - Skips loopback and irrelevant adapters
37
- - Defaults to SSH, Telnet, HTTP, HTTPS, SMB, RDP, and more
38
- - Can be set to a list of custom ports that are stored for future use
39
- - Target mode for targeted network scans
40
- - Reads service banners on open ports (for example, OpenSSH or nginx versions)
41
- - Looks up hardware vendors:
42
- - Raspberry Pi, Ubiquiti, Apple and 40,000 other vendor ids
43
-
44
- ## History
45
- See past scans, the found hosts and re-scan all hosts ports. hotkey: `r`
46
- History remembers your position between sessions, so jump right back in to your last viewed scan.
47
-
48
- ![Nibble history](https://raw.githubusercontent.com/backendsystems/nibble/main/history.gif)
49
-
50
- ## Hotkeys
51
- `↑/↓/←/→`, `w/s/a/d`, `h/j/k/l`: selection
52
- `Enter`: confirm
53
- `p`: select ports
54
- `r`: history
55
- `t`: target mode
56
- `q`: cancel
57
- `Ctrl+C`: quit
58
- `?`: help
59
-
60
- ## Installation
61
- you may have to restart terminal to run `nibble` after install.
62
-
63
-
64
- go:
65
- ```bash
66
- go install github.com/backendsystems/nibble@latest
67
- ```
68
- brew:
69
- ```bash
70
- brew install backendsystems/tap/nibble
71
- ```
72
- pip:
73
- ```bash
74
- pipx install nibble-cli
75
- ```
76
- npm:
77
- ```bash
78
- npm install -g @backendsystems/nibble
79
- ```
80
- or run without install
81
- ```bash
82
- npx @backendsystems/nibble
83
- ```
84
-
85
- ## Usage
86
- Run the CLI with `nibble`, select a network interface.
87
- Interface icons: `🔌` = Ethernet, `📶` = Wi-Fi, `📦` = Container, `🔒` = VPN.
88
-
89
- Built with [Bubble Tea](https://github.com/charmbracelet/bubbletea)
@@ -1,64 +0,0 @@
1
- # Nibble
2
- Nibble is a CLI tool for local network scanning that focuses on speed and ease of use.
3
-
4
- Select a network interface, and Nibble scans your local subnet. Lists hosts, hardware manufacturer, open ports and their services.
5
-
6
- ![Nibble demo](https://raw.githubusercontent.com/backendsystems/nibble/main/demo.gif)
7
-
8
- - Lightning fast scans using lightweight threads
9
- - Stealthy, emits no network signals before a scan is started
10
- - Colors uses your terminal theme colors
11
- - Skips loopback and irrelevant adapters
12
- - Defaults to SSH, Telnet, HTTP, HTTPS, SMB, RDP, and more
13
- - Can be set to a list of custom ports that are stored for future use
14
- - Target mode for targeted network scans
15
- - Reads service banners on open ports (for example, OpenSSH or nginx versions)
16
- - Looks up hardware vendors:
17
- - Raspberry Pi, Ubiquiti, Apple and 40,000 other vendor ids
18
-
19
- ## History
20
- See past scans, the found hosts and re-scan all hosts ports. hotkey: `r`
21
- History remembers your position between sessions, so jump right back in to your last viewed scan.
22
-
23
- ![Nibble history](https://raw.githubusercontent.com/backendsystems/nibble/main/history.gif)
24
-
25
- ## Hotkeys
26
- `↑/↓/←/→`, `w/s/a/d`, `h/j/k/l`: selection
27
- `Enter`: confirm
28
- `p`: select ports
29
- `r`: history
30
- `t`: target mode
31
- `q`: cancel
32
- `Ctrl+C`: quit
33
- `?`: help
34
-
35
- ## Installation
36
- you may have to restart terminal to run `nibble` after install.
37
-
38
-
39
- go:
40
- ```bash
41
- go install github.com/backendsystems/nibble@latest
42
- ```
43
- brew:
44
- ```bash
45
- brew install backendsystems/tap/nibble
46
- ```
47
- pip:
48
- ```bash
49
- pipx install nibble-cli
50
- ```
51
- npm:
52
- ```bash
53
- npm install -g @backendsystems/nibble
54
- ```
55
- or run without install
56
- ```bash
57
- npx @backendsystems/nibble
58
- ```
59
-
60
- ## Usage
61
- Run the CLI with `nibble`, select a network interface.
62
- Interface icons: `🔌` = Ethernet, `📶` = Wi-Fi, `📦` = Container, `🔒` = VPN.
63
-
64
- Built with [Bubble Tea](https://github.com/charmbracelet/bubbletea)
@@ -1,89 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: nibble-cli
3
- Version: 0.5.1
4
- Summary: Fast local network scanner with hardware identification and a terminal UI
5
- Home-page: https://github.com/backendsystems/nibble
6
- Author: saberd
7
- Author-email: mail@saberd.com
8
- Classifier: Development Status :: 4 - Beta
9
- Classifier: Environment :: Console
10
- Classifier: Intended Audience :: System Administrators
11
- Classifier: License :: OSI Approved :: MIT License
12
- Classifier: Operating System :: OS Independent
13
- Classifier: Programming Language :: Python :: 3
14
- Classifier: Topic :: System :: Networking
15
- Requires-Python: >=3.6
16
- Description-Content-Type: text/markdown
17
- Dynamic: author
18
- Dynamic: author-email
19
- Dynamic: classifier
20
- Dynamic: description
21
- Dynamic: description-content-type
22
- Dynamic: home-page
23
- Dynamic: requires-python
24
- Dynamic: summary
25
-
26
- # Nibble
27
- Nibble is a CLI tool for local network scanning that focuses on speed and ease of use.
28
-
29
- Select a network interface, and Nibble scans your local subnet. Lists hosts, hardware manufacturer, open ports and their services.
30
-
31
- ![Nibble demo](https://raw.githubusercontent.com/backendsystems/nibble/main/demo.gif)
32
-
33
- - Lightning fast scans using lightweight threads
34
- - Stealthy, emits no network signals before a scan is started
35
- - Colors uses your terminal theme colors
36
- - Skips loopback and irrelevant adapters
37
- - Defaults to SSH, Telnet, HTTP, HTTPS, SMB, RDP, and more
38
- - Can be set to a list of custom ports that are stored for future use
39
- - Target mode for targeted network scans
40
- - Reads service banners on open ports (for example, OpenSSH or nginx versions)
41
- - Looks up hardware vendors:
42
- - Raspberry Pi, Ubiquiti, Apple and 40,000 other vendor ids
43
-
44
- ## History
45
- See past scans, the found hosts and re-scan all hosts ports. hotkey: `r`
46
- History remembers your position between sessions, so jump right back in to your last viewed scan.
47
-
48
- ![Nibble history](https://raw.githubusercontent.com/backendsystems/nibble/main/history.gif)
49
-
50
- ## Hotkeys
51
- `↑/↓/←/→`, `w/s/a/d`, `h/j/k/l`: selection
52
- `Enter`: confirm
53
- `p`: select ports
54
- `r`: history
55
- `t`: target mode
56
- `q`: cancel
57
- `Ctrl+C`: quit
58
- `?`: help
59
-
60
- ## Installation
61
- you may have to restart terminal to run `nibble` after install.
62
-
63
-
64
- go:
65
- ```bash
66
- go install github.com/backendsystems/nibble@latest
67
- ```
68
- brew:
69
- ```bash
70
- brew install backendsystems/tap/nibble
71
- ```
72
- pip:
73
- ```bash
74
- pipx install nibble-cli
75
- ```
76
- npm:
77
- ```bash
78
- npm install -g @backendsystems/nibble
79
- ```
80
- or run without install
81
- ```bash
82
- npx @backendsystems/nibble
83
- ```
84
-
85
- ## Usage
86
- Run the CLI with `nibble`, select a network interface.
87
- Interface icons: `🔌` = Ethernet, `📶` = Wi-Fi, `📦` = Container, `🔒` = VPN.
88
-
89
- Built with [Bubble Tea](https://github.com/charmbracelet/bubbletea)
File without changes
File without changes