Skip to content

Commit

Permalink
adding scam theme a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
SirGankalot committed Jun 19, 2024
1 parent 7150afc commit 2977825
Show file tree
Hide file tree
Showing 3 changed files with 1,900 additions and 0 deletions.
21 changes: 21 additions & 0 deletions checker/src/checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#exploit 3
from Crypto.PublicKey import RSA
from Crypto.Hash import HMAC, SHA256
from . import scam_messages



Expand Down Expand Up @@ -829,6 +830,26 @@ async def havoc_0(
await checker_util_func.profile_get_private_key(client, logger)
except:
raise MumbleException("Could not get private key")

#for the scam theme -> notes for private messages
@checker.havoc(1)
async def havoc_1(
task: HavocCheckerTaskMessage,
db: ChainDB,
client: AsyncClient,
logger: LoggerAdapter,
) -> None:
try:
email_1, password1_1 = await checker_util_func.create_user_backup(client, logger, public_key=None)
except:
raise MumbleException("Could not create user 1")
for i in range(0, 20):
message = scam_messages.get_scam_message()
try:
response = await checker_util_func.create_note(client, logger, message, None)
except:
raise MumbleException("Could not create note")


if __name__ == "__main__":
checker.run()
Loading

0 comments on commit 2977825

Please sign in to comment.