Cyber Security | Ethical Hacking | Pentesting Lab | Vulnhub | Walkthrough | Fristileaks

Описание к видео Cyber Security | Ethical Hacking | Pentesting Lab | Vulnhub | Walkthrough | Fristileaks

Pentesting Lab Exercises Series - Vulnhub
Virtual Machine Name: FristiLeaks: 1.3
Link: https://www.vulnhub.com/entry/fristil...
Tips:
1. Complete walkthrough for Fristileaks machine.
2. The following python script was used to decrypt data:
import base64,codecs,sys

def decryptString(encrypted_password):
res1=codecs.encode(encrypted_password, 'rot13')
res2=res1[::-1]
res3=base64.b64decode(res2)

return res3

decryptResult=decryptString(sys.argv[1])
print(decryptResult)

Комментарии

Информация по комментариям в разработке