[ create a new paste ] login | about

Link: http://codepad.org/6k5Ezf3V    [ raw code | output | fork ]

ramandi - Python, pasted on Aug 11:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#https://hackit2014.marcansoft.com/hackit/2/check?password=%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00%00

a='72979910710110095671041144810951959510188116101110115105111110'
b=[]
while a!='':
 if(a[0]!='1'):
  b.append(int(a[:2]))
  a=a[2:]
 else:
  b.append(int(a[:3]))
  a=a[3:]

p=''
for c in b:
 p+=chr(c)

print p


Output:
1
Hacked_Chr0m3__eXtension


Create a new paste based on this one


Comments: