sqlmap/extra/shutils/newlines.py

31 lines
903 B
Python
Raw Permalink Normal View History

2019-03-28 18:04:38 +03:00
#! /usr/bin/env python
2019-01-22 03:20:27 +03:00
from __future__ import print_function
import os
import sys
def check(filepath):
if filepath.endswith(".py"):
2018-06-10 00:38:00 +03:00
content = open(filepath, "rb").read()
2019-03-28 18:04:38 +03:00
pattern = "\n\n\n".encode("ascii")
2018-06-10 00:38:00 +03:00
2019-03-28 18:04:38 +03:00
if pattern in content:
index = content.find(pattern)
2019-01-22 03:20:27 +03:00
print(filepath, repr(content[index - 30:index + 30]))
if __name__ == "__main__":
try:
BASE_DIRECTORY = sys.argv[1]
except IndexError:
2019-01-22 03:20:27 +03:00
print("no directory specified, defaulting to current working directory")
BASE_DIRECTORY = os.getcwd()
2019-01-22 03:20:27 +03:00
print("looking for *.py scripts in subdirectories of '%s'" % BASE_DIRECTORY)
for root, dirs, files in os.walk(BASE_DIRECTORY):
if any(_ in root for _ in ("extra", "thirdparty")):
continue
for name in files:
filepath = os.path.join(root, name)
check(filepath)