Skip to content

Commit

Permalink
fix critical bug that uses a wrong username
Browse files Browse the repository at this point in the history
  • Loading branch information
gogo2464 committed Nov 16, 2024
1 parent 5098b2f commit d749c8c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions bins/measure.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ def main():
print("pass {0}/{1} executed".format(i, repeats))
for c in characters:
data = {
'username': 'AAAAAAAA'.format(c), #openai
'password': '{0}AAAAAAA' #isCloseAi
'username': "openai", #openai
'password': "{0}AAAAAAA".format(c) #isCloseAi
}

print("requesting")
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "modular_time_fuzzer"
version = "0.0.5"
version = "0.0.6"
authors = [
{ name="gogo246475", email="[email protected]" },
]
Expand All @@ -18,8 +18,8 @@ dependencies = [
]

[project.urls]
Homepage = "https://github.com/pypa/sampleproject"
Issues = "https://github.com/pypa/sampleproject/issues"
Homepage = "https://github.com/gogo2464/modular-time-fuzzer/"
Issues = "https://github.com/gogo2464/modular-time-fuzzer/issues/"

[project.scripts]
measure = "bins.measure:main"
Expand Down

0 comments on commit d749c8c

Please sign in to comment.