Skip to content

Commit 48a7ce9

Browse files
committedDec 11, 2014
Update 075-corruption.md
1 parent 96b5bb9 commit 48a7ce9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎075-corruption.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A google seach of .zip file headers will lead you to [this website](http://www.g
1414

1515
If we open the file in a hex editor program, it shows the first byte as `03 04 14 00`. We need it to be `50 4B 03 04`, and we have `03 04`, so by adding `50 4B` the first byte is `50 4B 03 04` and the file will extract.
1616

17-
In the extracted folder, we see a number of files (3000). Opening a file in a text editor reveals a series of characters. To find the flag, use the `findstr` (`grep` for mac) and search for "flag" in all files. To search all files, use a '*'. The final command will be `grep flag *`. The flag is hidden in file f2590
17+
In the extracted folder, we see a number of files (3000). Opening a file in a text editor reveals a series of characters. To find the flag, use the `findstr` (`grep` for mac) and search for "flag" in all files. To search all files, use a '\*'. The final command will be `grep flag *`. The flag is hidden in file `f2590`.
1818

1919
## Flag
2020

0 commit comments

Comments
 (0)
Please sign in to comment.