b2dd110beac2001b5544126c84b0493467ae7f1c,w3af/core/data/request/fuzzable_request.py,FuzzableRequest,sent,#FuzzableRequest#,209

Before Change



        data = self.get_data()
        // This is the easy part. If it was exactly like this in the request
        if data and smth_instng in data or \
        smth_instng in self.get_uri() or \
        smth_instng in unquote(data) or \
        smth_instng in unicode(self.get_uri().url_decode()):
            return True

        // Ok, it"s not in it but maybe something similar

After Change



        data = self.get_data()
        if data:
            if smth_instng in data:
                return True

            if smth_instng in unquote(data):
                return True

        // We get here when the string was not found as-is, but maybe
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 5

Instances


Project Name: andresriancho/w3af
Commit Name: b2dd110beac2001b5544126c84b0493467ae7f1c
Time: 2017-08-23
Author: andres.riancho@gmail.com
File Name: w3af/core/data/request/fuzzable_request.py
Class Name: FuzzableRequest
Method Name: sent


Project Name: commonsense/conceptnet5
Commit Name: 245c8eab94ee807ea5678e5b41b3123f9da41066
Time: 2016-01-28
Author: rob@luminoso.com
File Name: conceptnet5/language/english.py
Class Name: SimpleLemmatizer
Method Name: lookup


Project Name: pytorch/audio
Commit Name: 11b00d5cabe9a2996cf8893d043a5f1a20ac4b2b
Time: 2020-08-04
Author: 855818+mthrok@users.noreply.github.com
File Name: test/common_utils/case_utils.py
Class Name:
Method Name: skipIfNoExtension


Project Name: jazzband/django-debug-toolbar
Commit Name: cba0d3712c17d8607f8e56901db392aa84ac8b40
Time: 2008-09-09
Author: rob@cogit8.org
File Name: debug_toolbar/middleware.py
Class Name: DebugToolbarMiddleware
Method Name: process_response