Skip to content

Commit

Permalink
Fix for PS2 function name issue #169
Browse files Browse the repository at this point in the history
  • Loading branch information
Hubbl3 committed Apr 15, 2020
1 parent 79e77d2 commit f833dfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup/setup_database.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@
"Invoke_Mimikatz" text
)''')

rand1 = ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(5))
rand2 = ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(5))
rand1 = random.choice(string.ascii_uppercase) + ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(4))
rand2 = random.choice(string.ascii_uppercase) + ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(4))
c.execute("INSERT INTO functions VALUES(?,?)", (rand1, rand2))

# commit the changes and close everything off
Expand Down

0 comments on commit f833dfb

Please sign in to comment.