24 lines
655 B
Python
24 lines
655 B
Python
#!/usr/bin/env python3
|
|
import glob
|
|
import subprocess
|
|
|
|
def countTpl(path):
|
|
return len(glob.glob(path + "/*.*"))
|
|
|
|
def command(args, start=None, end=None):
|
|
return "\n".join(subprocess.run(args, text=True, capture_output=True).stdout.split("\n")[start:end])[:-1]
|
|
|
|
def get_top10():
|
|
HEADER = "## Nuclei Templates Top 10 statistics\n\n"
|
|
TOP10 = command(["cat", "TOP-10.md"])
|
|
return HEADER + TOP10 if len(TOP10) > 0 else ""
|
|
|
|
if __name__ == "__main__":
|
|
version = command(["git", "describe", "--tags", "--abbrev=0"])
|
|
template = eval(open(".github/scripts/README.tmpl", "r").read())
|
|
|
|
print(template)
|
|
f = open("README.md", "w")
|
|
f.write(template)
|
|
f.close()
|