mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-07-03 21:42:13 +00:00
Update README.md
This commit is contained in:
parent
48420d16c4
commit
c007dde3d7
1 changed files with 14 additions and 6 deletions
16
README.md
16
README.md
|
@ -117,12 +117,20 @@ To get things up and running just follow these steps:
|
||||||
chmod 777 genuser.sh
|
chmod 777 genuser.sh
|
||||||
```
|
```
|
||||||
10. Create a `WEB_USER` by running `./genuser.sh`
|
10. Create a `WEB_USER` by running `./genuser.sh`
|
||||||
1. **Possible Issue**
|
1. **Possible Issue**: WEB_USER Not Loaded
|
||||||
Sometimes
|
Sometimes, running the `genuser.sh` script may not properly load the `WEB_USER` entry in the `.env` file.
|
||||||
|
To check, open the `.env` file and verify if the `WEB_USER` variable is empty.
|
||||||
|
|
||||||
|
If it is empty, generate a new value using the following command:
|
||||||
```sh
|
```sh
|
||||||
chmod +x genuser.sh
|
htpasswd -n -b "username" "password" | base64 -w0
|
||||||
```
|
```
|
||||||
Then, run the script again.
|
For example, running:
|
||||||
|
```sh
|
||||||
|
htpasswd -n -b "tsec" "tsec" | base64 -w0
|
||||||
|
```
|
||||||
|
Copy the generated string and manually replace the WEB_USER value in the .env file.
|
||||||
|
|
||||||
|
|
||||||
12. Adjust the `.env` file by changing `TPOT_OSTYPE=linux` to either `mac` or `win`:
|
12. Adjust the `.env` file by changing `TPOT_OSTYPE=linux` to either `mac` or `win`:
|
||||||
13. You have to ensure on your own there are no port conflicts keeping T-Pot from starting up. Check the [list of required ports](#required-ports).
|
13. You have to ensure on your own there are no port conflicts keeping T-Pot from starting up. Check the [list of required ports](#required-ports).
|
||||||
|
|
Loading…
Reference in a new issue