𝖈𝖞𝖇𝖊𝖗𝖌𝖚𝖗𝖚💀~$

Hamza's Blog

View on GitHub

Authorization 01

This exercise is one of our challenges on Authorisation issues

1694954750287.png

We access the deployed instance link and login using the provided credentials; we then increment the user /infos/{id} from 1 till we reached 3 and saw the KEY: 1694954940571.png

Authorization 02

This exercise is one of our challenges on Authorisation issues

1694955004458.png

Simillar to lab 1, we are also granted priviledge to edit the content of the user2

1694955217519.png

Authorization 03

This exercise is one of our challenges on Authorisation issues

1694955292227.png

This lab talks about most mistake made by modern frameworks that stores users details using their username as file for example (user_1.json):

we access the challenge link and try checking for the key, but’s masked so no way out; we now modify the url content to 1.json and saw the user details in the json file:

1694955944157.png

Authorization 04

This exercise is one of our challenges on Authorisation issues

1694956045540.png

The challenge of this lab is to modify the object model from username to admin; so while creating a user we intercepted the request and changed the user object to admin

Edited request:

1694956531895.png

Response:

1694956550826.png

Solving Authorization 05

This exercise is one of our challenges on Authorisation issues

1694956899069.png

This challenge is simillar to the previous one, but in this case we dont edit the user from username to admin but we attach an extra field saying this user is an admin, a dictionary:

user[admin] = 1

1694958211403.png

we send this payload and got the following response:

1694958322232.png

Authorization 06

This exercise is one of our challenges on Authorisation issues

1694958419874.png

This challenge requires us to join an organization or company by modifying the user field along with username and password we are able to archieve it by adding the following:

user[organization_id] = 1

we use the above payload to join organization/company 1 while creating the new user.

Request payload:

1694959272552.png

Response payload:

1694959599191.png