Skip to content

Fernbach is a vulnerable API written in the Flask micro web framework. The intent of this API is for testing the OWASP top ten vulnerabilities in an API environment.

Notifications You must be signed in to change notification settings

n0psn0ps/FernbachAPI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FernbachAPI

Welcome to Fernbach, a vulnerable API written in the Flask micro web framework. The intent of this API is for testing the OWASP top ten vulnerabilities in an API environment. Below is the low privilege user credentials there are quite a few endpoints and users present many of which are not listed. It is suggested to use a scanner to locate these endpoints Burp Suite, ZAP, or Ffuf work best. It is suggested to try to understand the application first before diving into the code so as not to spoil anything.

To start the application run:

docker-compose up

Check that the server is up and running at this endpoint: http://127.0.0.1:5000/status

User Credentials:

username = user 
password = user1234 
public_id = 5a139b37-98b0-4562-8b54-6c728e3d9794

Example API Calls:

The login endpoint allows for the user to create a token with a GET request using the username and password in the authorization header and use this auth token with the header "x-access-token" to make actions within the API endpoints:

Login:

Token Request:

GET /api/v1/login HTTP/1.1 
Host: localhost:5000 
Authorization: Basic YWRtaW46YWRtaW4xMjM0 
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36 
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,/;q=0.8,application/signed-exchange;v=b3;q=0.9
Accept-Encoding: gzip, deflate
Accept-Language: en-US,en;q=0.9
Content-Length: 48

{ 
'username' : 'user', 
'password' : 'user1234' 
}

Use the public_id to make changes on the /api/v1/user with the token at the endpoint:

GET /api/v1/user/[public_id] HTTP/1.1
x-access-token: [from the login endpoint]
Authorization: Basic dXNlcjp1c2VyMTIzNA==
Content-Type: application/json
User-Agent: PostmanRuntime/7.26.8
Host: localhost:5000
Accept-Encoding: gzip, deflate
Connection: close Content-Length: 80

Check the demo user's shipment status at the GET shipment endpoint:

http://127.0.0.1:5000/shipment/13

+++ SPOILER ++++

Current Vulnerabilities

- SQLi
- SSTI
- Command Injection
- IDOR / MFLAC
- Brute forcing
- Deprecated Endpoints
- Admin Interface Accessible
- Sensitive Data Exposure
- SSRF
- ....

To do:

[ ] XXE
[ ] Session Fixation
[ ] CORS

About

Fernbach is a vulnerable API written in the Flask micro web framework. The intent of this API is for testing the OWASP top ten vulnerabilities in an API environment.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published