-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: PRT - IP leak on rest client connection refuse.
- Loading branch information
1 parent
a85f2ef
commit cbf6a4f
Showing
4 changed files
with
238 additions
and
18 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
import asyncio | ||
import aiohttp | ||
from aiohttp import web | ||
from functools import partial | ||
|
||
port_url_map = { | ||
5555: "http://localhost:1317", # Replace with actual target URLs | ||
5556: "http://localhost:26657", | ||
} | ||
|
||
async def proxy_handler(request, server_port): | ||
target_url = port_url_map.get(server_port) | ||
|
||
if not target_url: | ||
return web.Response(text=f"No target URL configured for port {server_port}", status=404) | ||
|
||
path = request.rel_url.path | ||
query_string = request.rel_url.query_string | ||
url = f"{target_url}{path}" | ||
if query_string: | ||
url += f"?{query_string}" | ||
|
||
print(f"Proxying request to: {url}") # Debug print | ||
print(f"Request headers: {request.headers}") # Debug print | ||
|
||
try: | ||
async with aiohttp.ClientSession() as session: | ||
method = request.method | ||
headers = {k: v for k, v in request.headers.items() if k.lower() not in ('host', 'content-length')} | ||
data = await request.read() | ||
|
||
async with session.request(method, url, headers=headers, data=data, allow_redirects=False) as resp: | ||
print(f"Response status: {resp.status}") # Debug print | ||
print(f"Response headers: {resp.headers}") # Debug print | ||
|
||
response = web.StreamResponse(status=resp.status, headers=resp.headers) | ||
await response.prepare(request) | ||
|
||
async for chunk, _ in resp.content.iter_chunks(): | ||
await response.write(chunk) | ||
print(f"Wrote chunk of size: {len(chunk)}") # Debug print | ||
|
||
await response.write_eof() | ||
return response | ||
|
||
except Exception as e: | ||
print(f"Error proxying request: {str(e)}") | ||
return web.Response(text=f"Error proxying request: {str(e)}", status=500) | ||
Check warning Code scanning / CodeQL Information exposure through an exception Medium Stack trace information Error loading related location Loading |
||
|
||
def create_app(port): | ||
app = web.Application() | ||
handler = partial(proxy_handler, server_port=port) | ||
app.router.add_route('*', '/{path:.*}', handler) | ||
return app | ||
|
||
async def run_app(app, port): | ||
runner = web.AppRunner(app) | ||
await runner.setup() | ||
site = web.TCPSite(runner, '0.0.0.0', port) | ||
await site.start() | ||
print(f"Server started on port {port}") | ||
return runner | ||
|
||
async def main(): | ||
runners = [] | ||
for port in port_url_map.keys(): | ||
app = create_app(port) | ||
runner = await run_app(app, port) | ||
runners.append(runner) | ||
|
||
print("Proxy server is running. Press Ctrl+C to stop.") | ||
try: | ||
await asyncio.Event().wait() | ||
except KeyboardInterrupt: | ||
print("Stopping server...") | ||
finally: | ||
for runner in runners: | ||
await runner.cleanup() | ||
|
||
if __name__ == '__main__': | ||
asyncio.run(main()) |
77 changes: 77 additions & 0 deletions
77
scripts/pre_setups/init_lava_only_with_node_with_python_proxy.sh
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
#!/bin/bash | ||
__dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) | ||
source "$__dir"/../useful_commands.sh | ||
. "${__dir}"/../vars/variables.sh | ||
|
||
LOGS_DIR=${__dir}/../../testutil/debugging/logs | ||
mkdir -p $LOGS_DIR | ||
rm $LOGS_DIR/*.log | ||
|
||
killall screen | ||
screen -wipe | ||
|
||
screen -d -m -S python_proxy bash -c "python3 ./scripts/automation_scripts/pure_proxy.py" | ||
|
||
echo "[Test Setup] installing all binaries" | ||
make install-all | ||
|
||
echo "[Test Setup] setting up a new lava node" | ||
screen -d -m -S node bash -c "./scripts/start_env_dev.sh" | ||
screen -ls | ||
echo "[Test Setup] sleeping 20 seconds for node to finish setup (if its not enough increase timeout)" | ||
sleep 5 | ||
wait_for_lava_node_to_start | ||
|
||
GASPRICE="0.00002ulava" | ||
lavad tx gov submit-legacy-proposal spec-add ./cookbook/specs/ibc.json,./cookbook/specs/cosmoswasm.json,./cookbook/specs/tendermint.json,./cookbook/specs/cosmossdk.json,./cookbook/specs/cosmossdk_45.json,./cookbook/specs/cosmossdk_full.json,./cookbook/specs/ethermint.json,./cookbook/specs/ethereum.json,./cookbook/specs/cosmoshub.json,./cookbook/specs/lava.json,./cookbook/specs/osmosis.json,./cookbook/specs/fantom.json,./cookbook/specs/celo.json,./cookbook/specs/optimism.json,./cookbook/specs/arbitrum.json,./cookbook/specs/starknet.json,./cookbook/specs/aptos.json,./cookbook/specs/juno.json,./cookbook/specs/polygon.json,./cookbook/specs/evmos.json,./cookbook/specs/base.json,./cookbook/specs/canto.json,./cookbook/specs/sui.json,./cookbook/specs/solana.json,./cookbook/specs/bsc.json,./cookbook/specs/axelar.json,./cookbook/specs/avalanche.json,./cookbook/specs/fvm.json --lava-dev-test -y --from alice --gas-adjustment "1.5" --gas "auto" --gas-prices $GASPRICE & | ||
wait_next_block | ||
wait_next_block | ||
lavad tx gov vote 1 yes -y --from alice --gas-adjustment "1.5" --gas "auto" --gas-prices $GASPRICE | ||
sleep 4 | ||
|
||
# Plans proposal | ||
lavad tx gov submit-legacy-proposal plans-add ./cookbook/plans/test_plans/default.json,./cookbook/plans/test_plans/temporary-add.json -y --from alice --gas-adjustment "1.5" --gas "auto" --gas-prices $GASPRICE | ||
wait_next_block | ||
wait_next_block | ||
lavad tx gov vote 2 yes -y --from alice --gas-adjustment "1.5" --gas "auto" --gas-prices $GASPRICE | ||
|
||
sleep 4 | ||
|
||
CLIENTSTAKE="500000000000ulava" | ||
PROVIDERSTAKE="500000000000ulava" | ||
|
||
PROVIDER1_LISTENER="127.0.0.1:2220" | ||
PROVIDER2_LISTENER="127.0.0.1:2221" | ||
|
||
lavad tx subscription buy DefaultPlan $(lavad keys show user1 -a) -y --from user1 --gas-adjustment "1.5" --gas "auto" --gas-prices $GASPRICE | ||
wait_next_block | ||
# lavad tx pairing stake-provider "LAV1" $PROVIDERSTAKE "$PROVIDER1_LISTENER,1" 1 $(operator_address) -y --from servicer1 --provider-moniker "dummyMoniker" --gas-adjustment "1.5" --gas "auto" --gas-prices $GASPRICE | ||
|
||
lavad tx pairing stake-provider "LAV1" $PROVIDERSTAKE "$PROVIDER2_LISTENER,1" 1 $(operator_address) -y --from servicer2 --provider-moniker "dummyMoniker" --gas-adjustment "1.5" --gas "auto" --gas-prices $GASPRICE | ||
|
||
sleep_until_next_epoch | ||
wait_next_block | ||
|
||
# screen -d -m -S provider1 bash -c "source ~/.bashrc; lavap rpcprovider \ | ||
# $PROVIDER1_LISTENER LAV1 rest '$LAVA_REST' \ | ||
# $PROVIDER1_LISTENER LAV1 tendermintrpc '$LAVA_RPC,$LAVA_RPC_WS' \ | ||
# $PROVIDER1_LISTENER LAV1 grpc '$LAVA_GRPC' \ | ||
# $EXTRA_PROVIDER_FLAGS --geolocation 1 --log_level trace --from servicer1 --chain-id lava --metrics-listen-address ":7776" 2>&1 | tee $LOGS_DIR/PROVIDER1.log" && sleep 0.25 | ||
|
||
screen -d -m -S provider2 bash -c "source ~/.bashrc; lavap rpcprovider \ | ||
$PROVIDER2_LISTENER LAV1 rest 'http://localhost:5555' \ | ||
$PROVIDER2_LISTENER LAV1 tendermintrpc 'http://localhost:5556,http://localhost:5556' \ | ||
$PROVIDER2_LISTENER LAV1 grpc '$LAVA_GRPC' \ | ||
$EXTRA_PROVIDER_FLAGS --geolocation 1 --log_level trace --from servicer2 --chain-id lava --metrics-listen-address ":7775" 2>&1 | tee $LOGS_DIR/PROVIDER2.log" && sleep 0.25 | ||
|
||
wait_next_block | ||
|
||
screen -d -m -S consumers bash -c "source ~/.bashrc; lavap rpcconsumer \ | ||
127.0.0.1:3360 LAV1 rest 127.0.0.1:3361 LAV1 tendermintrpc 127.0.0.1:3362 LAV1 grpc \ | ||
$EXTRA_PORTAL_FLAGS --geolocation 1 --log_level trace --from user1 --chain-id lava --add-api-method-metrics --allow-insecure-provider-dialing --metrics-listen-address ":7779" 2>&1 | tee $LOGS_DIR/CONSUMERS.log" && sleep 0.25 | ||
|
||
|
||
|
||
|
||
echo "--- setting up screens done ---" | ||
screen -ls |