PasswordGenerator avatar
PasswordGenerator

Pricing

Pay per event

Go to Apify Store
PasswordGenerator

PasswordGenerator

Secure password generator using crypto

Pricing

Pay per event

Rating

0.0

(0)

Developer

CrawlPilot

CrawlPilot

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

2

Monthly active users

11 days ago

Last modified

Share

Secure Password Generator

Apify Version Node.js

Generate cryptographically secure passwords — 1 result = 1 password.

Features

  • True Randomness: crypto.randomBytes()no Math.random()
  • Custom Length: 4–128 characters
  • Flexible Char Sets: Uppercase, lowercase, numbers, symbols
  • Avoid Ambiguity: Skip 0/O, 1/l, I (optional)
  • Batch Output: 1 password = 1 dataset item (ideal for export)
  • Lightning Fast: <1s per run

Input Schema

{
"length": 16,
"num_passwords": 5,
"include_uppercase": true,
"include_lowercase": true,
"include_numbers": true,
"include_symbols": false,
"avoid_ambiguous": true
}
FieldTypeDefaultDescription
lengthInteger124–128
include_uppercaseBooleantrueA-Z
include_lowercaseBooleantruea-z
include_numbersBooleantrue0-9
include_symbolsBooleantrue!@#$ etc.
num_passwordsInteger1Max 1,000
avoid_ambiguousBooleanfalseSkip confusing chars

At least one char set required.


Output (Dataset)

1 password = 1 result → Clean, billable, exportable

{ "password": "XyKpM2qR8vN4jLbC", "length": 16, "config": { ... }, "generated_at": "2025-11-07T06:00:00.000Z" }
{ "password": "A7tU3eW5rY9mP2fG", "length": 16, "config": { ... }, "generated_at": "2025-11-07T06:00:00.000Z" }

Export as CSV/JSON → Ready for scripts, DBs, Make.com, n8n, or Zapier.

Use Cases

  • Generate API keys, tokens, or user passwords
  • Seed test databases
  • Automate onboarding
  • Integrate with Make.com, Zapier, or scripts

Example Runs

// 3 readable passwords (no symbols, no ambiguity)
{ "num_passwords": 3, "include_symbols": false, "avoid_ambiguous": true }

Logs:

Generated 3 password(s) of length 12:
- AbCdEfGhIjKl
- MnOpQrStUvWx
- YzAbCdEfGhIj

Troubleshooting

  • "Char set" error → Enable at least one character type
  • Length clamped → Input outside 4–128 is adjusted
  • No dataset? → Check logs for generated passwords

Built With


License

MIT © 2025 CrawlPilot