Skip to content
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

Sensitive data does not work on controller log #713

Closed
john-the-dev opened this issue Feb 13, 2025 · 0 comments · Fixed by #724
Closed

Sensitive data does not work on controller log #713

john-the-dev opened this issue Feb 13, 2025 · 0 comments · Fixed by #724
Labels
bug Something isn't working

Comments

@john-the-dev
Copy link

Bug Description

When I tried to use sensitive data when creating an agent, I found that agent log properly masked the sensitive data but not controller.

I searched the source code, it seems this is the location where sensitive data is not checked:

https://github.com/browser-use/browser-use/blob/main/browser_use/controller/service.py#L137

Image

Reproduction Steps

Run examples/features/sensitive_data.py and you should see controller log still shows something like this in which xxxxxxxxxxxx is the sensitive data such as password:

INFO [controller] ⌨️ Input xxxxxxxxxxxxx into index 3

Code Sample

import asyncio

from dotenv import load_dotenv
from langchain_openai import ChatOpenAI

from browser_use import Agent

load_dotenv()

# Initialize the model
llm = ChatOpenAI(
	model='gpt-4o',
	temperature=0.0,
)
# the model will see x_name and x_password, but never the actual values.
sensitive_data = {'discord_name': '[email protected]', 'discord_password': 'jsedNxde@3'}
task = 'go to discord.com and login with discord_name and discord_password then find interesting posts and like them'

agent = Agent(task=task, llm=llm, sensitive_data=sensitive_data)


async def main():
	await agent.run()


if __name__ == '__main__':
	asyncio.run(main())

Version

0.1.37

LLM Model

GPT-4o

Operating System

macOS 14.5

Relevant Log Output

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant