Code Duplication    Length = 3-3 lines in 4 locations

src/CrossSiteScripting.php 1 location

@@ 117-119 (lines=3) @@
114
            }
115
        }
116
117
        foreach ($wordsValue as $keyValue => $value) {
118
            $urls[] = str_replace($keyValue.'='.$value, $keyValue.'='.$exploit, $target);
119
        }
120
121
        return $urls;
122
    }

src/LocalFileDownload.php 1 location

@@ 110-112 (lines=3) @@
107
            }
108
        }
109
110
        foreach ($wordsValue as $keyValue => $value) {
111
            $urls[] = str_replace($keyValue.'='.$value, $keyValue.'=??????????', $target);
112
        }
113
114
        $urlFinal = [];
115

src/LocalFileInclusion.php 1 location

@@ 105-107 (lines=3) @@
102
            $wordsValue[$explodeQueryEqual[0]] = $explodeQueryEqual[1];
103
        }
104
105
        foreach ($wordsValue as $keyValue => $value) {
106
            $urls[] = str_replace($keyValue.'='.$value, $keyValue.'=??????????', $target);
107
        }
108
109
        $urlFinal = [];
110
        foreach ($urls as $url) {

src/SqlInjection.php 1 location

@@ 72-74 (lines=3) @@
69
            $wordsValue[$explodeQueryEqual[0]] = $explodeQueryEqual[1];
70
        }
71
72
        foreach ($wordsValue as $keyValue => $value) {
73
            $urls[] = str_replace($keyValue.'='.$value, $keyValue.'='.$value.static::EXPLOIT, $target);
74
        }
75
76
        return $urls;
77
    }