Skip to content
This repository was archived by the owner on Oct 24, 2021. It is now read-only.

Commit 0475572

Browse files
committed
housekeeping + patriot
1 parent 3e5ca29 commit 0475572

File tree

5 files changed

+41
-0
lines changed

5 files changed

+41
-0
lines changed

.DS_Store

-6 KB
Binary file not shown.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_STORE

PatriotCTF2020/README.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Patriot CTF 2020
2+
DiceGang got [1st](scoreboard.png).
3+
4+
Sentence writeups because I needed an excuse for repo housekeeping.
5+
6+
## 2+2
7+
Base 62 decode.
8+
9+
## Dilbert Random
10+
We need a number from an [RFC 1149.5 compliant generator](https://xkcd.com/221/). The right number is 4.
11+
12+
## CYSE 425
13+
We can use [this tool](https://www.tunnelsup.com/hash-analyzer/) to analyze the hash we're given. Turns out it's SHA1.
14+
15+
We use CeWL to generate a custom wordlist of the site (as hinted from the description), and store that in a file.
16+
17+
We run `hashcat -m 1000 hash.h wordlist.txt` to find the right password.
18+
19+
## Break This Hash
20+
We can use [this tool](https://www.tunnelsup.com/hash-analyzer/) again to analyze the hash we're given. Turns out it's MD5.
21+
22+
From the format of the challenge description we can guess that it's referring to [what3words](https://what3words.com/). Using the coordinates we can build a dictionary to attack the hash with.
23+
24+
`hashcat -m 0 hash.h wordlist.txt`

PatriotCTF2020/scoreboard.png

137 KB
Loading

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# writeups
2+
3+
This is where I store writeups for CTF challenges that I've either solved, help solve, or write.
4+
5+
[generate.py](generate.py) is some quick code I threw together to provide some structure to writeups. Use at your own risk.
6+
7+
## 2020
8+
[AngstromCTF](AngstromCTF2020)
9+
[DawgCTF](DawgCTF2020)
10+
[DeepCTF](DeepCTF2020)
11+
[HackTM](HackTM2020)
12+
[HouseplantCTF](HouseplantCTF2020)
13+
[MidnightSunCTF](MidnightSunCTF2020)
14+
[NeverLanCTF](NeverLanCTF2020)
15+
[TAMUCTF](TAMUCTF2020)
16+
[VirtualCodeCup](VirtualCodeCup2020)

0 commit comments

Comments
 (0)