Skip to content

Commit 3c3a119

Browse files
author
Alexei Bezborodov
committed
Изменение длины слова от 8 до 24
1 parent 353d298 commit 3c3a119

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

obfuscator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def Obfuscator(in_file):
216216

217217
rand_matches = []
218218
for m in key_word_matches:
219-
rand_matches += [MakeRandomName(16)]
219+
rand_matches += [MakeRandomName(random.choice(range(8, 24)))]
220220

221221
f = open(in_file+".map.txt", 'wb')
222222
for i in range(len(key_word_matches)):

0 commit comments

Comments
 (0)