{"id":2525,"date":"2025-05-29T21:35:25","date_gmt":"2025-05-29T18:35:25","guid":{"rendered":"https:\/\/serhatyapici.com.tr\/?p=2525"},"modified":"2025-06-08T20:15:20","modified_gmt":"2025-06-08T17:15:20","slug":"crunch-wordlist-olusturma","status":"publish","type":"post","link":"https:\/\/serhatyapici.com.tr\/en\/crunch-wordlist-olusturma\/","title":{"rendered":"Crunch ile Wordlist Olu\u015fturma"},"content":{"rendered":"<style>\n  .crunch-generator {\n    max-width: 600px;\n    margin: 30px auto;\n    padding: 20px;\n    border-radius: 15px;\n    box-shadow: 0 0 15px rgba(0,0,0,0.2);\n    font-family: Arial, sans-serif;\n    background: #f7f9fc;\n    position: relative;\n  }\n\n  .crunch-generator h2 {\n    text-align: center;\n    margin-bottom: 20px;\n    font-size: 24px;\n  }\n\n  .crunch-generator label {\n    display: block;\n    margin-top: 10px;\n    font-weight: bold;\n  }\n\n  .crunch-generator input,\n  .crunch-generator select {\n    width: 100%;\n    padding: 8px;\n    margin-top: 5px;\n    border-radius: 8px;\n    border: 1px solid #ccc;\n  }\n\n  .crunch-generator button.generate {\n    margin-top: 20px;\n    padding: 10px 20px;\n    width: 100%;\n    font-size: 16px;\n    background: #1e88e5;\n    color: white;\n    border: none;\n    border-radius: 10px;\n    cursor: pointer;\n  }\n\n  .command-box {\n    position: relative;\n    margin-top: 20px;\n  }\n\n  .command-box pre {\n    background: #272822;\n    color: #f8f8f2;\n    padding: 12px;\n    border-radius: 10px;\n    overflow-x: auto;\n    font-family: monospace;\n    white-space: pre-wrap;\n    word-break: break-word;\n  }\n\n  .copy-icon {\n    position: absolute;\n    top: 10px;\n    right: 10px;\n    background: none;\n    border: none;\n    font-size: 18px;\n    color: #ccc;\n    cursor: pointer;\n    transition: color 0.2s ease;\n  }\n\n  .copy-icon:hover {\n    color: white;\n  }\n<\/style>\n\n<div class=\"crunch-generator\">\n  <h2>Crunch Komut \u00dcretici<\/h2>\n\n  <label for=\"min\">Minimum Uzunluk<\/label>\n  <input type=\"number\" id=\"min\" min=\"1\" value=\"4\">\n\n  <label for=\"max\">Maksimum Uzunluk<\/label>\n  <input type=\"number\" id=\"max\" min=\"1\" value=\"8\">\n\n  <label for=\"charset\">Karakter K\u00fcmesi<\/label>\n  <input type=\"text\" id=\"charset\" placeholder=\"abc123!@# veya + + 123 +\">\n\n  <label for=\"pattern\">Desen (-t)<\/label>\n  <input type=\"text\" id=\"pattern\" placeholder=\"\u00f6rn. @@god@@@\">\n\n  <label for=\"output\">\u00c7\u0131kt\u0131 Dosyas\u0131 (-o)<\/label>\n  <input type=\"text\" id=\"output\" placeholder=\"\u00f6rn. wordlist.txt\">\n\n  <label for=\"start\">Ba\u015flang\u0131\u00e7 Noktas\u0131 (-s)<\/label>\n  <input type=\"text\" id=\"start\" placeholder=\"\u00f6rn. abc123\">\n\n  <label for=\"compress\">S\u0131k\u0131\u015ft\u0131rma T\u00fcr\u00fc (-z)<\/label>\n  <select id=\"compress\">\n    <option value=\"\">Yok<\/option>\n    <option value=\"gzip\">gzip<\/option>\n    <option value=\"bzip2\">bzip2<\/option>\n    <option value=\"lzma\">lzma<\/option>\n  <\/select>\n\n  <button class=\"generate\" onclick=\"crunchUret()\">Komutu \u00dcret<\/button>\n\n  <div class=\"command-box\">\n    <button class=\"copy-icon\" onclick=\"copyToClipboard()\" title=\"Kopyala\">\ud83d\udccb<\/button>\n    <pre id=\"result\">Komut burada g\u00f6r\u00fcnecek...<\/pre>\n  <\/div>\n<\/div>\n\n<script>\n  function crunchUret() {\n    const min = document.getElementById(\"min\").value;\n    const max = document.getElementById(\"max\").value;\n    const charset = document.getElementById(\"charset\").value.trim();\n    const pattern = document.getElementById(\"pattern\").value.trim();\n    const output = document.getElementById(\"output\").value.trim();\n    const start = document.getElementById(\"start\").value.trim();\n    const compress = document.getElementById(\"compress\").value;\n\n    const resultEl = document.getElementById(\"result\");\n\n    if (!min || !max) {\n      resultEl.textContent = \"\u26a0\ufe0f L\u00fctfen minimum ve maksimum uzunluk de\u011ferlerini giriniz.\";\n      return;\n    }\n\n    let komut = `crunch ${min} ${max}`;\n    if (charset) komut += ` ${charset}`;\n    if (pattern) komut += ` -t ${pattern}`;\n    if (start) komut += ` -s ${start}`;\n    if (output) komut += ` -o ${output}`;\n    if (compress) komut += ` -z ${compress}`;\n\n    resultEl.textContent = komut;\n  }\n\n  function copyToClipboard() {\n    const text = document.getElementById(\"result\").textContent;\n    navigator.clipboard.writeText(text).then(() => {\n      const icon = document.querySelector('.copy-icon');\n      icon.textContent = '\u2705';\n      setTimeout(() => icon.textContent = '\ud83d\udccb', 1500);\n    });\n  }\n<\/script>","protected":false},"excerpt":{"rendered":"<p>Crunch Komut \u00dcretici Minimum Uzunluk Maksimum Uzunluk Karakter K\u00fcmesi Desen (-t) \u00c7\u0131kt\u0131 Dosyas\u0131 (-o) Ba\u015flang\u0131\u00e7 Noktas\u0131 (-s) S\u0131k\u0131\u015ft\u0131rma T\u00fcr\u00fc (-z) Yokgzipbzip2lzma Komutu \u00dcret \ud83d\udccb Komut burada g\u00f6r\u00fcnecek&#8230;<\/p>","protected":false},"author":1,"featured_media":2749,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_sitemap_exclude":false,"_sitemap_priority":"","_sitemap_frequency":"","footnotes":""},"categories":[55],"tags":[],"class_list":["post-2525","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-araclar"],"_links":{"self":[{"href":"https:\/\/serhatyapici.com.tr\/en\/wp-json\/wp\/v2\/posts\/2525","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/serhatyapici.com.tr\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/serhatyapici.com.tr\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/serhatyapici.com.tr\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/serhatyapici.com.tr\/en\/wp-json\/wp\/v2\/comments?post=2525"}],"version-history":[{"count":10,"href":"https:\/\/serhatyapici.com.tr\/en\/wp-json\/wp\/v2\/posts\/2525\/revisions"}],"predecessor-version":[{"id":2732,"href":"https:\/\/serhatyapici.com.tr\/en\/wp-json\/wp\/v2\/posts\/2525\/revisions\/2732"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/serhatyapici.com.tr\/en\/wp-json\/wp\/v2\/media\/2749"}],"wp:attachment":[{"href":"https:\/\/serhatyapici.com.tr\/en\/wp-json\/wp\/v2\/media?parent=2525"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/serhatyapici.com.tr\/en\/wp-json\/wp\/v2\/categories?post=2525"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/serhatyapici.com.tr\/en\/wp-json\/wp\/v2\/tags?post=2525"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}