bump
This commit is contained in:
parent
fddb815ab2
commit
622a3198a8
|
@ -6,6 +6,13 @@
|
||||||
emlAnalyzer
|
emlAnalyzer
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Outlook
|
||||||
|
|
||||||
|
* Outlook files like `.msg` can be read and changed to by perl-email-outlook-message via
|
||||||
|
```sh
|
||||||
|
msgconvert *.msg
|
||||||
|
```
|
||||||
|
|
||||||
## References
|
## References
|
||||||
|
|
||||||
* [Email reputation](https://emailrep.io)
|
* [Email reputation](https://emailrep.io)
|
||||||
|
|
|
@ -6,6 +6,8 @@
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
### OLEtools
|
||||||
|
|
||||||
* Check content of a stream
|
* Check content of a stream
|
||||||
```sh
|
```sh
|
||||||
oledump.py file.doc -Ss <No. of stream>
|
oledump.py file.doc -Ss <No. of stream>
|
||||||
|
@ -18,7 +20,7 @@ oledump.py -i file.doc
|
||||||
olevba file.doc
|
olevba file.doc
|
||||||
```
|
```
|
||||||
|
|
||||||
## Vipermonkey
|
### Vipermonkey
|
||||||
* For the lazy ones
|
* For the lazy ones
|
||||||
```sh
|
```sh
|
||||||
vmonkey file.doc
|
vmonkey file.doc
|
||||||
|
@ -26,3 +28,10 @@ vmonkey file.doc
|
||||||
|
|
||||||
## scdbg
|
## scdbg
|
||||||
* [scdbg repo](https://github.com/dzzie/SCDBG.git)
|
* [scdbg repo](https://github.com/dzzie/SCDBG.git)
|
||||||
|
|
||||||
|
## Outlook
|
||||||
|
|
||||||
|
* Outlook files like `.msg` can be read and changed to by perl-email-outlook-message via
|
||||||
|
```sh
|
||||||
|
msgconvert *.msg
|
||||||
|
```
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
# Windows Event Log
|
||||||
|
|
||||||
|
## Dump Logfile
|
||||||
|
|
||||||
|
Windows Event Logfiles can be dumped via
|
||||||
|
```sh
|
||||||
|
evtx_dump $EVENT_LOG > event.log
|
||||||
|
evtx_dump -o json $EVENT_LOG > event.log
|
||||||
|
```
|
|
@ -77,6 +77,11 @@ cat /var/log/access.log | less
|
||||||
|
|
||||||
## Find Files
|
## Find Files
|
||||||
|
|
||||||
|
* User files
|
||||||
|
```sh
|
||||||
|
find / -user $USER 2>/dev/null | grep -vE "run|proc|var"
|
||||||
|
```
|
||||||
|
|
||||||
* Find SUID permissions on files and dirs
|
* Find SUID permissions on files and dirs
|
||||||
* `find / -perm /6000 -ls 2>/dev/null`
|
* `find / -perm /6000 -ls 2>/dev/null`
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue