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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
### 📄 [中文](docs/README.zh.md) | 📄 [English](README.md)
# ⚡ what this ?
**This is a universal feature library that integrates convenient features**
### Support app
<table style="background:#000">
<tr>
<th><h3 style="color:#fff">功能</h3></th>
<th><h3 style="color:#fff">Windows 10</h3></th>
<th><h3 style="color:#fff">Unix</h3></th>
<th><h3 style="color:#fff">Macos</h3></th>
</tr>
<tr>
<td>actix</td>
<td><h4 style="color:green">√</h4></td>
<td><h4 style="color:green">√</h4></td>
<td><h4 style="color:green">√</h4></td>
</tr>
<tr>
<td>tauri</td>
<td><h4 style="color:green">√</h4></td>
<td><h4 style="color:green">√</h4></td>
<td><h4 style="color:green">√</h4></td>
</tr>
<tr>
<tr>
<td>log</td>
<td><h4 style="color:green">√</h4></td>
<td><h4 style="color:green">√</h4></td>
<td><h4 style="color:green">√</h4></td>
</tr>
<tr>
<td>tracing</td>
<td><h4 style="color:green">√</h4></td>
<td><h4 style="color:green">√</h4></td>
<td><h4 style="color:green">√</h4></td>
</tr>
<tr>
<tr>
<td>_</td>
<td><h4 style="color:red">×</h4></td>
<td><h4 style="color:red">×</h4></td>
<td><h4 style="color:red">×</h4></td>
</tr>
</table>
# ✨ Features
```toml
[features]
log-actix = ["env_logger", "log"]
tracing-actix = [
"tracing-actix-web",
"tracing",
"tracing-log",
]
tracing-appender = [
"tracing-subscriber/fmt",
"tracing-subscriber/std",
"tracing-subscriber",
"thiserror",
"crossbeam-channel",
"time",
]
log-tauri = [
"log",
"log/kv_unstable",
"fern",
"byte-unit",
"serde_repr",
"tauri",
]
default = []
```
# 📖 Example
```toml
[dependencies]
e-log = { version = "0.1", default-features = false, features = ["log-tauri"] }
```
## `💡!important:`
<!-- ####There are three requirements for building on the windows system environment:
You must use the rust version using the MSVC toolchain
You must install [WinPcap]( https://www.winpcap.org/ )Or [npcap]( https://nmap.org/npcap/ )(using [WinPcap]( https://www.winpcap.org/ )Version 4.1.3) (if using [npcap]( https://nmap.org/npcap/ ), please make sure to use "in [WinPcap]( https://www.winpcap.org/ )Install [npcap] in API compatibility mode( https://nmap.org/npcap/ )”)
You must put it in your bag. [WinPcap]( https://www.winpcap.org/ )The Lib in the developer package is located in the directory named Lib in the root directory of the repository. Alternatively, you can use any location listed in the% lib% / $env: lib environment variable. For the 64 bit toolchain, it is located in wpdpack / lib / x64 / packet. For the 32-bit toolchain, it is located in wpdpack / lib / packet.lib.
```
# 1.install npcap server https://npcap.com/dist/npcap-1.70.exe
setx LIB E:\libs\LIB
# download and decompression https://npcap.com/dist/npcap-sdk-1.13.zip
# npcap-sdk-1.13\Lib\x64\Packet.lib put to E:\libs\LIB
``` -->
# 🚀 fast running
<!-- ```sh
# host/port scan
cargo run --example host_scan
cargo run --example port_scan
# async scan
cargo run --example async_host_scan --features="async"
cargo run --example async_port_scan --features="async"
# Fingerprint scan
cargo run --example os --features="os"
# Service Scan
cargo run --example service_detection --features="service"
# DNS Parse
cargo run --example dns
# Trace Route
cargo run --example tracert
``` -->
# 🦊 Applied Projects
<!-- [E-NetScan](https://github.com/EternalNight996/e-netscan.git): The network scanning project (which supports both command line and cross platform graphical interface) is under development.. -->
# 🔭 why need to e-utils?
<!-- At first, I wanted to complete a cross network scanning project to help me complete some work. I referred to many open source projects, but these projects have some defects that do not meet my needs, so I have e-libscanner.
(process host and port scanning, and support domain name resolution, route tracking, fingerprint scanning, service scanning, asynchronous scanning, scalability and more)
The bottom layer is by calling [npcap]( https://nmap.org/npcap/ )And [WinPcap]( https://www.winpcap.org/ )Packet capture service;
The service API is [libpnet]( https://github.com/libpnet/libpnet ); -->
# 🙋 Reference items and materials
<!-- ✨ [RustScan] https://github.com/RustScan/RustScan : Rustlike nmapscan
✨ [netscan] https://github.com/shellrow/netscan : Rust Network Scanner
✨ [libpnet](libpnet) https://github.com/libpnet/libpnet ● The background base of the interplatform network - mainly using captivity services ([npcap]) https://nmap.org/npcap/ with [WinPcap]( https://www.winpcap.org/ ) -->