Guest Praetorian Posted October 8, 2009 Report Posted October 8, 2009 (edited) Personal Text to Hexadecimal c0de.breaker[at]insecurity[dot]ro[COLOR="White"]Download link:[/COLOR] [COLOR="YellowGreen"]http://www.megaupload.com/?d=U7X0HXYG[/COLOR][COLOR="White"]Password:[/COLOR] [COLOR="YellowGreen"]www.insecurity.ro[/COLOR][COLOR="White"]Download link:[/COLOR] [COLOR="YellowGreen"]http://rapidshare.com/files/290302851/1337h3x.rar.html[/COLOR] Edited October 8, 2009 by Praetorian Quote
Rechinu Posted October 8, 2009 Report Posted October 8, 2009 da...foarte fain..dar ..un buton cu "Exit" nu se putea? ca trebuie sa ii dau Ctrl+Alt+Delete sa ii opresc procesul...altfel nu pot opri aplicatia Quote
Guest Praetorian Posted October 8, 2009 Report Posted October 8, 2009 This is V.1 Maybe will be V.2! Quote
cmiN Posted October 9, 2009 Report Posted October 9, 2009 Pune-i si optiunea de a transforma din hex inapoi in plain text ... sau nu se poate pentru ca la un moment aduni totul intr-o chestie si nu mai poti tine cont de fiecare caracter in parte ? Oricum incerc ceva in Python sa-l "sparga" .EDIT: Mda ... Python Power:#! /usr/bin/env python3.1# 9.10.2009 <> 9.10.2009 | cmiN# Script simplu ce converteste "1337c0de"-ul lui TinKode (hex to txt)def main(): hex_input = input("Introdu valoarea hexadecimala: ") hex_input = hex_input.replace("0x", "") plain_output = "" while len(hex_input) != 0: hex_char = hex_input[0:2] hex_input = hex_input[2:] plain_output += chr(int(hex_char, 16)) print(plain_output) input()if __name__ == "__main__": main()Python v3.1.1P.S.: Ori e mai mult pentru interfata ori ai avut vreun scop malefic ceva in legatura cu creerea acestui soft. Oricum GJ. Quote