Erik
Erik
When using an event_callback with an NmapProcess, you only receive the NmapProcess object, which does not contain any information about the host that generated the callback and is therefore pretty...
This merge requests cleans up Visual Studio files, object and cache files, and binaries. It also adds a .gitignore file to prevent their accidental addition to the repository in the...
Skip adding stderr to resp if garble is used as it generates megabytes of text output and causes the mythic API to fail. ``` websockets.exceptions.PayloadTooBig: over size limit (2496193 >...
Add `restart: always` to elasticsearch and kibana containers. Fixes https://github.com/peasead/elastic-container/issues/41
When calling `sharefolder_delete` a user will likely assume that the share created with `sharefolder_create` is removed from the target system. This is not the case, only the folder is deleted...
Just used this to great effect in the OSCP lab. One small suggestion, consider adding a `2>&1` to the php shell_exec statement after `${1}` so that stderr is also written...
#### Overview of the Issue When using the ansible provisioner on a system with home directories that are read only, it will fail with `Error running "ansible-playbook --version": exit status...
https://github.com/rgajendran/ctf_marker/blob/5135484c7a8e912249ecea7d1350cfabe5df3dd0/admin.php#L1014 The users DB is defined with `` `T_TYPE` varchar(1) NOT NULL, `` But the Admin user is added without T_TYPE, which causes: > Field 'T_TYPE' doesn't have a default...
https://github.com/rgajendran/ctf_marker/blob/5135484c7a8e912249ecea7d1350cfabe5df3dd0/admin.php#L132 https://github.com/rgajendran/ctf_marker/blob/5135484c7a8e912249ecea7d1350cfabe5df3dd0/admin.php#L920-L926 > Field 'SCORE' doesn't have a default value Perhaps not every single field in all tables should be `NOT NULL`?