-
Notifications
You must be signed in to change notification settings - Fork 2
/
PKG-INFO
98 lines (76 loc) · 2.56 KB
/
PKG-INFO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
Metadata-Version: 2.1
Name: NetbiosSpoof
Version: 1.1.2
Summary: This package implements a Hostname Spoofer (Netbios, LLMNR and Local DNS).
Home-page: https://github.com/mauricelambert/NetbiosSpoof
Author: Maurice Lambert
Author-email: mauricelambert434@gmail.com
Maintainer: Maurice Lambert
Maintainer-email: mauricelambert434@gmail.com
License: GPL-3.0 License
Project-URL: Documentation, https://mauricelambert.github.io/info/python/security/NetbiosSpoof.html
Project-URL: Executable, https://mauricelambert.github.io/info/python/security/NetbiosSpoof.pyz
Keywords: netbios,spoofer,hostname,network,security,NBNS,LLMNR,MDNS,Local DNS
Platform: Windows
Platform: Linux
Platform: MacOS
Classifier: Programming Language :: Python
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: System :: Networking
Classifier: Topic :: Security
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt
![NetbiosSpoof logo](https://mauricelambert.github.io/info/python/security/NetbiosSpoof_small.png "NetbiosSpoof logo")
# NetbiosSpoof
## Description
This package implements a Hostname Spoofer (Netbios, LLMNR and Local DNS).
## Requirements
This package require :
- python3
- python3 Standard Library
- Scapy
## Installation
```bash
pip install NetbiosSpoof
```
## Usages
### Command lines
```bash
python3 -m NetbiosSpoof
python3 NetbiosSpoof.pyz
NetbiosSpoof
NetbiosSpoof --help
NetbiosSpoof -h
NetbiosSpoof -v -i 172.17.0.
```
### Python3
```python
from NetbiosSpoof import NetbiosSpoof
NetbiosSpoof().start()
spoofer = NetbiosSpoof("172.17.0.")
spoofer.start(True)
spoofer.stop()
```
## Links
- [Github Page](https://github.com/mauricelambert/NetbiosSpoof)
- [Pypi](https://pypi.org/project/NetbiosSpoof/)
- [Documentation](https://mauricelambert.github.io/info/python/security/NetbiosSpoof.html)
- [Executable](https://mauricelambert.github.io/info/python/security/NetbiosSpoof.pyz)
## Help
```text
usage: NetbiosSpoof.pyz [-h] [--iface IFACE] [--verbose]
This script spoofs host names on a network.
optional arguments:
-h, --help show this help message and exit
--iface IFACE, -i IFACE
Part of the IP, MAC or name of the interface
--verbose, -v Mode verbose (print debug message)
```
## Licence
Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).