Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
403 changes: 403 additions & 0 deletions Findings.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[![Review Assignment Due Date](https://classroom.github.com/assets/deadline-readme-button-22041afd0340ce965d47ae6ef1cefeee28c7c493a6346c4f15d667ab976d596c.svg)](https://classroom.github.com/a/NSTTkgmb)
# Лабораторная работа №4 — Анализ и тестирование безопасности веб-приложения

## Цель
Expand Down
Binary file added img.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions security.http
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Information Disclosure 1
### register 1
POST http://localhost:7000/register?userId=1&userName=aboba1
Content-Type: application/json
Accept: application/json

### register 2
POST http://localhost:7000/register?userId=2&userName=aboba2
Content-Type: application/json
Accept: application/json

### profile 1
GET http://localhost:7000/userProfile?userId=1
Content-Type: application/json
Accept: application/json

### profile 2
GET http://localhost:7000/userProfile?userId=2
Content-Type: application/json
Accept: application/json

### Path traversal + DDos
GET http://localhost:7000/exportReport?userId=1&filename=../../etc/password
Accept: application/json

### SSRF
POST http://localhost:7000/notify?userId=1&callbackUrl=http://localhost:8080/admin
Content-Type: application/json
Accept: application/json







1 change: 1 addition & 0 deletions semgrep-report.sarif

Large diffs are not rendered by default.

Loading