{"id":3749,"date":"2021-05-01T15:10:17","date_gmt":"2021-05-01T15:10:17","guid":{"rendered":"https:\/\/nenadnoveljic.com\/blog\/?p=3749"},"modified":"2021-05-01T15:10:20","modified_gmt":"2021-05-01T15:10:20","slug":"tns-12599-tnscryptographic-checksum-mismatch","status":"publish","type":"post","link":"https:\/\/nenadnoveljic.com\/blog\/tns-12599-tnscryptographic-checksum-mismatch\/","title":{"rendered":"TNS-12599: TNS:cryptographic checksum mismatch"},"content":{"rendered":"<p>The alert logs of some of our databases have been cluttered with the &#8220;TNS-12599: TNS:cryptographic checksum mismatch&#8221; error messages.<\/p>\n<p>We use the following configuration:<\/p>\n<pre><code>SQLNET.CRYPTO_CHECKSUM_SERVER  = required\nSQLNET.ENCRYPTION_SERVER       = required\nSQLNET.ENCRYPTION_TYPES_SERVER = (AES256)<\/code><\/pre>\n<p>A plethora of articles on Internet suggests downgrading encryption to a less strict mode to get rid of the error messages. But that would severely compromise the security &#8211; &#8220;required&#8221; is the only value that really enforces encryption. After all, you wouldn&#8217;t remove an ugly lock from your door just to improve the esthethics, would you?<\/p>\n<p>In this article I&#8217;ll explain the circumstances under which this error occur and how to get rid of it without compromising security.<\/p>\n<p>The error message doesn&#8217;t contain much useful information despite its verbosity:<\/p>\n<pre><code>NI cryptographic checksum mismatch error: 12599.\n\n  VERSION INFORMATION:\n        TNS for Solaris: Version 19.0.0.0.0 - Production\n        Oracle Bequeath NT Protocol Adapter for Solaris: Version 19.0.0.0.0 - Production\n        TCP\/IP NT Protocol Adapter for Solaris: Version 19.0.0.0.0 - Production\n  Version 19.9.0.0.0\n  Time: 01-MAY-2021 13:01:05\n  Tracing not turned on.\n  Tns error struct:\n    ns main err code: 12599\n\nTNS-12599: TNS:cryptographic checksum mismatch\n    ns secondary err code: 12656\n    nt main err code: 0\n    nt secondary err code: 0\n    nt OS err code: 0<\/code><\/pre>\n<p>The error could be traced down to JDBC connections by correlating the timestamp with listener log.<\/p>\n<p>Since I couldn&#8217;t reproduce the error just by connecting to a database, I gathered more information about the process with the following configuration:<\/p>\n<pre><code>alter system set events '12599 trace name errorstack forever, level 3';<\/code><\/pre>\n<p>An additional trace file for the dedicated server process was generated:<\/p>\n<pre><code>Errors in file \/u00\/oracle\/orabase\/diag\/rdbms\/db_site1\/DB\/trace\/DB_ora_20019.trc:<\/code><\/pre>\n<p>Besides the process ID, the trace file didn&#8217;t contain any other useful information. The process was short-lived and impossible to observe.<\/p>\n<p>Once more, I used the <a href=\"https:\/\/nenadnoveljic.com\/blog\/enriching-trace-with-call-stacks\/\">technique for enriching the log file with call stacks<\/a> to get an idea about what could have led to the problem:<\/p>\n<pre><code>syscall::write:entry\n\/ strstr( fds[arg0].fi_pathname, $1 ) !=  0 \/\n{\n  trace(copyinstr(arg1));\n  ustack(100);\n}<\/code><\/pre>\n<pre><code>dtrace -s alertlog_writes.d '\"alert_DB\"'\n\nORA-12599: TNS:cryptographic checksum mismatch\n\nlibc.so.1`__write+0xa\noracle`sdbgrfuwf_write_file+0x64\noracle`sdbgrfwf_write_file+0x3c\noracle`dbglWriteTextOnly+0x65c\noracle`dbglWriteLogCommon+0x2cf\noracle`dbgrlWriteAlertDetail+0x25a\noracle`dbgrlWriteAlertText+0x26\noracle`dbkrlPril+0x245\noracle`kgedes+0xb9\noracle`dbkedDefDump+0x6fd\noracle`ksedmp+0x2b8\noracle`dbkdaKsdActDriver+0xd03\noracle`dbgdaExecuteAction+0x178\noracle`dbgdaRunAction+0x29b\noracle`dbgdRunActions+0x90\noracle`dbgdProcessEventActions+0x124\noracle`dbgdChkEventKgErr+0x925\noracle`dbkdChkEventRdbmsErr+0x4a\noracle`ksfpec+0x6f\noracle`dbgePostErrorKGE+0x495\noracle`dbkePostKGE_kgsf+0x3b\noracle`kgeade+0x447\noracle`kgeselv+0x67\noracle`<span style=\"color:red\">ksesecl0<\/span>+0xb7\noracle`opiino+0xf83\noracle`opiodr+0x439\noracle`opidrv+0x33f\noracle`sou2o+0x97\noracle`opimai_real+0x121\noracle`ssthrdmain+0x26b\noracle`main+0xa9\noracle`0x77e2b14<\/code><\/pre>\n<p>The error was generated in the Oracle C function <span style=\"color:red\">ksesecl0<\/span>, whose description is &#8220;kernel service error security&#8221;, see <a href=\"http:\/\/orafun.info\/\">Frits Hoogland&#8217;s orafun<\/a>.<\/p>\n<p>This function handles authentication &#8211; I already saw it when <a href=\"https:\/\/nenadnoveljic.com\/blog\/duplicating-pluggable-databases-with-sysbackup\/\">analyzing an RMAN authentication problem <\/a>.<\/p>\n<p>I could indeed reproduce the TNS error by supplying wrong credentials to the following Java program:<\/p>\n<pre><code>import java.sql.DriverManager;\nimport java.sql.Connection;\nimport java.sql.SQLException;\n\npublic class ConnectDB {\n    public static void main(String[] argv) {\n        Connection connection = null ;\n        try {\n            Class.forName(\"oracle.jdbc.driver.OracleDriver\");\n        } catch (ClassNotFoundException e) {\n            e.printStackTrace();\n            return;\n        }\n\n        try {\n            connection = DriverManager.getConnection(\n                \"jdbc:oracle:thin:@ \" + argv[0], argv[1], argv[2]);\n        } catch (SQLException e) {\n            e.printStackTrace();\n            return;\n        }\n    }\n}<\/code><\/pre>\n<p>Compile it with:<\/p>\n<pre><code>javac ConnectDB.java<\/code><\/pre>\n<p>Run it as follows:<\/p>\n<pre><code>java -cp .:.\/ojdbc7.jar ConnectDB server:port:db user password<\/code><\/pre>\n<p>Since the error doesn&#8217;t appear after a successful connection, we can conclude that the code that handles exception after a login error doesn&#8217;t implement the checksumming correctly.<\/p>\n<p>The error is generated with OJDBC versions 6 and 7, but not with the OJDBC version 8 and fat client.<\/p>\n<p>Some people have identified that Oracle Enterprise Manager connections have been causing these error messages. That&#8217;s because OEM 13.4 sadly uses the version 7 even though the deployed java version is 8 :<\/p>\n<pre><code>ps -ef | grep agent | grep java\noracle    3224  2765   0   Mar 02 ?        4843:07 \/oracle\/product\/agent13c\/agent_13.4.0.0.0\/oracle_common\/jdk\/bin\/java -Xmx128M -XX:MaxMetaspaceSize=224M -server -d64 -Djava.security.egd=file:\/\/\/dev\/.\/urandom -Dsun.lang.ClassLoader.allowArraySyntax=true -XX:-DoEscapeAnalysis -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -XX:+UseCompressedOops -XX:-UseLWPSynchronization -Dsun.security.pkcs11.enable-solaris=false -Dwatchdog.pid=2765 -cp \/oracle\/product\/agent13c\/agent_13.4.0.0.0\/jdbc\/lib\/<span style=\"color:red\">ojdbc7.jar<\/span>:\/oracle\/product\/agent13c\/agent_13.4.0.0.0\/ucp\/lib\/ucp.jar:\/oracle\/product\/agent13c\/agent_13.4.0.0.0\/oracle_common\/modules\/jsch-0.1.54.jar:\/oracle\/product\/agent13c\/agent_13.4.0.0.0\/oracle_common\/modules\/com.oracle.http_client.http_client.jar:\/oracle\/product\/agent13c\/agent_13.4.0.0.0\/oracle_common\/modules\/oracle.xdk\/xmlparserv2.jar:\/oracle\/product\/agent13c\/agent_13.4.0.0.0\/oracle_common\/modules\/oracle.dms\/dms.jar:\/oracle\/product\/agent13c\/agent_13.4.0.0.0\/oracle_common\/modules\/oracle.odl\/ojdl.jar:\/oracle\/product\/agent13c\/agent_13.4.0.0.0\/oracle_common\/modules\/oracle.odl\/ojdl2.jar:\/oracle\/product\/agent13c\/agent_13.4.0.0.0\/lib\/optic.jar:\/oracle\/product\/agent13c\/agent_13.4.0.0.0\/sysman\/jlib\/log4j-core.jar:\/oracle\/product\/agent13c\/agent_13.4.0.0.0\/jlib\/gcagent_core.jar:\/oracle\/product\/agent13c\/agent_13.4.0.0.0\/sysman\/jlib\/emagentSDK-intg.jar:\/oracle\/product\/agent13c\/agent_13.4.0.0.0\/sysman\/jlib\/emagentSDK.jar oracle.sysman.gcagent.tmmain.TMMain<\/code><\/pre>\n<pre><code>\/oracle\/product\/agent13c\/agent_13.4.0.0.0\/oracle_common\/jdk\/bin\/java -version\n<span style=\"color:red\">java version \"1.8.0_231\"<\/span>\nJava(TM) SE Runtime Environment (build 1.8.0_231-b34)\nJava HotSpot(TM) 64-Bit Server VM (build 25.231-b34, mixed mode)<\/code><\/pre>\n<p>If your applications can&#8217;t upgrade to OJDBC 8, you can redirect these error messages to the SQLNet server log with the following configuration:<\/p>\n<pre><code>DIAG_ADR_ENABLED=off\nLOG_FILE_SERVER=server.log\nLOG_DIRECTORY_SERVER=\/oracle\/network\/log<\/code><\/pre>\n<h1>Summary<\/h1>\n<p>In summary, OJDBC versions below 8 don&#8217;t handle encryption correctly after a log on error. As a consequence, the TNS-12599 error message gets written in the alert log file. This error message is normally of no interest to DBAs &#8211; the client received the error message for the failed log on and should respond to it. Massive failed logons from JDBC clients can clutter the alert log.<\/p>\n<p>Therefore, instruct the applications to upgrade to OJDBC 8. If not feasible, you can redirect those message to tne SQLNet server log.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Older JDBC versions causing TNS-12599: TNS:cryptographic checksum mismatch <a href=\"https:\/\/nenadnoveljic.com\/blog\/tns-12599-tnscryptographic-checksum-mismatch\/\" class=\"more-link\">Continue Reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"footnotes":""},"categories":[40,5],"tags":[],"class_list":["post-3749","post","type-post","status-publish","format-standard","hentry","category-jdbc","category-oracle"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>TNS-12599: TNS:cryptographic checksum mismatch - All-round Database Topics<\/title>\n<meta name=\"description\" content=\"Older JDBC versions causing TNS-12599: TNS:cryptographic checksum mismatch\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/nenadnoveljic.com\/blog\/tns-12599-tnscryptographic-checksum-mismatch\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"TNS-12599: TNS:cryptographic checksum mismatch - All-round Database Topics\" \/>\n<meta property=\"og:description\" content=\"Older JDBC versions causing TNS-12599: TNS:cryptographic checksum mismatch\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nenadnoveljic.com\/blog\/tns-12599-tnscryptographic-checksum-mismatch\/\" \/>\n<meta property=\"og:site_name\" content=\"All-round Database Topics\" \/>\n<meta property=\"article:published_time\" content=\"2021-05-01T15:10:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-01T15:10:20+00:00\" \/>\n<meta name=\"author\" content=\"Nenad Noveljic\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@NenadNoveljic\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Nenad Noveljic\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/tns-12599-tnscryptographic-checksum-mismatch\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/tns-12599-tnscryptographic-checksum-mismatch\\\/\"},\"author\":{\"name\":\"Nenad Noveljic\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#\\\/schema\\\/person\\\/51458d9dd86dbbdd19f5add451d44efa\"},\"headline\":\"TNS-12599: TNS:cryptographic checksum mismatch\",\"datePublished\":\"2021-05-01T15:10:17+00:00\",\"dateModified\":\"2021-05-01T15:10:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/tns-12599-tnscryptographic-checksum-mismatch\\\/\"},\"wordCount\":469,\"commentCount\":8,\"articleSection\":[\"JDBC\",\"Oracle\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/tns-12599-tnscryptographic-checksum-mismatch\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/tns-12599-tnscryptographic-checksum-mismatch\\\/\",\"url\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/tns-12599-tnscryptographic-checksum-mismatch\\\/\",\"name\":\"TNS-12599: TNS:cryptographic checksum mismatch - All-round Database Topics\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#website\"},\"datePublished\":\"2021-05-01T15:10:17+00:00\",\"dateModified\":\"2021-05-01T15:10:20+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#\\\/schema\\\/person\\\/51458d9dd86dbbdd19f5add451d44efa\"},\"description\":\"Older JDBC versions causing TNS-12599: TNS:cryptographic checksum mismatch\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/tns-12599-tnscryptographic-checksum-mismatch\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/tns-12599-tnscryptographic-checksum-mismatch\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/tns-12599-tnscryptographic-checksum-mismatch\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"TNS-12599: TNS:cryptographic checksum mismatch\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/\",\"name\":\"All-round Database Topics\",\"description\":\"Nenad Noveljic\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/#\\\/schema\\\/person\\\/51458d9dd86dbbdd19f5add451d44efa\",\"name\":\"Nenad Noveljic\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g\",\"caption\":\"Nenad Noveljic\"},\"sameAs\":[\"nenad-noveljic-9b746a6\",\"https:\\\/\\\/x.com\\\/NenadNoveljic\"],\"url\":\"https:\\\/\\\/nenadnoveljic.com\\\/blog\\\/author\\\/nenad\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"TNS-12599: TNS:cryptographic checksum mismatch - All-round Database Topics","description":"Older JDBC versions causing TNS-12599: TNS:cryptographic checksum mismatch","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/nenadnoveljic.com\/blog\/tns-12599-tnscryptographic-checksum-mismatch\/","og_locale":"en_US","og_type":"article","og_title":"TNS-12599: TNS:cryptographic checksum mismatch - All-round Database Topics","og_description":"Older JDBC versions causing TNS-12599: TNS:cryptographic checksum mismatch","og_url":"https:\/\/nenadnoveljic.com\/blog\/tns-12599-tnscryptographic-checksum-mismatch\/","og_site_name":"All-round Database Topics","article_published_time":"2021-05-01T15:10:17+00:00","article_modified_time":"2021-05-01T15:10:20+00:00","author":"Nenad Noveljic","twitter_card":"summary_large_image","twitter_creator":"@NenadNoveljic","twitter_misc":{"Written by":"Nenad Noveljic","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/nenadnoveljic.com\/blog\/tns-12599-tnscryptographic-checksum-mismatch\/#article","isPartOf":{"@id":"https:\/\/nenadnoveljic.com\/blog\/tns-12599-tnscryptographic-checksum-mismatch\/"},"author":{"name":"Nenad Noveljic","@id":"https:\/\/nenadnoveljic.com\/blog\/#\/schema\/person\/51458d9dd86dbbdd19f5add451d44efa"},"headline":"TNS-12599: TNS:cryptographic checksum mismatch","datePublished":"2021-05-01T15:10:17+00:00","dateModified":"2021-05-01T15:10:20+00:00","mainEntityOfPage":{"@id":"https:\/\/nenadnoveljic.com\/blog\/tns-12599-tnscryptographic-checksum-mismatch\/"},"wordCount":469,"commentCount":8,"articleSection":["JDBC","Oracle"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/nenadnoveljic.com\/blog\/tns-12599-tnscryptographic-checksum-mismatch\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/nenadnoveljic.com\/blog\/tns-12599-tnscryptographic-checksum-mismatch\/","url":"https:\/\/nenadnoveljic.com\/blog\/tns-12599-tnscryptographic-checksum-mismatch\/","name":"TNS-12599: TNS:cryptographic checksum mismatch - All-round Database Topics","isPartOf":{"@id":"https:\/\/nenadnoveljic.com\/blog\/#website"},"datePublished":"2021-05-01T15:10:17+00:00","dateModified":"2021-05-01T15:10:20+00:00","author":{"@id":"https:\/\/nenadnoveljic.com\/blog\/#\/schema\/person\/51458d9dd86dbbdd19f5add451d44efa"},"description":"Older JDBC versions causing TNS-12599: TNS:cryptographic checksum mismatch","breadcrumb":{"@id":"https:\/\/nenadnoveljic.com\/blog\/tns-12599-tnscryptographic-checksum-mismatch\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nenadnoveljic.com\/blog\/tns-12599-tnscryptographic-checksum-mismatch\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/nenadnoveljic.com\/blog\/tns-12599-tnscryptographic-checksum-mismatch\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/nenadnoveljic.com\/blog\/"},{"@type":"ListItem","position":2,"name":"TNS-12599: TNS:cryptographic checksum mismatch"}]},{"@type":"WebSite","@id":"https:\/\/nenadnoveljic.com\/blog\/#website","url":"https:\/\/nenadnoveljic.com\/blog\/","name":"All-round Database Topics","description":"Nenad Noveljic","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/nenadnoveljic.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/nenadnoveljic.com\/blog\/#\/schema\/person\/51458d9dd86dbbdd19f5add451d44efa","name":"Nenad Noveljic","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a97b796613ea48ec8a7b79c8ffe1c685dcffc920c68121f6238d5caab5070670?s=96&d=mm&r=g","caption":"Nenad Noveljic"},"sameAs":["nenad-noveljic-9b746a6","https:\/\/x.com\/NenadNoveljic"],"url":"https:\/\/nenadnoveljic.com\/blog\/author\/nenad\/"}]}},"_links":{"self":[{"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/posts\/3749","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/comments?post=3749"}],"version-history":[{"count":2,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/posts\/3749\/revisions"}],"predecessor-version":[{"id":4317,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/posts\/3749\/revisions\/4317"}],"wp:attachment":[{"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/media?parent=3749"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/categories?post=3749"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/nenadnoveljic.com\/blog\/wp-json\/wp\/v2\/tags?post=3749"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}