{"id":1881,"date":"2023-09-23T15:26:31","date_gmt":"2023-09-23T13:26:31","guid":{"rendered":"https:\/\/christeninformatica.ch\/?p=1881"},"modified":"2024-11-20T05:31:14","modified_gmt":"2024-11-20T04:31:14","slug":"how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking","status":"publish","type":"post","link":"https:\/\/christeninformatica.ch\/it\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/","title":{"rendered":"How to crack\/recover passwords with Hashcat Brute Force"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Tutorial on how to crack\/recover a password using a Hashcat brute force attack. Hashcat is a very sophisticated tool that is used to decrypt hashes. It is one of the fastest password cracker because it uses the GPU of the graphic card to speed up the process. With Hashcat you can &#8220;crack\/recover&#8221; any password, also those of WordPress for example, you just have to get the hash file. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Identify the Hash Algorithm Type<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">To crack\/recover a hash file you must first know what type of hashing algorithm was used. To find out you just have to observe the first two characters of the code, see table below. <\/p>\n\n\n\n<table border=\"1\" bgcolor=\"indigo\">\n<tbody>\n<tr>\n<th width=\"200\">Characters<\/th>\n<th width=\"300\">Hashing Algorithm <\/th>\n<\/tr>\n<tr>\n<td>$0<\/td>\n<td>DES<\/td>\n<\/tr>\n<tr>\n<td>$1<\/td>\n<td>MD5 Hashing<\/td>\n<\/tr>\n<tr>\n<td>$2<\/td>\n<td>Blowfish<\/td>\n<\/tr>\n<tr>\n<td>$2A<\/td>\n<td>Eksblowfish<\/td>\n<\/tr>\n<tr>\n<td>$5<\/td>\n<td>SHA256<\/td>\n<\/tr>\n<tr>\n<td>$6<\/td>\n<td>SHA512<\/td>\n<\/tr>\n<\/table>\n\n\n\n<p class=\"wp-block-paragraph\">If the code begins with $6 it means that the used algorithm is Sha512. There are also programs such as hashid that can be useful to identify the type of &#8220;hashing algorithm&#8221;.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Run the &#8220;hashcat -help&#8221; command and take a look under &#8220;hash modes&#8221;, there is a list of identification numbers to be used. In our example \u2013 we will crack a Linux System user password with hashcat brute force &#8211; the number to be used is 1800.<\/p>\n\n\n\n<div class=\"comandi\">\n<blockquote>\n<pre>  15900 | DPAPI masterkey file v2                          | Operating Systems\n  12800 | MS-AzureSync  PBKDF2-HMAC-SHA256                 | Operating Systems\n   1500 | descrypt, DES (Unix), Traditional DES            | Operating Systems\n  12400 | BSDi Crypt, Extended DES                         | Operating Systems\n    500 | md5crypt, MD5 (Unix), Cisco-IOS $1$ (MD5)        | Operating Systems\n   3200 | bcrypt $2*$, Blowfish (Unix)                     | Operating Systems\n   7400 | sha256crypt $5$, SHA256 (Unix)                   | Operating Systems\n   1800 | sha512crypt $6$, SHA512 (Unix)                   | Operating Systems\n    122 | macOS v10.4, MacOS v10.5, MacOS v10.6            | Operating Systems\n   1722 | macOS v10.7                                      | Operating Systems\n   7100 | macOS v10.8+ (PBKDF2-SHA512)                     | Operating Systems\n   6300 | AIX {smd5}                                       | Operating Systems\n   6700 | AIX {ssha1}                                      | Operating Systems\n<\/pre>\n<\/blockquote>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Hashcat Attack Mode<\/h2>\n\n\n\n<table border=\"1\" bgcolor=\"indigo\">\n<tbody>\n<tr>\n<th width=\"200\">Number<\/th>\n<th width=\"300\">Description<\/th>\n<\/tr>\n<tr>\n<td>0<\/td>\n<td>Vocabulary Attack<\/td>\n<\/tr>\n<tr>\n<td>1<\/td>\n<td>Combination<\/td>\n<\/tr>\n<tr>\n<td>3<\/td>\n<td>Brute Force Attack<\/td>\n<\/tr>\n<tr>\n<td>6<\/td>\n<td>Hybrid Attack<\/td>\n<\/tr>\n<\/table>\n\n\n\n<h2 class=\"wp-block-heading\">Hashcat Charset and Mask<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Hashcat Charset<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The sets of characters available are lowercase, uppercase, numbers and special characters.<\/p>\n\n\n\n<div class=\"comandi\">\n<blockquote>\n<pre>\n  ? | Charset\n ===+=========\n  l | abcdefghijklmnopqrstuvwxyz\n  u | ABCDEFGHIJKLMNOPQRSTUVWXYZ\n  d | 0123456789\n  s |  !\"#$%&'()*+,-.\/:;<=>?@[\\]^_`{|}~\n  a | ?l?u?d?s\n  b | 0x00 - 0xff\n<\/pre>\n<\/blockquote>\n<\/div>\n\n\n\nSo, to <b>crack a password<\/b> that is composed of lowercase letters, use ?l, for uppercase letters ?u, for numbers ?d etc. For example, if you want to <b>&#8220;crack&#8221; a password<\/b> using lowercase, uppercase and numbers you can use &#8220;-1 ?l ?u ?d ?1?1?1?1&#8221;. If you want to use all possible characters use ?a.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Hashcat Mask<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The mask is used to define the number of characters of the <b>password to crack<\/b> as well as the type to use.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">An example of a mask for a password composed of 4 lowercase letters could be this: &#8220;?l?l?l&#8221;.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Cracking Linux System password with Hashcat<\/h2>\n\n\n\n<p>For this example on <b>how to crack Linux System passwords<\/b> with <b>Hashcat<\/b> we will create a test user. \n<\/p>\n<div class=\"comandi\">\n<blockquote>\n<pre>\nWORKSTATION:~ # useradd testuser\nWORKSTATION:~ # passwd testuser\nNew password: \nBAD PASSWORD: it does not contain enough DIFFERENT characters\nBAD PASSWORD: is too simple\nRetype new password: \npasswd: password updated successfully\nWORKSTATION:~ # \n<\/pre>\n<\/blockquote>\n<\/div>\n<p>\nThe next step is to create a <b>hash file<\/b>. Passwords in Linux are stored in an encrypted way in the \/etc\/shadow file, in modern systems, using the Algorithm hashing SHA512.\n<\/p>\n<p>\nNow, to create the file we need we have to extract this information &#8211;<b>the hash of the password<\/b>&#8211; from the \/etc\/shadow file with the following command:\n<\/p>\n<div class=\"comandi\">\n<blockquote>\n<pre>\nWORKSTATION:~ # tail -n1 \/etc\/shadow \ntestuser:$6$CPtgtq4iPZ0cMSlt$A5Ev4HXwH2ZDzrWNhHgfO1ZZ7ceNIGwTCnnwSXOhcuOVm09FqvPOZgPhRp9DpKC3WsA7FDWOq4B8JAyMoaWcT\/:19622:0:99999:7:::\nWORKSTATION:~ # cd $HOME\nWORKSTATION:~ # tail -n1 \/etc\/shadow > testuser.hash\n\n<\/pre>\n<\/blockquote>\n<\/div>\n<p>Once the hash file is created you can proceed. To crack the password contained in the file run the following command:\n<\/p>\n<div class=\"comandi\">\n<blockquote>\n<pre>:~ # hashcat -m 1800 -a 3 testuser.hash ?l?l?l?l?l\nhashcat (v3.00) starting...\nHashes: 1 hashes; 1 unique digests, 1 unique salts\nBitmaps: 16 bits, 65536 entries, 0x0000ffff mask, 262144 bytes, 5\/13 rotates\nApplicable Optimizers:\n* Zero-Byte\n* Single-Hash\n* Single-Salt\n* Brute-Force\n* Uses-64-Bit\nWatchdog: Temperature abort trigger set to 90c\nWatchdog: Temperature retain trigger set to 75c\n\n[s]tatus [p]ause [r]esume [b]ypass [c]heckpoint [q]uit =&gt; s\n\nSession.Name...: hashcat\nStatus.........: Running\nInput.Mode.....: Mask (?l?l?l?l?l) [5]\nHash.Target....: $6$3jszVVeWR0jP6Bpr$eVtWKvj3KjQXUvIpz286Q...\nHash.Type......: sha512crypt, SHA512(Unix)\nTime.Started...: Tue Jan 15 21:02:08 2019 (29 secs)\nTime.Estimated.: Tue Jan 15 21:28:50 2019 (26 mins, 7 secs)\nSpeed.Dev.#1...:     7444 H\/s (11.61ms)\nRecovered......: 0\/1 (0.00%) Digests, 0\/1 (0.00%) Salts\nProgress.......: 215040\/11881376 (1.81%)\nRejected.......: 0\/215040 (0.00%)\nRestore.Point..: 0\/456976 (0.00%)\nHWMon.Dev.#1...: Temp: 60c Fan: 39%\n\n$6$3jszVVeWR0jP6Bpr$eVtWKvj3KjQXUvIpz286QNRl1bs5EAcq6gBG.z.TvbJVjYetM0byqyb7rwFKQwkYnIag80QF4HqUBreIhY0Mz1:test9\n                                                          \nSession.Name...: hashcat\nStatus.........: Cracked\nInput.Mode.....: Mask (?l?l?l?l?l) [5]\nHash.Target....: $6$3jszVVeWR0jP6Bpr$eVtWKvj3KjQXUvIpz286Q...\nHash.Type......: sha512crypt, SHA512(Unix)\nTime.Started...: Tue Jan 15 21:02:08 2019 (2 mins, 23 secs)\nSpeed.Dev.#1...:     7469 H\/s (11.59ms)\nRecovered......: 1\/1 (100.00%) Digests, 1\/1 (100.00%) Salts\nProgress.......: 1075200\/11881376 (9.05%)\nRejected.......: 0\/1075200 (0.00%)\nRestore.Point..: 35840\/456976 (7.84%)\n\nStarted: Tue Jan 15 21:02:08 2019\nStopped: Tue Jan 15 21:04:38 2019 \n:~ # \n<\/pre>\n<\/blockquote>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Tutorial on how to crack\/recover a password using a Hashcat brute force attack. Hashcat is a very sophisticated tool that is used to decrypt hashes. It is one of the fastest password cracker because it uses the GPU of the graphic card to speed up the process. With Hashcat you can &#8220;crack\/recover&#8221; any password, also&#8230;<\/p>\n<p class=\"more-link-wrap\"><a href=\"https:\/\/christeninformatica.ch\/it\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/\" class=\"more-link\">Read More<span class=\"screen-reader-text\"> &ldquo;How to crack\/recover passwords with Hashcat Brute Force&rdquo;<\/span> &raquo;<\/a><\/p>","protected":false},"author":5,"featured_media":1838,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[268,297],"tags":[18,303,259,302,61,274,304,11],"class_list":["post-1881","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ethical-hacking-penetration-testing","category-tutorials","tag-brute-force","tag-crack","tag-ethical-hacking","tag-hashcat","tag-password","tag-password-cracker","tag-program","tag-tutorial"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to crack\/recover passwords with Hashcat Brute Force &#8226; CHIT<\/title>\n<meta name=\"description\" content=\"Tutorial on how to crack\/recover a Linux System password using Hashcat brute force attack.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/christeninformatica.ch\/it\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to crack\/recover passwords with Hashcat Brute Force &#8226; CHIT\" \/>\n<meta property=\"og:description\" content=\"Tutorial on how to crack\/recover a Linux System password using Hashcat brute force attack.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/christeninformatica.ch\/it\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/\" \/>\n<meta property=\"og:site_name\" content=\"CHIT\" \/>\n<meta property=\"article:published_time\" content=\"2023-09-23T13:26:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-20T04:31:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/christeninformatica.ch\/media\/hashcat-advanced-password-recovery.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"650\" \/>\n\t<meta property=\"og:image:height\" content=\"161\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"chitblog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"chitblog\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\\\/\"},\"author\":{\"name\":\"chitblog\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/#\\\/schema\\\/person\\\/b0952e900860b424a6b0906f1d6a0a64\"},\"headline\":\"How to crack\\\/recover passwords with Hashcat Brute Force\",\"datePublished\":\"2023-09-23T13:26:31+00:00\",\"dateModified\":\"2024-11-20T04:31:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\\\/\"},\"wordCount\":435,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/christeninformatica.ch\\\/media\\\/hashcat-advanced-password-recovery.jpg\",\"keywords\":[\"brute force\",\"Crack\",\"ethical hacking\",\"Hashcat\",\"Password\",\"Password Cracker\",\"program\",\"tutorial\"],\"articleSection\":[\"Ethical Hacking \\\/ Penetration Testing\",\"Tutorials\"],\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/christeninformatica.ch\\\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\\\/\",\"url\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\\\/\",\"name\":\"How to crack\\\/recover passwords with Hashcat Brute Force &#8226; CHIT\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/christeninformatica.ch\\\/media\\\/hashcat-advanced-password-recovery.jpg\",\"datePublished\":\"2023-09-23T13:26:31+00:00\",\"dateModified\":\"2024-11-20T04:31:14+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/#\\\/schema\\\/person\\\/b0952e900860b424a6b0906f1d6a0a64\"},\"description\":\"Tutorial on how to crack\\\/recover a Linux System password using Hashcat brute force attack.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\\\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/christeninformatica.ch\\\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\\\/#primaryimage\",\"url\":\"https:\\\/\\\/christeninformatica.ch\\\/media\\\/hashcat-advanced-password-recovery.jpg\",\"contentUrl\":\"https:\\\/\\\/christeninformatica.ch\\\/media\\\/hashcat-advanced-password-recovery.jpg\",\"width\":650,\"height\":161},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/christeninformatica.ch\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to crack\\\/recover passwords with Hashcat Brute Force\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/#website\",\"url\":\"https:\\\/\\\/christeninformatica.ch\\\/\",\"name\":\"CHIT\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/christeninformatica.ch\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/#\\\/schema\\\/person\\\/b0952e900860b424a6b0906f1d6a0a64\",\"name\":\"chitblog\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g\",\"caption\":\"chitblog\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to crack\/recover passwords with Hashcat Brute Force &#8226; CHIT","description":"Tutorial on how to crack\/recover a Linux System password using Hashcat brute force attack.","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:\/\/christeninformatica.ch\/it\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/","og_locale":"it_IT","og_type":"article","og_title":"How to crack\/recover passwords with Hashcat Brute Force &#8226; CHIT","og_description":"Tutorial on how to crack\/recover a Linux System password using Hashcat brute force attack.","og_url":"https:\/\/christeninformatica.ch\/it\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/","og_site_name":"CHIT","article_published_time":"2023-09-23T13:26:31+00:00","article_modified_time":"2024-11-20T04:31:14+00:00","og_image":[{"width":650,"height":161,"url":"https:\/\/christeninformatica.ch\/media\/hashcat-advanced-password-recovery.jpg","type":"image\/jpeg"}],"author":"chitblog","twitter_card":"summary_large_image","twitter_misc":{"Written by":"chitblog","Est. reading time":"3 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/christeninformatica.ch\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/#article","isPartOf":{"@id":"https:\/\/christeninformatica.ch\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/"},"author":{"name":"chitblog","@id":"https:\/\/christeninformatica.ch\/#\/schema\/person\/b0952e900860b424a6b0906f1d6a0a64"},"headline":"How to crack\/recover passwords with Hashcat Brute Force","datePublished":"2023-09-23T13:26:31+00:00","dateModified":"2024-11-20T04:31:14+00:00","mainEntityOfPage":{"@id":"https:\/\/christeninformatica.ch\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/"},"wordCount":435,"commentCount":0,"image":{"@id":"https:\/\/christeninformatica.ch\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/#primaryimage"},"thumbnailUrl":"https:\/\/christeninformatica.ch\/media\/hashcat-advanced-password-recovery.jpg","keywords":["brute force","Crack","ethical hacking","Hashcat","Password","Password Cracker","program","tutorial"],"articleSection":["Ethical Hacking \/ Penetration Testing","Tutorials"],"inLanguage":"it-IT","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/christeninformatica.ch\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/christeninformatica.ch\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/","url":"https:\/\/christeninformatica.ch\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/","name":"How to crack\/recover passwords with Hashcat Brute Force &#8226; CHIT","isPartOf":{"@id":"https:\/\/christeninformatica.ch\/#website"},"primaryImageOfPage":{"@id":"https:\/\/christeninformatica.ch\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/#primaryimage"},"image":{"@id":"https:\/\/christeninformatica.ch\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/#primaryimage"},"thumbnailUrl":"https:\/\/christeninformatica.ch\/media\/hashcat-advanced-password-recovery.jpg","datePublished":"2023-09-23T13:26:31+00:00","dateModified":"2024-11-20T04:31:14+00:00","author":{"@id":"https:\/\/christeninformatica.ch\/#\/schema\/person\/b0952e900860b424a6b0906f1d6a0a64"},"description":"Tutorial on how to crack\/recover a Linux System password using Hashcat brute force attack.","breadcrumb":{"@id":"https:\/\/christeninformatica.ch\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/christeninformatica.ch\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/"]}]},{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/christeninformatica.ch\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/#primaryimage","url":"https:\/\/christeninformatica.ch\/media\/hashcat-advanced-password-recovery.jpg","contentUrl":"https:\/\/christeninformatica.ch\/media\/hashcat-advanced-password-recovery.jpg","width":650,"height":161},{"@type":"BreadcrumbList","@id":"https:\/\/christeninformatica.ch\/how-to-crack-recover-passwords-with-hashcat-brute-force-attack-ethical-hacking\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/christeninformatica.ch\/"},{"@type":"ListItem","position":2,"name":"How to crack\/recover passwords with Hashcat Brute Force"}]},{"@type":"WebSite","@id":"https:\/\/christeninformatica.ch\/#website","url":"https:\/\/christeninformatica.ch\/","name":"CHIT","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/christeninformatica.ch\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"it-IT"},{"@type":"Person","@id":"https:\/\/christeninformatica.ch\/#\/schema\/person\/b0952e900860b424a6b0906f1d6a0a64","name":"chitblog","image":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/secure.gravatar.com\/avatar\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g","caption":"chitblog"}}]}},"_links":{"self":[{"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/posts\/1881","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/comments?post=1881"}],"version-history":[{"count":0,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/posts\/1881\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/media\/1838"}],"wp:attachment":[{"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/media?parent=1881"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/categories?post=1881"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/tags?post=1881"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}