Datasets:
File size: 1,272 Bytes
b553d7c |
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 |
---
license: apache-2.0
task_categories:
- text-generation
language:
- en
tags:
- cybersecurity
- passwords
- text-generation
pretty_name: Hacker Style Password Generation Dataset
---
# Hacker Style Password Generation Dataset
## Dataset Description
This dataset contains 20,000 instruction-response pairs designed to train and evaluate language models for generating strong, "hacker-style" passwords. The data simulates a user requesting a secure password and the model providing a complex, randomly generated string.
### Supported Tasks
* **Text Generation:** The primary task is conditional text generation, where the model takes a natural language instruction (query) and generates a corresponding password (response).
## Data Structure
The dataset is in CSV format with two columns:
* `Query`: A natural language instruction requesting the generation of a password (e.g., "Could you craft a hacker password").
* `Response`: The corresponding generated password, prefixed by a consistent phrase (e.g., "Here’s your hacker password: Sg~o^Z#sDK0$?q3").
### Data Instance
A typical example from the dataset looks like this:
```python
{
'Query': 'Could you craft a hacker password',
'Response': 'Here’s your hacker password: Sg~o^Z#sDK0$?q3'
} |