mstfknn commited on
Commit
69ba4fe
·
verified ·
1 Parent(s): f9d1c5c

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +41 -3
README.md CHANGED
@@ -1,3 +1,41 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - dataset
4
+ - phishing
5
+ - domain-list
6
+ license: mit
7
+ language:
8
+ - en
9
+ ---
10
+
11
+ # Phishing & Clean Domain Dataset
12
+
13
+ This dataset contains labeled domain names used to train phishing detection models.
14
+
15
+ ## Format
16
+
17
+ Each line is in FastText format:
18
+
19
+ ```
20
+ __label__phishing carreeffoursa.site
21
+ __label__clean google.com
22
+ ```
23
+
24
+ ## Statistics
25
+
26
+ - Phishing domains: ~X
27
+ - Clean domains: ~Y
28
+
29
+ *(Replace with your real counts if needed.)*
30
+
31
+ ## Usage
32
+
33
+ Use this file as input for FastText supervised training:
34
+
35
+ ```bash
36
+ ./fasttext supervised -input phishing_train.txt -output phishing_model
37
+ ```
38
+
39
+ ## License
40
+
41
+ MIT