metasploitable3-solutions/Other_Tools_Used.md

29 lines
643 B
Markdown
Raw Permalink Normal View History

2019-06-13 11:05:46 +02:00
# Tools Used
1. `pigz`: Decompress a Zlib file
```
$ pigz -d -z 10_of_clubs.wav
```
2. `find`: Find flags
```
2019-06-13 11:24:24 +02:00
find / -iname "*_of_*"
2019-06-13 11:05:46 +02:00
```
2019-06-13 11:09:17 +02:00
3. `mount`: Mount ISO
```
2019-06-13 11:11:36 +02:00
$ mount -o loop /home/kylo_ren/.secret_files/my_recordings_do_not_open.iso /media/iso
```
4. `Binwalk`: Analyse binary files for embeded files and executable code
```
$ binwalk -e 10_of_clubs.wav
2019-06-13 11:09:17 +02:00
```
2019-06-13 14:32:31 +02:00
5. `docker`: Docker command
```
$ docker ps #View running docker containers
```
```
$ docker exec -it 9f48895b1e0e bash # Access the docker container
```