-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_log.txt
500 lines (254 loc) · 20.8 KB
/
example_log.txt
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
Wed 04 Jan 2023 01:31:41 PM CST
~~ Necessary packages ~~
~ apt-transport-https curl wget git xclip mlocate vim-gtk3 terminator zsh fish bat tldr
~~ Unnecessary packages ~~
~ toilet figlet cowsay fortune lolcat boxes
~~ Iptables added. To verify run: ~~
~ sudo iptables -L -v
~~ Also added to /configs/iptables.sh: ~~
#!/bin/bash
command iptables -P INPUT ACCEPT
command iptables -F
command iptables -A INPUT -i lo -j ACCEPT
command iptables -A INPUT -i eno2 -j ACCEPT
command iptables -A INPUT -p tcp --dport 20000 -j ACCEPT
command iptables -A INPUT -p tcp --dport 20010 -j ACCEPT
command iptables -A OUTPUT -p udp --dport 53 --sport 1024:65535 -j ACCEPT
command iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
command iptables -P INPUT DROP
command iptables -P FORWARD DROP
command iptables -P OUTPUT ACCEPT
~~ Brave ~~
~~ Files Added: ~~
~ /usr/share/keyrings/brave-browser-archive-keyring.gpg
~ /etc/apt/sources.list.d/brave-browser-release.list
~~ Package installed ~~
~ brave-browser
~~ VSCode ~~
~~ Files Added: ~~
~ /usr/share/keyrings/packages.microsoft.gpg
~ /etc/apt/sources.list.d/vscode.list
~~ Package installed ~~
~ code
~~ Additional packages ~~
~ libpam-tmpdir apt-listchanges debsums apt-show-versions sysstat auditd chkrootkit rkhunter unhide fail2ban unattended-upgrades acct arpwatch shellcheck vlc xpad tor sqlite3 sqlitebrowser python3-pip python3-virtualenv iptables-persistent
~~ Unattended-upgrades activated ~~
~~ Copied: ~~
~/etc/apt/apt.conf.d/50unattended-upgrades to /etc/apt/apt.conf.d/52unattended-upgrades-local
~~ Copied: ~~
~ /config/02periodic to /etc/apt/apt.conf.d/02periodic
~~ Content: ~~
// Control parameters for cron jobs by /etc/cron.daily/apt-compat //
// Enable the update/upgrade script (0=disable)
APT::Periodic::Enable "1";
// Do "apt-get update" automatically every n-days (0=disable)
APT::Periodic::Update-Package-Lists "1";
// Do "apt-get upgrade --download-only" every n-days (0=disable)
APT::Periodic::Download-Upgradeable-Packages "1";
// Run the "unattended-upgrade" security upgrade script
// every n-days (0=disabled)
// Requires the package "unattended-upgrades" and will write
// a log in /var/log/unattended-upgrades
APT::Periodic::Unattended-Upgrade "1";
// Do "apt-get autoclean" every n-days (0=disable)
APT::Periodic::AutocleanInterval "21";
// Send report mail to root
// 0: no report (or null string)
// 1: progress report (actually any string)
// 2: + command outputs (remove -qq, remove 2>/dev/null, add -d)
// 3: + trace on
APT::Periodic::Verbose "2";
~~ Rules added to: ~~
~ /etc/apt/apt.conf.d/52unattended-upgrades-local
Unattended-Upgrade::Remove-New-Unused-Dependencies "true";
Unattended-Upgrade::Remove-Unused-Dependencies "true";
Unattended-Upgrade::AutoFixInterruptedDpkg "true";
~~ Services enabled on reboot ~~
~ arpwatch auditd fail2ban sysstat unattended-upgrades
~~ Services disabled on reboot ~~
~ cups cups-browsed ufw
~~ Services started ~~
~ auditd fail2ban sysstat unattended-upgrades
~~ Services stopped ~~
~ cups cups-browsed ufw
~~ Arpwatch ~~
~~ Interface added: ~~
~ enp0s3
~~ Rules added to: ~~
~ /etc/arpwatch/enp0s3.iface
INTERFACES="enp0s3"
ARGS="-N -p"
~~ Service enabled on reboot ~~
~ arpwatch@enp0s3
~~ Service started ~~
~ arpwatch@enp0s3
~~ Auditctl ~~
~~ Rules added to: ~~
~ /etc/audit/rules.d/audit.rules
-w /etc/passwd -p rwxa -k passwd_access
-w /etc/shadow -p rwxa -k shadow_access
-w /etc/gshadow -p rwxa -k gshadow_access
-w /etc/hosts -p wa -k hosts_file_change
~~ Banners added too: ~~
~ /etc/motd
~ /etc/issue
~ /etc/issue.net
~~ Content: ~~
+----------------------------------------------------+
| This is a controlled access system. The activities |
| on this system are monitored. |
| Evidence of unauthorised activities may be |
| disclosed to the appropriate authorities. |
+----------------------------------------------------+
Installing Zsh and Oh-my-zsh
[++] /usr/bin/zsh found - root + all user shells converted to zsh.
~~ Shell changed to zsh. Please log out and log back in to finalize the process. ~~
Wed 04 Jan 2023 01:34:50 PM CST
Wed 04 Jan 2023 01:34:52 PM CST
Installing Rust
[++] Rust installation - complete
Installing Rustscan
[++] Rustscan installation - complete
Installing Feroxbuster
[++] Feroxbuster installation - complete
Installing Zsh and Oh-my-zsh
~~ Shell changed to zsh. Please log out and log back in to finalize the process. ~~
Wed 04 Jan 2023 01:39:29 PM CST
~~ Directory for corvus created at:
~ /home/corvus/.local/bin
~~ Symbolic link created for bat: ~~
~ ln -s /usr/bin/batcat /home/corvus/.local/bin/bat
~~ Symbolic link created for bat: ~~
~ ln -s /usr/bin/batcat /usr/local/bin/bat
~~ Path appended to:
~ /home/corvus/.zshrc
~~ Content: ~~
~ export PATH="$HOME/.local/bin:$PATH"
~~ Root directory created: ~~
~ /root/.local/bin
~~ Symbolic link created for bat: ~~
~ ln -s /usr/bin/batcat /root/.local/bin/bat
~~ Path appended to:
~ /root/.bashrc
~~ Content: ~~
~ export PATH="${HOME}/.local/bin:${PATH}"
~~ Path appended to:
~ /root/.zshrc
~~ Content: ~~
~ export PATH="${HOME}/.local/bin:${PATH}"
~~ Path appended to:
~ /home/corvus/.zshrc
~~ Content: ~~
~ export PATH="${HOME}/.cargo/bin:${PATH}"
~~ Path appended to:
~ /root/.bashrc
~~ Content: ~~
~ export PATH="/home/corvus/.cargo/bin:$PATH"
~~ Path appended to:
~ /root/.zshrc
~~ Content: ~~
~ export PATH="/home/corvus/.cargo/bin:$PATH"
~~ Terminator configs ~~
~~ Directory created: ~~
~ /home/corvus/.config/terminator
~~ Configuration file added to: ~~
~ /home/corvus/.config/terminator/config
~~ Terminator configs ~~
~~ Directory created: ~~
~ /root/.config/terminator
~~ Configuration file added to: ~~
~ /root/.config/terminator/config
~~ Bash aliases added to: ~~
~ /root/.bash_aliases
~~ Zsh aliases added to: ~~
~ /root/.oh-my-zsh/custom/aliases.zsh
~~ Bash aliases added to: ~~
~ /home/corvus/.bash_aliases
~~ Zsh aliases added to: ~~
~ /home/corvus/.oh-my-zsh/custom/aliases.zsh
~~ Bash aliases can be found at ~~
~ cat ~/.bash_aliases
~~ to update bash aliases run ~~
~ source ~/.bash_aliases
~~ Zsh aliases added to: ~~
~ /home/corvus/.oh-my-zsh/custom/aliases.zsh
~~ Zsh aliases can be found at ~~
~ cat ~/.oh-my-zsh/custom/aliases.zsh
~~ to update zsh aliases logout or run ~~
~ source ~/.zshrc
Wed 04 Jan 2023 01:39:38 PM CST
Wed 04 Jan 2023 01:39:47 PM CST
Installing Fish and Oh-my-fish
[++] /usr/bin/fish found - root + all user shells converted to fish.
~~ Installing oh-my-fish ~~
~~ Upon completion of oh-my-fish run ~~
~ omf install bobthefish
~~ If xclip is installed use SHIFT + CTRL + V ~~
Wed 04 Jan 2023 01:40:01 PM CST
Wed 04 Jan 2023 01:40:04 PM CST
[++] Rust is already installed, skipping installation.
[++] Rustscan is already installed, skipping installation.
[++] Feroxbuster is already installed, skipping installation.
Installing Fish and Oh-my-fish
Installing powerline
~~ Shell changed to fish. Please log out and log back in to finalize the process ~~
~~ Upon completion of oh-my-fish run ~~
~ omf install bobthefish
~~ If xclip is installed use SHIFT + CTRL + V ~~
Wed 04 Jan 2023 01:40:20 PM CST
Wed 04 Jan 2023 01:40:27 PM CST
~~ Symbolic link created for bat: ~~
~ ln -s /usr/bin/batcat /home/corvus/.local/bin/bat
~~ Symbolic link created for bat: ~~
~ ln -s /usr/bin/batcat /usr/local/bin/bat
~~ Path appended to:
~ /home/corvus/.config/fish/config.fish
~~ Content: ~~
~ set -x PATH $PATH $HOME/.local/bin
~~ Symbolic link created for bat: ~~
~ ln -s /usr/bin/batcat /root/.local/bin/bat
~~ Path appended to:
~ /root/.config/fish/config.fish
~~ Content: ~~
~ export PATH="${HOME}/.local/bin:${PATH}"
~~ Path appended to:
~ /home/corvus/.config/fish/config.fish
~~ Content: ~~
~ export PATH="${HOME}/.cargo/bin:${PATH}"
~~ Path appended to:
~ /root/.bashrc
~~ Content: ~~
~ export PATH="/home/corvus/.cargo/bin:$PATH"
~~ Path appended to:
~ /root/.zshrc
~~ Content: ~~
~ export PATH="/home/corvus/.cargo/bin:$PATH"
~~ Path appended to:
~ /root/.config/fish/config.fish
~~ Content: ~~
~ export PATH="/home/corvus/.cargo/bin:$PATH"
~~ Configuration file added to: ~~
~ /home/corvus/.config/terminator/config
~~ Configuration file added to: ~~
~ /root/.config/terminator/config
~~ Bash aliases added to: ~~
~ /root/.bash_aliases
~~ Zsh aliases added to: ~~
~ /root/.oh-my-zsh/custom/aliases.zsh
~~ Fish aliases added to: ~~
~ /root/.config/fish/functions
~~ Bash aliases can be found at ~~
~ cat ~/.bash_aliases
~~ to update bash aliases run ~~
~ source ~/.bash_aliases
~~ Zsh aliases added to: ~~
~ /home/corvus/.oh-my-zsh/custom/aliases.zsh
~~ Zsh aliases can be found at ~~
~ cat ~/.oh-my-zsh/custom/aliases.zsh
~~ to update zsh aliases logout or run ~~
~ source ~/.zshrc
~~ Fish aliases added to: ~~
~ /home/corvus/.config/fish/functions
~~ Fish aliases will be accessible immediately and can be found at ~~
~ ls ~/.config/fish/functions
Wed 04 Jan 2023 01:40:29 PM CST