Skip to content

Commit d05ab19

Browse files
author
Robin Duda
committed
mkcert
1 parent 79f48e1 commit d05ab19

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,6 @@ data/ripped/
55
node_modules/
66
__pycache__/
77
.cache/
8-
**/__pycache__
8+
**/__pycache__
9+
*.key
10+
*.pem

generate

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
#!/usr/bin/bash
12
cd generator && node index.js $@ && cd ..

generator/server/keys/mkcert

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/bash
2+
openssl req -x509 -nodes -days 90 -newkey rsa:4096 -keyout server.key -out server.pem -config request.ext -sha256

readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ Implements the following features
5252
* trains the machine learning model.
5353
* performs classification of traffic as it is analyzed.
5454

55+
### Requirements
5556
To install requirements run `pip install -r requirements.txt`
5657

5758
The analyzer uses `asyncio`, `pandas` and `scapy`.
5859

59-
from `./` run,
6060
```
6161
$ ./analyze -h
6262
usage: -c [-h] {list,sniff,plot,learn,monitor} ...
@@ -101,9 +101,9 @@ Implements the following features
101101
* create clones of websites for testing locally.
102102
* includes a mDNS beacon for hostname simulation.
103103

104+
### Requirements
104105
To install dependencies, run `npm install` in `./generator`.
105106

106-
from `./generator` run,
107107
```
108108
$ ./generate -h
109109
usage: index.js [-v] {forge,serve,sites,site,beacon,monitor} ...

0 commit comments

Comments
 (0)