File tree Expand file tree Collapse file tree 2 files changed +24
-17
lines changed Expand file tree Collapse file tree 2 files changed +24
-17
lines changed Original file line number Diff line number Diff line change @@ -137,9 +137,15 @@ curl -k https://127.0.0.1:3000
137
137
138
138
## 🛠️ Debug
139
139
140
- ### 401 Unauthorized
140
+ ### Dotnet install on Linux
141
141
142
- Your first request may return a 401 code due to unsuccessful authentication. It's ok, Start Hacking !
142
+ Ubuntu / Debian exemple
143
+
144
+ ``` bash
145
+ wget https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
146
+ dpkg -i packages-microsoft-prod.deb
147
+ apt update && apt install -y dotnet-sdk-8.0 dotnet-runtime-8.0
148
+ ```
143
149
144
150
### Dotnet Framework
145
151
@@ -151,17 +157,6 @@ dotnet --version
151
157
dotnet --list-sdks
152
158
```
153
159
154
- ### Dotnet on Linux
155
-
156
- Ubuntu / Debian exemple
157
-
158
- ``` bash
159
- wget https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
160
- dpkg -i packages-microsoft-prod.deb
161
- apt update && apt install -y dotnet-sdk-8.0 dotnet-runtime-8.0
162
- ```
163
-
164
-
165
160
### Certificates
166
161
167
162
To trust the certificate
@@ -179,9 +174,6 @@ dependancies have to be dowloaded from [standard sources](https://go.microsoft.c
179
174
dotnet nuget add source " https://api.nuget.org/v3/index.json" --name " Microsoft"
180
175
```
181
176
182
- ### Misc
183
-
184
- * Be aware that VLA runs Linux and MacOS, but is only tested and supported on Windows.
185
177
186
178
## 💜 Crédits
187
179
Original file line number Diff line number Diff line change 3
3
xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" >
4
4
5
5
<targets >
6
+
6
7
<!-- log au format texte -->
7
8
<target name =" allfile" xsi : type =" File"
8
9
fileName =" ${shortdate}_logfile.txt" />
19
20
</target >
20
21
21
22
<!-- logs en console -->
22
- <target name =" logconsole" xsi : type =" Console" />
23
+ <target name =" logconsole" xsi : type =" Console" />
24
+
25
+ <!-- SIEM Splunk -->
26
+ <target name =" splunk" xsi : type =" Http" method =" Post"
27
+ url =" http://localhost:8088/services/collector"
28
+ headers =" Authorization=Splunk YOUR_TOKEN"
29
+ encoding =" utf-8"
30
+ contentType =" application/json" >
31
+ <layout xsi : type =" JsonLayout" >
32
+ <attribute name =" event" layout =" ${message}" />
33
+ <attribute name =" level" layout =" ${level}" />
34
+ <attribute name =" timestamp" layout =" ${date}" />
35
+ </layout >
36
+ </target >
37
+
23
38
24
39
</targets >
25
40
You can’t perform that action at this time.
0 commit comments