Skip to content

Commit

Permalink
fix another hanto-reported bug!
Browse files Browse the repository at this point in the history
  • Loading branch information
zardus committed Sep 2, 2024
1 parent 1226489 commit e2faa5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web-security/xss-exfil-cookie/victim
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ browser.get(challenge_url)

print("Logging in as admin...")
browser.find_element(By.NAME, "username").send_keys("admin")
browser.find_element(By.NAME, "password").send_keys(flag)
browser.find_element(By.NAME, "password").send_keys(flag[-10:])
browser.find_element(By.NAME, "submit").submit()

time.sleep(5)
Expand Down

0 comments on commit e2faa5d

Please sign in to comment.