Add --no-fireprox flag for direct connection mode#98
Open
altjx wants to merge 1 commit intoknavesec:masterfrom
Open
Add --no-fireprox flag for direct connection mode#98altjx wants to merge 1 commit intoknavesec:masterfrom
altjx wants to merge 1 commit intoknavesec:masterfrom
Conversation
Implemented the --no-fireprox flag that allows users to bypass AWS API Gateway (FireProx) and connect directly to targets. This feature provides flexibility for users who don't need IP rotation or don't have AWS credentials configured. Changes: - Added --no-fireprox CLI argument to fireprox utility options - Modified parse_all_args() to handle no_fireprox configuration - Updated do_input_error_handling() to skip AWS credential validation when --no-fireprox is enabled - Modified load_apis() to create direct connection entries instead of FireProx API gateways when flag is set - Updated destroy_apis() to skip API cleanup in direct mode - Enhanced display_stats() to show "Direct Connection" mode info When enabled, the tool will: - Connect directly to the target URL without creating AWS API Gateways - Display warning that requests originate from user's IP address - Skip AWS credential requirements - Skip API cleanup steps 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
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.
Summary
This PR adds a
--no-fireproxflag that allows users to avoid AWS API Gateway (FireProx) and connect directly to target endpoints.Why this feature?
CredMaster's core value proposition is evasive password spraying via FireProx IP rotation - and that remains the recommended approach for most use cases. However, there are legitimate scenarios where direct connections are preferable:
Rather than requiring users to fork and modify the codebase for these use cases, this flag provides a simple opt-in escape hatch while preserving FireProx as the default behavior.
Changes
--no-fireproxCLI flag (also supported in config files as"no_fireprox": true)Usage
A warning is displayed when using this mode to remind users that all requests will originate from their IP address.