Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__pycache__/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pysap@git+https://github.com/usdAG/pysap_sncscan.git@main-sncscan
pysap@git+https://github.com/OWASP/pysap.git@master
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
]
)
14 changes: 8 additions & 6 deletions sncscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down