Dastardly Crashed Server #1584
Sh4d0wHunt3rX
started this conversation in
General
Replies: 1 comment 5 replies
-
Yes it's definitely possible. If the server crashed, it was almost definitely because it ran out of memory. From the screenshot, you can see that dastardly spawns chromium processes as part of its scan, and Chrome is infamously a memory hog. If you don't want to disable dastardly, you will need to give the server more RAM, and probably create a fat swapfile for safe measure: # Create a file which will be used for swap.
# NOTE: if this doesn't work, use `dd if=/dev/zero of=/swapfile bs=1024 count=1048576`
fallocate -l 5G /swapfile
# Set the correct permissions.
chmod 600 /swapfile
# Set up a Linux swap area
mkswap /swapfile
# Activate swap
swapon /swapfile
# Add in `/etc/fstab`
echo '/swapfile swap swap defaults 0 0' >> /etc/fstab
# Verify the swap status.
swapon --show |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was doing a very long scan on Dell
Started: 2024-07-24 06:52:15,380
Crashed: 2024-07-25 06:54:59,451
When Baddns finished, Dastardly started heavily.
So, for some seconds, my terminal was not responsive anymore, however, server was live. After few seconds, it became ok, I checked btop and saw this:
Then the ram became better in range of 70-90%. However, after about 15 minutes, suddenly I got disconnected from Termius and couldn't connect anymore.
For ram warning, I got only these 2 in debug:
Last lines
Server rebooting time:
So, I'm not sure if I interrupted BBOT by restarting the server or it already crashed the server.
I need to know:
Thanks 🙏
Beta Was this translation helpful? Give feedback.
All reactions