Skip to content

Commit

Permalink
Releasing version 0.1.10
Browse files Browse the repository at this point in the history
Martin Gallo committed Mar 25, 2016
1 parent 477daf4 commit 198fa7b
Showing 6 changed files with 21 additions and 9 deletions.
18 changes: 15 additions & 3 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
2016-03-25 Martin Gallo <mgallo@coresecurity.com>

* - Version v0.1.10 released.
* - Added support for handling SAP SAR file formats.
* pysap/SAPCAR.py: New module for handling SAP SAR file formats.
* extra/dlmanager_decrypt.py: Example PoC for decrypting SAP Download Manager
stored passwords.
* examples/dlmanager_infector.py: Example script to open a SAP SAR archive
file and infect it by adding files with arbitrary filenames (e.g. including
absolute or relative paths). It can be also used as a mitmproxy script for
on-the-fly infecting SAR files being downloaded.

2016-02-08 Martin Gallo <mgallo@coresecurity.com>

* - Version v0.1.9 released.
* - Using Scapy version 2.3.2.
* - Replaced epydoc with Sphinx for documentation.
* - Minor enhancement and code arrangements.
* pysap/SAPDiagItems.py: Added new support bits from SAP GUI 7.30p9 and 7.40
versions.
* pysap/utils.py: Removed custom fields now available on Scapy.
* pysap/SAPDiagItems.py: Added new support bits from SAP GUI 7.30p9 and 7.40
versions.
* pysap/utils.py: Removed custom fields now available on Scapy.
* examples/router_fingerprints.json: Added some fingerprints from SAP Router
releases 720.32 and 742.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ pysap - Python library for crafting SAP's network protocols packets

Copyright (C) 2012-2016 by Martin Gallo, Core Security

Version 0.1.10.dev0 (February 2016)
Version 0.1.10 (March 2016)


Overview
2 changes: 1 addition & 1 deletion bin/pysapcar
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
# ===========
# pysap - Python library for crafting SAP's network protocols packets
#
# Copyright (C) 2015 by Martin Gallo, Core Security
# Copyright (C) 2012-2016 by Martin Gallo, Core Security
#
# The library was designed and developed by Martin Gallo from the Security
# Consulting Services team of Core Security.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@

# General information about the project.
project = u'pysap'
copyright = u'2016, Martin Gallo, Core Security'
copyright = u'2012-2016, Martin Gallo, Core Security'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
2 changes: 1 addition & 1 deletion pysap/SAPCAR.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# ===========
# pysap - Python library for crafting SAP's network protocols packets
#
# Copyright (C) 2015 by Martin Gallo, Core Security
# Copyright (C) 2012-2016 by Martin Gallo, Core Security
#
# The library was designed and developed by Martin Gallo from the Security
# Consulting Services team of Core Security.
4 changes: 2 additions & 2 deletions pysap/__init__.py
Original file line number Diff line number Diff line change
@@ -54,14 +54,14 @@
* Example scripts to illustrate the use of the different modules and protocols.
:copyright: (c) 2016 by Martin Gallo, Core Security.
:copyright: (c) 2012-2016 by Martin Gallo, Core Security.
:license: GNU General Public License v2 or later (GPLv2+).
"""

__title__ = 'pysap'
"""The title of the library"""

__version__ = '0.1.10.dev0'
__version__ = '0.1.10'
"""The version of pysap"""

__url__ = "https://www.coresecurity.com/corelabs-research/open-source-tools/pysap"

0 comments on commit 198fa7b

Please sign in to comment.