-

@ SubconsciousErosion_0x0
2023-07-13 18:36:26
# test
# This is an example of the grocery list method
# The asset makes a grocery list to tell the handler what ammunition capabilities the target has readily available
# Items should be common enough for the area
import random
import string
import time
def encrypt_word(word):
rules = {
'grenades': 'eggs',
'rockets': 'bananas',
'IED': 'dragonfruit',
'missiles': 'cucumbers',
'semi-automatics': 'peas',
'lasers': 'chili-peppers',
'armor': 'coconut',
# Add more word substitutions here
'': '',
'': '',
'': '',
'': '',
'': '',
'': '',
'': '',
'': '',
'': '',
}
# Apply word substitutions
if word in rules:
encrypted_word = rules[word]
else:
encrypted_word = word
return encrypted_word
def encrypt_list_items(items):
encrypted_items = []
for item in items:
encrypted_item = encrypt_word(item)
encrypted_items.append(encrypted_item)
return encrypted_items
items = input("Enter list items separated by a comma: ").split(',')
items = [item.strip() for item in items]
encrypted_items = encrypt_list_items(items)
print("Encrypted Grocery List:")
for item in encrypted_items:
print(item)
Enter list items separated by a comma:
rockets, grenades, armor, IED, semi-automatics
Encrypted Grocery List:
bananas
eggs
coconut
dragonfruit
peas
** Process exited - Return Code: 0 **
Press Enter to exit terminal