Skip to content

Commit

Permalink
Close TCP connector at the end
Browse files Browse the repository at this point in the history
  • Loading branch information
y0k4i-1337 committed May 23, 2024
1 parent 6f42268 commit b6fec67
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions copy-as-python-aiohttp/src/main/java/burp/ReqParser.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ public String asPasswordSprayingTemplate() {
sb.append("if __name__ == '__main__':\n");
sb.append(Utility.indent(1) + "loop = asyncio.get_event_loop()\n");
sb.append(Utility.indent(1) + "loop.run_until_complete(main())\n");
sb.append(Utility.indent(1) + "conn.close()\n");
return sb.toString();
}

Expand Down

0 comments on commit b6fec67

Please sign in to comment.