IOsipov / androguard

Automatically exported from code.google.com/p/androguard
Apache License 2.0
0 stars 0 forks source link

TaintedVariable missing method #34

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
    def get_fields_by_bb(self, bb) :
        l = []
        for i in self.__vars[ TAINTED_FIELD ] :
            for j in self.__vars[ TAINTED_FIELD ][i].gets() : <-- Missing method!
            for j in self.__vars[ TAINTED_FIELD ][i] :
                if j.get_bb() == bb :
                    l.append( (i.get_name(), j.get_access_flag()) )                
        return l

Original issue reported on code.google.com by liadalex82@gmail.com on 17 Apr 2012 at 9:03

GoogleCodeExporter commented 9 years ago

Original comment by anthony....@gmail.com on 17 Apr 2012 at 10:00

GoogleCodeExporter commented 9 years ago

Original comment by anthony....@gmail.com on 18 Apr 2012 at 1:08