mirror of
https://github.com/JoelGMSec/EvilnoVNC.git
synced 2026-04-25 09:05:49 +03:00
[GH-ISSUE #40] link, #31
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/EvilnoVNC-JoelGMSec#31
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @BZZZ85 on GitHub (Jan 7, 2025).
Original GitHub issue: https://github.com/JoelGMSec/EvilnoVNC/issues/40
does not provide a link, only this is what it could be connected with .http://localhost and
Nothing
@standerksen commented on GitHub (Apr 28, 2025):
Hi @JoelGMSec, do you maybe have some more insights into this? I have installed the newest version today and I am encountering the same problem. Is there a common problem that might cause this issue?
@JoelGMSec commented on GitHub (Apr 29, 2025):
Solved, tested and working :)
@standerksen commented on GitHub (May 6, 2025):
@JoelGMSec Thank you for the quick response and fix! I have tested it and it is working on a Kali VM. It is not working natively on macOS though. Will try to run some more tests this week.
@standerksen commented on GitHub (May 6, 2025):
Turns out the issue was calling the Direct Rendering Infrastructure. Since macOS does not have
/dev/driit returns an error when running thedocker runcommand instart.sh. To fix this issue it might be useful to check for the existence of/dev/dri. When it does not exist (like on macOS), simply run the command without the--deviceflag:Linux:
sudo docker run --cap-add=SYS_ADMIN --device /dev/dri -d --rm -p 80:80 -v "/tmp:/tmp" -v "${PWD}/Downloads":"/home/user/Downloads" -e "WEBPAGE=$WEBPAGE" --name evilnovnc joelgmsec/evilnovnc > /dev/null 2>&1macOS:
sudo docker run --cap-add=SYS_ADMIN -d --rm -p 80:80 -v "/tmp:/tmp" -v "${PWD}/Downloads":"/home/user/Downloads" -e "WEBPAGE=$WEBPAGE" --name evilnovnc joelgmsec/evilnovnc > /dev/null 2>&1@JoelGMSec commented on GitHub (May 6, 2025):
Solved, thx :)