From f640b45acffdf8e9eaa69ef318f7304cc77edda2 Mon Sep 17 00:00:00 2001 From: Roman Hergenreder Date: Sun, 30 Jan 2022 20:47:22 +0100 Subject: [PATCH] chmod +x --- find_git_commit.py | 4 +++- phpinfo-analyzer.py | 2 ++ template.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) mode change 100644 => 100755 find_git_commit.py mode change 100644 => 100755 phpinfo-analyzer.py diff --git a/find_git_commit.py b/find_git_commit.py old mode 100644 new mode 100755 index b4c4802..feab45c --- a/find_git_commit.py +++ b/find_git_commit.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + import argparse import re import os @@ -180,4 +182,4 @@ if __name__ == "__main__": run(valid_files, args.dir, git_dir) if is_remote_git and not args.nodelete: - shutil.rmtree(git_dir) \ No newline at end of file + shutil.rmtree(git_dir) diff --git a/phpinfo-analyzer.py b/phpinfo-analyzer.py old mode 100644 new mode 100755 index fedf921..095ce99 --- a/phpinfo-analyzer.py +++ b/phpinfo-analyzer.py @@ -1,3 +1,5 @@ +#!/usr/bin/env python3 + import requests import sys from bs4 import BeautifulSoup diff --git a/template.py b/template.py index fe52f33..9126860 100755 --- a/template.py +++ b/template.py @@ -14,7 +14,7 @@ import requests import subprocess import urllib.parse from bs4 import BeautifulSoup -from hackingscripts import util, fileserver, genRevShell +from hackingscripts import util, fileserver, rev_shell from urllib3.exceptions import InsecureRequestWarning requests.packages.urllib3.disable_warnings(category=InsecureRequestWarning)