Guest User

Cybercrime Challange #11

a guest
Mar 22nd, 2013
352
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. Stuck with the cybercrime challenge 2013 (0x7dd) - You found out that Vultura is there but now it's harder?
  2.  
  3. Here is the solution for question number 11.
  4.  
  5. Did you get the answer of the BOT in the channel?
  6. You noticed this is a base64 encoded string but if you decode it you get all garbage.
  7.  
  8. This is were crypto comes in place, but for crypto to work you need a password.
  9. The password is encrypted in the memory.raw, to retrieve it you need some difficult tools like volatilitux. In order for volatilitux to work you need to create a profile which can be hard.
  10.  
  11. The answer of question 11 is not found on the internet because it changes constantly.
  12.  
  13. Therefor I made the following perl script that can decrypt it successfully for you
  14.  
  15. You need to go the directory where you have placed the file 'crypto' and 'memory.raw'
  16. And run the following command:
  17.  
  18. SEARCHIN=memory.raw
  19. CRYPTOFILE=crypto
  20. perl -e "$(echo -n 'QlpoOTFBWSZTWe9xM1QAATWfgFx14d8q+/8EP+/fqzABazNkGqehACabUGTENDQGQ0DTajQDSZRiYhQ8p+oBNAwQwACek9QSSTJok/VPTCmammj0gyAAGIBpAmmtYGJ42Jw9wkE5hQTM5mlBY3N6aXakfm4Yn+51eYHEWyyBYw9/Axy0ItgbD+vqygk9u1shA+TndZ0nZMJj+GqsZovSekZ2A0sjUyDRjc2t1McOzthY2avvmWP9+/R9JcXYP8k2ZrdZetNpkgyTN5xBcqn8TJoI+vXBihcc1VTz4rDbag6uCRmMLHUCJyAjyWjCLA9aIQyym8rAFziO8Fq+S+QRpYqynoRcAeZ2lliIDcFvgIiIfTBuHe0GH5SYqQ+ykbN75mYwYFlq33EpEEUPtqAzdSdwx5agKROshXRGi6W6N5OKds8hKpi0IVuvosiTmpgjuSbehZvowjPiQ/FEIwHMJm4CWUDuHSrlxTTTJUSKbMtThWCvVNZiBPZ+0G6cxQdQrBCseJEkqjW9RqFcIm4PVKqMb6Q4nAILW1PWvGRGBr/xdyRThQkO9xM1QA==' | base64 -d | bzip2 -d)"
  21.  
  22. Make sure the whole perl line is on one line !
  23.  
  24. This perl line will search for a specific string in the memory and use crypto to decrypt it and run it directory through base64 decoding so you can read the message.
  25.  
  26. Hope you solve question 11 with this !.
Advertisement
Add Comment
Please, Sign In to add comment