forked from p15670423/monkey
Merge pull request #1539 from guardicore/1432-disable-browser-prompt-windows
1428 disable browser prompt windows
This commit is contained in:
commit
19cce1fb8b
|
@ -31,7 +31,8 @@ Changelog](https://keepachangelog.com/en/1.0.0/).
|
|||
- Insecure access feature in the Monkey Island. #1418
|
||||
- The "deployment" field from the server_config.json #1205
|
||||
- The "Execution through module load" ATT&CK technique,
|
||||
since it can no longer be exercise with current code #1416
|
||||
since it can no longer be exercise with current code. #1416
|
||||
- Browser window popup when Monkey Island starts on Windows. #1432
|
||||
|
||||
### Fixed
|
||||
- Misaligned buttons and input fields on exploiter and network configuration
|
||||
|
|
|
@ -53,6 +53,9 @@ private certificate authority.
|
|||
```
|
||||
1. Run the Monkey Island by clicking on the desktop shortcut.
|
||||
|
||||
1. Access the Monkey Island web UI by pointing your browser at
|
||||
`https://localhost:5000`.
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
### Support
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
REM - Runs MongoDB Server & Monkey Island Server using built pyinstaller EXE -
|
||||
REM - Runs Island server when user clicks on desktop shortcut or MonkeyIsland.exe in Windows -
|
||||
REM - This file is called in \labs\InfectionMonkey\IslandStarter\MonkeyIsland\MonkeyIsland\MonkeyIsland.cpp -
|
||||
start windows\run_cc_exe.bat
|
||||
start https://localhost:5000
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
REM - Runs MongoDB Server & Monkey Island Server using python -
|
||||
REM - Runs Monkey Island Server using python, only used in develop -
|
||||
pipenv run windows\run_cc.bat
|
||||
start https://localhost:5000
|
||||
|
|
Loading…
Reference in New Issue