Fixes issue/remove cli (#3447)#3463
Merged
zinduolis merged 2 commits intobeefproject:masterfrom Dec 22, 2025
Merged
Conversation
zinduolis
approved these changes
Dec 22, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
#3447
Pull Request
Category
Refactoring
Feature/Issue Description
Q: Please give a brief summary of your feature/fix
A: This PR removes the remaining traces of the deprecated BeEF interactive console CLI (Issue #3447) while keeping the startup CLI used to launch the application intact.
Q: Give a technical rundown of what you have changed (if applicable)
A:
Based on the Wiki and codebase investigation, BeEF has two different meanings of “Console”:
(A) the startup CLI used to configure and launch BeEF
(B) a deprecated metasploit-style interactive console
This change only targets (B). After inspecting core/main/console and searching the entire project, the only remaining references to the interactive console were found in core/main/console/commandline.rb. Specifically, this PR removes:
No other interactive console-related code or references were found in the repository.
Test Cases
Q: Describe your test cases, what you have covered and if there are any use cases that still need addressing.
A: Ran the full test suite using bundle exec rake --all