{# canonical_base is the OWNING tenant's origin: all 16 Peasy domains serve the same catalogue, so a page rendered by a non-owner points its canonical at the owner instead of competing with it. Falls back to this site for static/self-owned pages. #}
🍋
Menu
Audio

Waveform

تدقيق قوة كلمة المرور

أداة تحلل كلمة المرور وتقدر مقاومتها لهجمات التخمين بناءً على الطول وتعقيد مجموعة الأحرف واكتشاف الأنماط الشائعة.

التفاصيل التقنية

يستخدم zxcvbn (بواسطة Dropbox) مطابقة الأنماط للكشف عن: كلمات القاموس، أنماط لوحة المفاتيح (qwerty)، التواريخ، التكرار (aaa)، التسلسل (abc)، ثم يجمع الإنتروبيا الدنيا. مقابل ذلك، يحسب فحص مجموعة الأحرف الساذج الإنتروبيا فقط من الطول وحجم الأبجدية، ويفتقد أن "Password1!" تستخدم أنماطًا شائعة.

مثال

```javascript
// Waveform: Web Audio API example
const audioCtx = new AudioContext();
const response = await fetch('audio.mp3');
const buffer = await audioCtx.decodeAudioData(await response.arrayBuffer());
const source = audioCtx.createBufferSource();
source.buffer = buffer;
source.connect(audioCtx.destination);
source.start();
```

أدوات ذات صلة

مصطلحات ذات صلة