Jump to content

Search the Community

Showing results for tags 'obfuscate'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Informatii generale
    • Anunturi importante
    • Bine ai venit
    • Proiecte RST
  • Sectiunea tehnica
    • Exploituri
    • Challenges (CTF)
    • Bug Bounty
    • Programare
    • Securitate web
    • Reverse engineering & exploit development
    • Mobile security
    • Sisteme de operare si discutii hardware
    • Electronica
    • Wireless Pentesting
    • Black SEO & monetizare
  • Tutoriale
    • Tutoriale in romana
    • Tutoriale in engleza
    • Tutoriale video
  • Programe
    • Programe hacking
    • Programe securitate
    • Programe utile
    • Free stuff
  • Discutii generale
    • RST Market
    • Off-topic
    • Discutii incepatori
    • Stiri securitate
    • Linkuri
    • Cosul de gunoi
  • Club Test's Topics
  • Clubul saraciei absolute's Topics
  • Chernobyl Hackers's Topics
  • Programming & Fun's Jokes / Funny pictures (programming related!)
  • Programming & Fun's Programming
  • Programming & Fun's Programming challenges
  • Bani pă net's Topics
  • Cumparaturi online's Topics
  • Web Development's Forum
  • 3D Print's Topics

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber


Skype


Location


Interests


Occupation


Interests


Biography


Location

Found 1 result

  1. Din pricina faptului ca nu am gasit prea multe exemple pe internet, si eram curios daca poti rula cod python obfuscated pentru ca cere indentare, am scris script-ul asta inspirandu-ma de aici. Folosind aceasta metoda este posibil sa stochezi codul si intr-o baza de date. import base64 def encode(key, string): encoded_chars = [] for i in xrange(len(string)): key_c = key[i % len(key)] encoded_c = chr(ord(string[i]) + ord(key_c) % 256) encoded_chars.append(encoded_c) encoded_string = "".join(encoded_chars) return base64.urlsafe_b64encode(encoded_string) def decode(key, string): decoded_chars = [] decoded_string = base64.b64decode(string, '-_') for i in xrange(len(decoded_string)): key_c = key[i % len(key)] decoded_c = chr(ord(decoded_string[i]) - ord(key_c) % 256) decoded_chars.append(decoded_c) decoded_string = "".join(decoded_chars) return decoded_string creator = "yo20063" code = "g9ubo6SXU7bKVHiZYlObm1JSeV2gm5tSV5-Yme7ilZGkm5ealo86lqWlmdhSmZ5Wn-LippFqQFOZj1Kgop-h7Y-b" if __name__ == "__main__": exec(decode(creator, code))
×
×
  • Create New...