Skip to content

Commit aabef55

Browse files
committed
ticketastic flag0
1 parent 709e85f commit aabef55

File tree

8 files changed

+55
-1
lines changed

8 files changed

+55
-1
lines changed

Diff for: README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
| Moderate (3 / flag) | [Micro-CMS v2][5] | Web | 3 / 3 |
1414
| Moderate (5 / flag) | [Cody's First Blog][8] | Web | 3 / 3 |
1515
| Easy (4 / flag) | [Postbook][6] | Web | 7 / 7 |
16+
| Moderate (5 / flag) | [Ticketastic: Live Instance][9] | Web | 1 / 2 |
1617
| Easy (3 / flag) | [Petshop Pro][7] | Web | 3 / 3 |
1718
| Moderate (5 / flag) | [TempImage][4] | Web | 2 / 2 |
1819

@@ -23,4 +24,5 @@
2324
[5]: ./micro-cms_v2
2425
[6]: ./postbook
2526
[7]: ./petshop_pro
26-
[8]: ./codys_first_blog
27+
[8]: ./codys_first_blog
28+
[9]: ./ticketastic_live_instance

Diff for: ticketastic_live_instance/README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Ticketastic: Live Instance
2+
3+
## [Flag0](./flag0) -- Found
4+
5+
- This level and the Ticketastic demo instance are running the same code
6+
- Take a look at addUser on the demo instance
7+
- What is missing?
8+
- Humans might read these tickets and interact with them
9+
- Links in tickets could be interesting
10+
11+
## [Flag1](./flag1) -- Not Found

Diff for: ticketastic_live_instance/flag0/README.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Ticketastic: Live Instance - FLAG0
2+
3+
## 0x00 Index
4+
5+
![](./imgs/index.jpg)
6+
7+
## 0x01 Login
8+
9+
Tried login with admin/admin but shows **Invalid Password**.
10+
11+
Also tried to run a wordlist against the password. Still cannot log in.
12+
13+
![](./imgs/login.jpg)
14+
15+
## 0x02 Submit Ticket
16+
17+
The only thing can be done here is to submit a ticket.
18+
19+
As there is also a **Demo Instance** abailable for looking inside of the system.
20+
21+
There is a CSRF can be used here which can help to crete a new account.
22+
23+
https://localhost/newUser?username=test&password=test&password2=test
24+
25+
So just submit a ticket with the content below.
26+
27+
``` html
28+
<a href="http://localhost/newUser?username=test&password=test&password2=test">TEST</a>
29+
```
30+
31+
![](./imgs/ticket.jpg)
32+
33+
## 0x03 Login with New Account
34+
35+
![](./imgs/admin.jpg)
36+
37+
## 0x04 FLAG
38+
39+
Chek the ticket for FLAG0.
40+
41+
![](./imgs/flag.jpg)

Diff for: ticketastic_live_instance/flag0/imgs/admin.jpg

8.73 KB
Loading

Diff for: ticketastic_live_instance/flag0/imgs/flag.jpg

20.1 KB
Loading

Diff for: ticketastic_live_instance/flag0/imgs/index.jpg

19 KB
Loading

Diff for: ticketastic_live_instance/flag0/imgs/login.jpg

7.26 KB
Loading

Diff for: ticketastic_live_instance/flag0/imgs/ticket.jpg

11.6 KB
Loading

0 commit comments

Comments
 (0)