Skip to content

Commit 198fa7b

Browse files
author
Martin Gallo
committed
Releasing version 0.1.10
1 parent 477daf4 commit 198fa7b

File tree

6 files changed

+21
-9
lines changed

6 files changed

+21
-9
lines changed

ChangeLog

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,24 @@
1+
2016-03-25 Martin Gallo <[email protected]>
2+
3+
* - Version v0.1.10 released.
4+
* - Added support for handling SAP SAR file formats.
5+
* pysap/SAPCAR.py: New module for handling SAP SAR file formats.
6+
* extra/dlmanager_decrypt.py: Example PoC for decrypting SAP Download Manager
7+
stored passwords.
8+
* examples/dlmanager_infector.py: Example script to open a SAP SAR archive
9+
file and infect it by adding files with arbitrary filenames (e.g. including
10+
absolute or relative paths). It can be also used as a mitmproxy script for
11+
on-the-fly infecting SAR files being downloaded.
12+
113
2016-02-08 Martin Gallo <[email protected]>
214

315
* - Version v0.1.9 released.
416
* - Using Scapy version 2.3.2.
517
* - Replaced epydoc with Sphinx for documentation.
618
* - Minor enhancement and code arrangements.
7-
* pysap/SAPDiagItems.py: Added new support bits from SAP GUI 7.30p9 and 7.40
8-
versions.
9-
* pysap/utils.py: Removed custom fields now available on Scapy.
19+
* pysap/SAPDiagItems.py: Added new support bits from SAP GUI 7.30p9 and 7.40
20+
versions.
21+
* pysap/utils.py: Removed custom fields now available on Scapy.
1022
* examples/router_fingerprints.json: Added some fingerprints from SAP Router
1123
releases 720.32 and 742.
1224

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pysap - Python library for crafting SAP's network protocols packets
88

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

11-
Version 0.1.10.dev0 (February 2016)
11+
Version 0.1.10 (March 2016)
1212

1313

1414
Overview

bin/pysapcar

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# ===========
33
# pysap - Python library for crafting SAP's network protocols packets
44
#
5-
# Copyright (C) 2015 by Martin Gallo, Core Security
5+
# Copyright (C) 2012-2016 by Martin Gallo, Core Security
66
#
77
# The library was designed and developed by Martin Gallo from the Security
88
# Consulting Services team of Core Security.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848

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

5353
# The version info for the project you're documenting, acts as replacement for
5454
# |version| and |release|, also used in various other places throughout the

pysap/SAPCAR.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ===========
22
# pysap - Python library for crafting SAP's network protocols packets
33
#
4-
# Copyright (C) 2015 by Martin Gallo, Core Security
4+
# Copyright (C) 2012-2016 by Martin Gallo, Core Security
55
#
66
# The library was designed and developed by Martin Gallo from the Security
77
# Consulting Services team of Core Security.

pysap/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@
5454
* Example scripts to illustrate the use of the different modules and protocols.
5555
5656
57-
:copyright: (c) 2016 by Martin Gallo, Core Security.
57+
:copyright: (c) 2012-2016 by Martin Gallo, Core Security.
5858
:license: GNU General Public License v2 or later (GPLv2+).
5959
"""
6060

6161
__title__ = 'pysap'
6262
"""The title of the library"""
6363

64-
__version__ = '0.1.10.dev0'
64+
__version__ = '0.1.10'
6565
"""The version of pysap"""
6666

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

0 commit comments

Comments
 (0)