diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c18dd8d --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +__pycache__/ diff --git a/README.md b/README.md index e3ef029..ae8c47a 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ sncscan --route-string /H/10.3.161.5/S/3299/H/10.3.161.3/S/3200 -p diag ``` # Install -Requirements: Currently the sncscan only works with the pysap libary from our fork. +Requirements: sncscan currently depends on the OWASP pysap repository. ``` python3 -m pip install -r requirements.txt diff --git a/requirements.txt b/requirements.txt index 6cf98f4..b5b862f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -pysap@git+https://github.com/usdAG/pysap_sncscan.git@main-sncscan +pysap@git+https://github.com/OWASP/pysap.git@master diff --git a/setup.py b/setup.py index 95eba20..07419d1 100644 --- a/setup.py +++ b/setup.py @@ -2,15 +2,15 @@ setup( name='sncscan', - version='1.0.0', + version='1.1.0', packages=[''], - url='https://github.com/usdAG/sncscan', + url='https://github.com/SecuritySilverbacks/sncscan', license='GPLv3', author='Jonas Wamsler, Nicolas Schickert', author_email='jonas.wamsler@usd.de', description='sncscan: Tool for analyzing SAP Secure Network Communications (SNC).', - install_requires=["pysap>0.1"], + install_requires=["pysap @ git+https://github.com/OWASP/pysap.git@master"], dependency_links=[ - 'git+https://github.com/usdAG/pysap_sncscan.git@main-sncscan#egg=pysap-0.1.19' + 'git+https://github.com/OWASP/pysap.git@master#egg=pysap' ] ) diff --git a/sncscan.py b/sncscan.py index a5ad3b5..8026693 100755 --- a/sncscan.py +++ b/sncscan.py @@ -427,12 +427,14 @@ def parse_options(): def ascii_art(): - return colors.CYAN + ' ___ _ __ ___ ___ ___ __ _ _ __\n' \ - '/ __| \'_ \ / __/ __|/ __/ _` | \'_ \ \n' \ - '\__ \ | | | (__\__ \ (_| (_| | | | |\n' \ - '|___/_| |_|\___|___/\___\__,_|_| |_|\n' + colors.END \ - \ - \ + return colors.CYAN + r""" + ___ _ __ ___ ___ ___ __ _ _ __ +/ __| '_ \ / __/ __|/ __/ _` | '_ \ +\__ \ | | | (__\__ \ (_| (_| | | | | +|___/_| |_|\___|___/\___\__,_|_| |_| +""" + colors.END + + # Main function