hansmach1ne / LFImap

Local File Inclusion discovery and exploitation tool
Apache License 2.0
194 stars 29 forks source link

Multiple fixes in heur.py #70

Closed nrathaus closed 2 weeks ago

nrathaus commented 2 weeks ago
  1. Provide a docstring
  2. Reduce import from * to proxies
  3. Put import of builtin before external ones
  4. Replace var == False with not var
  5. Change range(len(sqlErrors)) to enumerate
  6. Change != None to is not None