cancel
Showing results for 
Search instead for 
Did you mean: 

SSL functionality in SAP

jay_b2
Participant
0 Kudos

http://help.sap.com/saphelp_nw73/helpdata/en/77/6fb4308dbe40d6b6ac5903e95c2521/frameset.htm

I am referring to the attached SSL configuration. I agree that it ensures integrity (no contents changed) but does it also ensure authenticity (i.e. message can be read only by relevant readers)

That is if some client accesses https://server:1443/logon application, he receives an encrypted page where he puts his user name and password.

Then he clicks on submit.

Does this content get encrypted in any way ?

Also, can the packets sent by server be intercepted and decoded as the server's public key. How can we ensure authenticity (low budget project )

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Jay,

AFAIK, in AS JAVA without encryption, the user/password and everything the user input in to the system as passed via network in plain text. And with encryption (https), the content are encrypted.

You can try to prove this using network-sniffer such as wireshark.

Thanks

jay_b2
Participant
0 Kudos

What I'm talking about is independent of server type (ABAP/JAVA/non SAP)

I believe that it will encrypt connections but will not help with issues such as Man in the Middle attack..

please confirm if that is correct.

Former Member
0 Kudos

Hi Jay,

If you need to authenticate the server, then you may use certificate for ABAP and JAVA.

Maybe the following link will be useful:

http://help.sap.com/saphelp_nw73/helpdata/en/49/231207ddeb1903e10000000a42189c/frameset.htm

When you use SSL certificate, beside the url in your browser there is a box with information who run the server and certified by who. This will prevent man-in-the-middle-attack. As long as the user do the checking.

Thanks