Thread: XOR excryption

Results 1 to 5 of 5
  1. #1
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy

    XOR excryption

    well im trying to crypt some text.

    what is the password? or can someone dirrect me to a online crypter i can use

    steel o-o's sig =
    = Done , = Not Done

    Leecher 0 =
    Newbie 25 =
    Member 50 =
    Advanced Member 100 =
    H4X0R Member 150 =
    Dual-Keyboard Member 250 =
    Expert Member 500 =
    's Trainer 750 =
    MPGH Expert 1000 =
    Synthetic Hacker 1250 =
    Blackhat Hacker 1500 =
    Whitehat Hacker 2000 =
    's Guardian 2500 =
    Upcoming MPGHiean 3000 =
    MPGH Addict 3500 =
    MPGHiean 4000 =
    MPGH Knight 4500 =
    MPGH Lord 5000 =
    MPGH Champion 5500 =
    MPGH King 6000 =
    MPGH Legend 6500 =
    MPGH God 7000 =
    MPGH God II 7500 =
    MPGH God III 8000 =
    MPGH God IV 8500 =
    MPGH God V 9000 =
    Arun's Slave 9500 =
    Dave's Slave 10000 =

  2. #2
    LilGho$t's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    419
    Reputation
    9
    Thanks
    330
    My Mood
    Twisted
    There's a lovely .html file that encrypts words to xor for users. However, i recommend ciphering your strings. Much less likely to get detected in my opinion.
    Last edited by LilGho$t; 10-28-2012 at 11:55 AM.

  3. #3
    Saltine's Avatar
    Join Date
    Jun 2011
    Gender
    male
    Posts
    493
    Reputation
    104
    Thanks
    629
    If you understand how XOR works, you will be able to do it yourself quite simply.
    First you have a set of data, say an array of chars representing the string "lol". ['l','o','l']
    Then you have a key which is a number, possibly 17. Since Exclusive Or (XOR, ^) is a bitwise operator, you must look at the data in a binary sense. Exclusive or looks at 2 bits. If ONE of them is true, it is true, and if neither OR both are true, it is false. Here is a truth table to demonstrate:

    Now you need to convert each character in the array of strings to binary. To do so, you probably want to use an ASCII table to get the decimal, and then proceed to do a simple base-10 to base-2 conversion.
    "l" in binary is - 01101100
    "o" in binary is - 01101111
    17 in binary is - 00010001
    Now we want to use XOR between each bit of the character and each bit of the key for each character in the array.
    Code:
    01101100
    00010001
    XOR together  =  01111101
    So the crypted 'l' is now that binary value and its character equivalent.
    If you were to XOR that new value against the key again, it would return the original 'l'.
    Hope this helps a bit

    Oh no! Vortex is gay!

  4. The Following 2 Users Say Thank You to Saltine For This Useful Post:

    arun823 (10-28-2012),[MPGH]Flengo (10-28-2012)

  5. #4
    speedforyou's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Posts
    735
    Reputation
    -59
    Thanks
    108
    My Mood
    Happy
    sorry guys, i found what i was looking for...
    /close
    @.REZ, @BACKD00R, @Apeiron, @Sperm Bubble Boi

    steel o-o's sig =
    = Done , = Not Done

    Leecher 0 =
    Newbie 25 =
    Member 50 =
    Advanced Member 100 =
    H4X0R Member 150 =
    Dual-Keyboard Member 250 =
    Expert Member 500 =
    's Trainer 750 =
    MPGH Expert 1000 =
    Synthetic Hacker 1250 =
    Blackhat Hacker 1500 =
    Whitehat Hacker 2000 =
    's Guardian 2500 =
    Upcoming MPGHiean 3000 =
    MPGH Addict 3500 =
    MPGHiean 4000 =
    MPGH Knight 4500 =
    MPGH Lord 5000 =
    MPGH Champion 5500 =
    MPGH King 6000 =
    MPGH Legend 6500 =
    MPGH God 7000 =
    MPGH God II 7500 =
    MPGH God III 8000 =
    MPGH God IV 8500 =
    MPGH God V 9000 =
    Arun's Slave 9500 =
    Dave's Slave 10000 =

  6. #5
    [SMA] Paradise`'s Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    NOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOBNOOB
    Posts
    8,922
    Reputation
    1781
    Thanks
    3,049
    My Mood
    Amazed
    Quote Originally Posted by speedforyou View Post
    sorry guys, i found what i was looking for...
    /close
    @.REZ, @BACKD00R, @Apeiron, @Sperm Bubble Boi
    /Closed.

  7. The Following User Says Thank You to [SMA] Paradise` For This Useful Post:

    speedforyou (10-28-2012)

Similar Threads

  1. [Request] xor rohan
    By chinunk in forum Other MMORPG Hacks
    Replies: 1
    Last Post: 04-03-2012, 12:41 AM
  2. [Release] XOR Encryption Class
    By Saltine in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 19
    Last Post: 12-16-2011, 05:11 AM
  3. [Solved] Xor
    By KaossMp in forum Combat Arms BR Coding Help
    Replies: 7
    Last Post: 11-06-2011, 08:04 AM
  4. XOR Cracker
    By why06 in forum C++/C Programming
    Replies: 22
    Last Post: 10-25-2009, 04:26 AM
  5. XOR Encryptor
    By why06 in forum C++/C Programming
    Replies: 8
    Last Post: 10-17-2009, 12:03 AM