sysopfb

Untitled

Dec 19th, 2018
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. >>> def decode(a):
  2. ... a = bytearray(a)
  3. ... for i in range(len(a)):
  4. ... a[i] -= 1
  5. ... print(a)
  6.  
  7.  
  8. >>> test = "BCDEF=XJO8.Y75.DVDLPP&MNOPQ=Xjoepxt!8!Qspgfttjpobm&GHIJ=vtfs&UVWXYZ=XJO8.Y75.DVDLPP$$vtfsAAgc31bb63.2fd:.5e2g.c:34.g781:5::f715&st=0"
  9.  
  10. >>> test = test.split('&')
  11. >>> for val in test:
  12. ... decode(val.split('=')[1])
  13. ...
  14. WIN7-X64-CUCKOO
  15. Windows 7 Professional
  16. user
  17. WIN7-X64-CUCKOO##user@@fb20aa52-1ec9-4d1f-b923-f6709499e604
  18. /
Advertisement
Add Comment
Please, Sign In to add comment