https://github.com/bhattjayd/digdug
https://github.com/bhattjayd/digdug
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bhattjayd/digdug
- Owner: BhattJayD
- Created: 2022-05-15T16:15:24.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-15T16:28:11.000Z (over 3 years ago)
- Last Synced: 2024-12-30T07:18:29.834Z (10 months ago)
- Language: Python
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# digdug
a tryhackme simple ctf (url:https://tryhackme.com/room/digdug)
where we have got dns server and we need to get recon for _givemetheflag.com_
host contain the flag###### run with
```
python3 digdug.py
```###### response
```
$python3 digdug.py 10.10.192.156
"flag{0767ccd06e79853318f25aeb08ff83e2}"
```##### same output with bash
```
dig @10.10.192.156 givemetheflag.com |grep -oE "flag{.*}"
```