パスワードガチャ

2020-10-05

ブックマークレット, javascript

パスワードガチャ作った

「パスワード生成」で毎回検索するのがめんどくさくなったのでまたブックマークレット。
よろしければコピペしてお好きに改変してお使いください。

コード

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
javascript:(function(){
let div = document.createElement("div");
div.innerHTML = 
'
<style>
  input.password_maker, button.password_maker {
    font-family: SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace; 
    margin: 4px;
    padding: 4px;
    border: 1px solid #000;
    font-size: 14px;
    max-width: 100%;
  }

  input.password_maker_passwords_password:focus {
    outline: 2px solid #ff0000;
    border:  1px solid #ff0000;
  }

  h1 {
    font-weight: bold;
    font-size: 20px;
    line-height:20px;
    padding: 0;
    text-align: left;
  }
  h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 0px;
  }
  dt,dd{
    text-align: left;
  }
  small {
    font-size: 12px;
    display:block;
    color: #666;
  }
</style>
<div style="overflow-y: auto; border: 2px solid #000; background-color: #fff; width: 450px; max-height: 90vh; position: absolute;top: 50%; left: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%);fonf-size: 14px; z-index:9999;" id="password_maker">
  <div style="height: 100%; padding: 12px;">
    <h1>パスワードガチャ</h1>
    <dl>
      <dt><h3>使う文字を選択</h3></dt>
      <dd>
        <div>
          <input class="password_maker" type="checkbox" id="password_maker_upper" checked="checked"><label for="password_maker_upper">A-Z</label>
        </div>
        <div>
          <input class="password_maker" type="checkbox" id="password_maker_lower" checked="checked"><label for="password_maker_lower">a-z</label>
        </div>
        <div>
          <input class="password_maker" type="checkbox" id="password_maker_numbr" checked="checked"><label for="password_maker_numbr">0-9</label>
        </div>
        <div>
          <input class="password_maker" type="checkbox" id="password_dup_exclude"><label for="password_dup_exclude">文字の重複禁止</label>
        </div>
      </dd>
      <dt><h3>自由指定</h3></dt>
      <dd>
        <input class="password_maker" type="text" id="password_maker_marks" value="#%&=@*:;<>{}?/_">
        <small>追加したい文字を指定</small>
        <small>何度も指定すると使用頻度が高くなる</small>
      </dd>
      <dt><h3>禁止文字</h3></dt>
      <dd>
        <div>
          <input class="password_maker" type="text" id="password_exclude_chars" value="01oOliI">
          <small>使いたくない文字を指定</small>
        </div>
      </dd>
      <dt><h3>文字数</h3></dt>
      <dd>
        <div>
          <input class="password_maker" type="number" id="password_maker_length" value="16" ><label>文字</label>
        </div>
      </dd>
      <dt><h3>個数</h3></dt>
      <dd>
        <div>
          <input class="password_maker" type="number" id="password_maker_count" value="10"><label>個</label>
        </div>
      </dd>
    </dl>
    <div>
      <dd>
        <button class="password_maker" id="password_maker_make">作成</button>
        <button class="password_maker" id="password_maker_exit">終了</button>
      </dd>
    </div>
    <dl>
      <dt><h1>パスワード候補</h1></dt>
      <dd>
        <small>クリックするとクリップボードにコピー</small>
      </dd>
      <dd>
        <div id="password_maker_passwords"></div>
      </dd>
    </dl>
  </div>
</div>';

function removePasswordMaker() {
  let password_maker = document.getElementById("password_maker");
  if (password_maker) { password_maker.remove(); }
};

removePasswordMaker();

document.getElementsByTagName("body")[0].appendChild(div); 

document.getElementById("password_maker_make").addEventListener("click", function() {
  drawPasswords();
});

document.getElementById("password_maker_exit").addEventListener("click", function() {
  removePasswordMaker();
});

document.getElementById("password_maker_upper").addEventListener("change", function() {
  drawPasswords();
});

document.getElementById("password_maker_lower").addEventListener("change", function() {
  drawPasswords();
});

document.getElementById("password_maker_numbr").addEventListener("change", function() {
  drawPasswords();
});

document.getElementById("password_dup_exclude").addEventListener("change", function() {
  drawPasswords();
});

document.getElementById("password_maker_marks").addEventListener("input", function() {
  drawPasswords();
});

document.getElementById("password_exclude_chars").addEventListener("input", function() {
  drawPasswords();
});

/* 指定した個数分パスワードを作成 */
function makePasswords() {
  let upps = [];
  if (document.getElementById("password_maker_upper").checked) {
    upps = ["A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"];
  }
  let lows = [];
  if (document.getElementById("password_maker_lower").checked) {
    lows = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z"];
  }
  let nums = [];
  if (document.getElementById("password_maker_numbr").checked) {
    nums = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"];
  }
  let mrks = document.getElementById("password_maker_marks").value.split("");
  const excs = document.getElementById("password_exclude_chars").value.split("");

  upps = upps.filter(function(v) {
    return ! excs.includes(v);
  });

  lows = lows.filter(function(v) {
    return ! excs.includes(v);
  });

  nums = nums.filter(function(v) {
    return ! excs.includes(v);
  });

  mrks = mrks.filter(function(v) {
    return ! excs.includes(v);
  });

  const length = document.getElementById("password_maker_length").value;
  const count  = document.getElementById("password_maker_count").value;
  const dup    = document.getElementById("password_dup_exclude").checked;

  const passwords = makePassword(upps, lows, nums, mrks, dup, length, count);
  return passwords;
}

/* パスワードリスト作成 */
function drawPasswords() {
  const passwords = makePasswords();
  const node = document.getElementById("password_maker_passwords");
  node.innerHTML = "";
  let innerHTML  = "";
  for(i=0; i<passwords.length; i++) {
    innerHTML += '<input readonly="true" class="password_maker password_maker_passwords_password" alt="' + passwords[i] + '" value="' + passwords[i] + '"/>';
  }
  node.innerHTML = innerHTML;
  const inputs = document.getElementsByClassName("password_maker_passwords_password");
  for(i=0; i<inputs.length; i++) {
    inputs[i].addEventListener("click", function() {
      if (navigator.clipboard) { navigator.clipboard.writeText(event.currentTarget.value); }
      else { event.currentTarget.select(); document.execCommand("copy");}
    });
  }
}

/* パスワードを一個作成 */
function makePassword(upps, lows, nums, mrks, dup, length, count) {
  let passwords = [];
  let characters = null;

  for (let i=0; i<count; i++) {
    characters = upps.concat(lows).concat(nums).concat(mrks);

    let upp, low, num, mrk;
    let words = [];
    upp = lottery(upps);
    low = lottery(lows);
    num = lottery(nums);
    mrk = lottery(mrks);
    if (0 < upp.length) { words.push(upp); }
    if (0 < low.length) { words.push(low); }
    if (0 < num.length) { words.push(num); }
    if (0 < mrk.length) { words.push(mrk); }

    const shortage = length - words.length;

    for (let j=0; j<shortage; j++) {
      if (dup) {
        /* 同じ文字を使わない */
        characters = characters.filter(function(v) {
          return ! words.includes(v);
        });
      }
      words.push(lottery(characters));
    }
    passwords.push(shuffle(words).join(""));
  }
  return passwords;
};

/* 文字をランダム選択 */
function lottery(arr) {
  let char = arr[Math.floor(Math.random() * arr.length)];
  if (char) { return char; }
  return "";
};

/* シャッフル */
function shuffle(array) {
  for (let i = array.length - 1; i >= 0; i--) {
    const j = Math.floor(Math.random() * (i + 1));
    [array[i], array[j]] = [array[j], array[i]];
  }
  return array;
};

drawPasswords();
})();

初心

アカウントをどうやって管理したい、とりあえず全部一覧に出してみよう。
すげーいっぱいあるわパスワード重複してるわこれはイカン。
パパっとパスワード考えてくれるブックマークレット作ろう!とか思ってしまう。

作るのにまる一日かかった…

コメント

投稿する

投稿したコメントはご自身で削除できません

不適切なコメントと判断した場合は管理側で削除することがあります