Tags: programming python 

Rating:

```
from pwn import *
values = {'a': 0, 'b': 1, 'c': 2, 'd': 3, 'e': 4, 'f': 5, 'g': 6, 'h': 7, 'i': 8, 'j': 9, 'k': 10, 'l': 11, 'm': 12,
'n': 13, 'o': 14, 'p': 15, 'q': 16, 'r': 17, 's': 18, 't': 19, 'u': 20, 'v': 21, 'w': 22, 'x': 23, 'y': 24, 'z': 25}

# write a script to generate the above dictionary, don't be a skiddy

with remote('code.deadface.io', 50000) as conn:

rec = conn.recv()
word = rec.split()[-1].decode('utf-8')
s = sum([values[v] for v in word])
conn.send(str(s))
rec = conn.recv()
print(rec)

```