Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1 from sherobbedmyboots/sherobbedmyboots-patch-1
Browse files Browse the repository at this point in the history
make current processes lowercase
  • Loading branch information
sherobbedmyboots authored Sep 16, 2017
2 parents f31d9ca + faeb0c9 commit 05d7d06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/Evasion/evasion_common/gamemaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ def senecas_games(evasion_payload):
check_code += '\t' * num_tabs_required + '_, ' + current_processes + ' = win32pdh.EnumObjectItems(None,None,\'process\', win32pdh.PERF_DETAIL_WIZARD)\n'
check_code += '\t' * num_tabs_required + 'for ' + process + ' in ' + current_processes + ':\n'
check_code += '\t' * num_tabs_required + '\tfor ' + sandbox_proc + ' in ' + bad_procs + ':\n'
check_code += '\t' * num_tabs_required + '\t\tif ' + sandbox_proc + ' in str(' + process + '):\n'
check_code += '\t' * num_tabs_required + '\t\tif ' + sandbox_proc + ' in str(' + process + '.lower()):\n'
check_code += '\t' * num_tabs_required + '\t\t\t' + sandbox_exist + '.append(' + process + ')\n'
check_code += '\t' * num_tabs_required + '\t\t\tbreak\n'
check_code += '\t' * num_tabs_required + 'if not ' + sandbox_exist + ':\n'
Expand Down

0 comments on commit 05d7d06

Please sign in to comment.