write the get request for sql injection in comment

This commit is contained in:
Florian Hoss 2022-04-08 14:28:21 +02:00
parent 3e59c0601e
commit 8ddd8b2942

View file

@ -38,17 +38,18 @@ func (wp *Webpage) defineRoutes() {
tasks := wp.Router.Group("/tasks")
{
tasks.GET("", func(c *gin.Context) {
//if wp.isLoggedInMiddleware(c) { // FOR SQL INJECTION (username=Florian OR 1=1 in Header)
username := c.Request.Header.Get("username")
filter := c.Query("filter")
if filter != "" {
tasks := wp.Database.FilteredTasks(username, filter)
if wp.isLoggedInMiddleware(c) {
username := c.Request.Header.Get("username")
filter := c.Query("filter")
if filter != "" {
// SQL Injection: http://localhost:8080/tasks?filter=' or 1=1--
tasks := wp.Database.FilteredTasks(username, filter)
c.JSON(200, gin.H{"tasks": tasks})
return
}
tasks := wp.Database.GetAllTasks(username)
c.JSON(200, gin.H{"tasks": tasks})
return
}
tasks := wp.Database.GetAllTasks(username)
c.JSON(200, gin.H{"tasks": tasks})
//}
})
tasks.POST("", func(c *gin.Context) {
if wp.isLoggedInMiddleware(c) {