code

  • 04 Jun

    SSL Error Codes

    https://www.secureblackbox.com/kb/help/ref_err_sslerrorcodes.html

    Copyright www.secureblackbox.comValuePossible reason and steps to take
    ERROR_SSL_CONNECTION_CANCELLED_BY_USER73729 (0x12001)
    ERROR_SSL_TIMEOUT73730 (0x12002)
    ERROR_SSL_UNSUPPORTED_MAC_ALGORITHM73731 (0x12003)
    ERROR_SSL_UNEXPECTED_MESSAGE75777 (0x12801)
    1. Connection is made to/from a service that doesn’t talk proper SSL (e.g. a plain HTTP connection is made to an HTTPS port). Re-check that both client and server services are talking SSL.
    2. Unsupported version of the protocol. Try to play with Versions property of the SSL component and check if any of the combination helps.
    ERROR_SSL_BAD_RECORD_MAC75778 (0x12802)The peers failed to negotiate a shared key material. Try connecting with different cipher suites one-by-one and check if any of them helps. If neither does, try to use a different protocol version.
    ERROR_SSL_DECRYPTION_FAILED75779 (0x12803)
    ERROR_SSL_DECODE_ERROR75792 (0x12810)
    ERROR_SSL_DECRYPT_ERROR75793 (0x12811)
    ERROR_SSL_RECORD_OVERFLOW75780 (0x12804)Packet size too large. Try to decrease the maximal size of the packet by adjusting the MaxFragmentLength extension.
    ERROR_SSL_DECOMPRESSION_FAILURE75781 (0x12805)Compression or decompression failure. Switch off compression (CompressionAlgorithms property).
    ERROR_SSL_HANDSHAKE_FAILURE75782 (0x12806)Incompatible versions or cipher suite lists. Try to play with version and cipher suite sets. Check that the server certificate is provided and has an associated private key.
    ERROR_SSL_ILLEGAL_PARAMETER75789 (0x1280D)
    ERROR_SSL_NO_CERTIFICATE75783 (0x12807)The certificate provided by the peer is not valid.
    ERROR_SSL_BAD_CERTIFICATE75784 (0x12808)
    ERROR_SSL_UNSUPPORTED_CERTIFICATE75785 (0x12809)
    ERROR_SSL_CERTIFICATE_REVOKED75786 (0x1280A)
    ERROR_SSL_CERTIFICATE_EXPIRED75787 (0x1280B)
    ERROR_SSL_CERTIFICATE_UNKNOWN75788 (0x1280C)
    ERROR_SSL_UNKNOWN_CA75790 (0x1280E)
    ERROR_SSL_ACCESS_DENIED75791 (0x1280F)The requested application-layer resource cannot be accessed by the requestor. Check with the administrator of the remote resource.
    ERROR_SSL_EXPORT_RESTRICTION75794 (0x12812)The peer is only configured to use exportable cipher suites. Switch on support for “EXPORT” cipher suites.
    ERROR_SSL_PROTOCOL_VERSION75795 (0x12813)The peers have not been able to negotiate a version to use (no shared protocol versions).
    ERROR_SSL_INSUFFICIENT_SECURITY75796 (0x12814)The cipher suites mutually supported by the peers are too weak and do not provide an adequate level of security.
    ERROR_SSL_INTERNAL_ERROR75797 (0x12815)Contact the vendor.
    ERROR_SSL_USER_CANCELED75798 (0x12816)Application layer has shut down the connection.
    ERROR_SSL_NO_RENEGOTIATION75799 (0x12817)One of the peers requested a renegotiation, which was refused by the other. Note that you will get this error (as a warning) if you return Allow = false from the OnRenegotiationStart event handler.
    ERROR_SSL_CLOSE_NOTIFY75800 (0x12818)Does not indicate an error condition. The SSL connection was closed gracefully and can be restored or cloned in future.
    ERROR_SSL_UNKNOWN_PROTOCOL_ERROR75801 (0x12819)
    By Limagito-Team Error , ,
  • 04 Jun

    FTP Error Codes

    https://www.secureblackbox.com/kb/help/ref_err_ftperrorcodes.html

    Copyright www.secureblackbox.comValueDescription
    SB_FTPS_ERROR_CONTROL_CHANNEL_HANGUP114689 (0x1C001)Some servers hang up control channels if no information is sent or received within rather short time. Hence, on large file transfers, the code which reports successful operation completion (226/250) is not sent by the server. FTPS client returns SB_FTPS_ERROR_CONTROL_CHANNEL_HANGUP error code when the command channel hangs up, but when the session was gracefully closed by the server (i.e., file transfer was finished successfully).
    SB_FTPS_ERROR_CONTROL_CHANNEL_NO_DATA114690 (0x1C002)No data is being transferred via control channel.
    SB_FTPS_ERROR_UNACCEPTED_REPLY_CODE115713 (0x1C401)Unaccepted reply code. Such codes may be sent by servers when data connection closure was initiated on the client side.
    SB_FTPS_ERROR_INVALID_REPLY115714 (0x1C402)Invalid reply.
    SB_FTPS_ERROR_LOCAL_SOURCE_NOT_FILE116737 (0x1C801)Local source is not a file.
    SB_FTPS_ERROR_LOCAL_TARGET_NOT_FILE116738 (0x1C802)Local target is not a file.
    SB_FTPS_ERROR_RESUME_OFFSET_TOO_LARGE116739 (0x1C803)This error is fired when the it is impossible to resume data transfer (because resume offset is too large).
    SB_FTPS_ERROR_OPERATION_CRITERIA_NOT_MET116740 (0x1C804)The criteria for the requested operation is not met.
    SB_FTPS_ERROR_TIMES_NOT_SET116741 (0x1C805)The criteria for the requested operation is not met.
    By Limagito-Team Error FTP , ,
  • 04 Jun

    SFTP Error Codes

    https://www.secureblackbox.com/kb/help/ref_err_sftperrorcodes.html

    Copyright www.secureblackbox.comValueDescription
    SSH_ERROR_WRONG_MODE-1 (0xFFFFFFFF)Attempt to call synchronous method in asynchronous mode and vice versa
    SSH_ERROR_OK0 (0x0000)Indicates successful completion of the operation
    SSH_ERROR_EOF1 (0x0001)indicates end-of-file condition;

    • Read: no more data is available in the file;
    • ReadDirectory: no more files are contained in the directory
    SSH_ERROR_NO_SUCH_FILE2 (0x0002)A reference is made to a file which does not exist
    SSH_ERROR_PERMISSION_DENIED3 (0x0003)the authenticated user does not have sufficient permissions to perform the operation
    SSH_ERROR_FAILURE4 (0x0004)An error occurred for which there is no more specific error code defined
    SSH_ERROR_BAD_MESSAGE5 (0x0005)A badly formatted packet or protocol incompatibility is detected
    SSH_ERROR_NO_CONNECTION6 (0x0006)A pseudo-error which indicates that the client has no connection to the server
    SSH_ERROR_CONNECTION_LOST7 (0x0007)A pseudo-error which indicates that the connection to the server has been lost
    SSH_ERROR_OP_UNSUPPORTED8 (0x0008)An attempt was made to perform an operation which is not supported for the server
    SSH_ERROR_INVALID_HANDLE9 (0x0009)The handle value was invalid
    SSH_ERROR_NO_SUCH_PATH10 (0x000A)The file path does not exist or is invalid
    SSH_ERROR_FILE_ALREADY_EXISTS11 (0x000B)The file already exists
    SSH_ERROR_WRITE_PROTECT12 (0x000C)The file is on read only media, or the media is write protected
    SSH_ERROR_NO_MEDIA13 (0x000D)The requested operation can not be completed because there is no media available in the drive
    SSH_ERROR_NO_SPACE_ON_FILESYSTEM14 (0x000E)The requested operation cannot be completed because there is no free space on the filesystem
    SSH_ERROR_QUOTA_EXCEEDED15 (0x000F)The operation cannot be completed because it would exceed the user’s storage quota
    SSH_ERROR_UNKNOWN_PRINCIPAL16 (0x0010)A principal referenced by the request (either the ‘owner’,‘group’, or ‘who’ field of an ACL), was unknown
    SSH_ERROR_LOCK_CONFLICT17 (0x0011)The file could not be opened because it is locked by another process
    SSH_ERROR_DIR_NOT_EMPTY18 (0x0012)The directory is not empty
    SSH_ERROR_NOT_A_DIRECTORY19 (0x0013)The specified file is not a directory
    SSH_ERROR_INVALID_FILENAME20 (0x0014)The filename is not valid
    SSH_ERROR_LINK_LOOP21 (0x0015)Too many symbolic links encountered
    SSH_ERROR_CANNOT_DELETE22 (0x0016)The file cannot be deleted. One possible reason is that the advisory READONLY attribute-bit is set
    SSH_ERROR_INVALID_PARAMETER23 (0x0017)On of the parameters was out of range, or the parameters specified cannot be used together
    SSH_ERROR_FILE_IS_A_DIRECTORY24 (0x0018)The specified file was a directory in a context where a directory cannot be used
    SSH_ERROR_BYTE_RANGE_LOCK_CONFLICT25 (0x0019)A read or write operation failed because another process’s mandatory byte-range lock overlaps with the request
    SSH_ERROR_BYTE_RANGE_LOCK_REFUSED26 (0x001A)A request for a byte range lock was refused
    SSH_ERROR_DELETE_PENDING27 (0x001B)An operation was attempted on a file for which a delete operation is pending
    SSH_ERROR_FILE_CORRUPT28 (0x001C)The file is corrupt; an filesystem integrity check should be run
    SSH_ERROR_OWNER_INVALID29 (0x001D)The principal specified can not be assigned as an owner of a file
    SSH_ERROR_GROUP_INVALID30 (0x001E)The principal specified can not be assigned as the primary group of a file
    SSH_ERROR_UNSUPPORTED_VERSION100 (0x0064)Sets of supported by client and server versions has no intersection
    SSH_ERROR_INVALID_PACKET101 (0x0065)Invalid packet was received
    SSH_ERROR_TUNNEL_ERROR102 (0x0066)Error is on the SSH-protocol level. The connection is closed because of SSH error
    SSH_ERROR_CONNECTION_CLOSED103 (0x0067)Connection is closed
    SSH_ERROR_UNSUPPORTED_ACTION104 (0x0068)
    SSH_ERROR_NOT_A_TEXT_HANDLE105 (0x0069)
    SSH_ERROR_CANCELLED_BY_USER106 (0x006A)
    By Limagito-Team Error SFTP , ,
1 2
SEARCH