-
Notifications
You must be signed in to change notification settings - Fork 122
feat(tasks): add nc integration for port scanning and banner grabbing #861
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the Note Free review on us!CodeRabbit is offering free reviews until Wed Dec 17 2025 to showcase some of the refinements we've made. Comment |
Co-authored-by: ocervell <9629314+ocervell@users.noreply.github.com>
Co-authored-by: ocervell <9629314+ocervell@users.noreply.github.com>
|
@copilot reduce code duplication for Port yielding, and also yield Tags for eventual banners found. Use nc <IP/HOST> -v -t -C -w 5 for the command, add option to configure the timeout. |
|
@copilot also send 'hello' to automatically grab banners that require input like: echo 'hello' | nc <IP/HOST> -v -t -C -w 5 |
Co-authored-by: ocervell <9629314+ocervell@users.noreply.github.com>
Done in 75b0d2e. Changes made:
Example output with banner grabbing: |
…re input Co-authored-by: ocervell <9629314+ocervell@users.noreply.github.com>
Done in 0406061. Changed from Command now executes as: bash -c "echo 'hello' | nc -v 127.0.0.1 -w 1 22 2>&1"Verified to still capture SSH banners correctly. |
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.