Skip to content

Commit

Permalink
adding small changes for better usage of service
Browse files Browse the repository at this point in the history
  • Loading branch information
SirGankalot committed Jun 23, 2024
1 parent 0c8830e commit 340eb38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions exploit/ping.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

address = "http://localhost:9696/"
THREADS = 100
spam = False
spam = False
if spam:
THREADS = 1

Expand Down Expand Up @@ -44,7 +44,7 @@ def register():
password2 = password1
public_key = "on"
#public_key = "None"
data = {'email': email, 'name': name, 'public_key': public_key,
data = {'email': email, 'firstName': name, 'public_key': public_key,
'password1': password1, 'password2': password2}
data['vendor_lock'] = 'on'
data['never_full'] = 'on'
Expand Down
2 changes: 1 addition & 1 deletion service/src/templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ <h1 align="center">Private Messages</h1>
{% endfor %}
</ul>
<form method="POST">
<textarea name="message" id="message" class="form-control"></textarea>
<textarea name="message" id="message" class="form-control" placeholder="Enter your Message"></textarea>
<br />
<input type="text" name="public_key" id="public_key" class="form-control" placeholder="Enter Public Key to send encrypted message to the owner of the key">
<br />
Expand Down

0 comments on commit 340eb38

Please sign in to comment.