Support Forums
Post your CTRL+V. - Printable Version

+- Support Forums (https://www.supportforums.net)
+-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87)
+--- Forum: Life Support (https://www.supportforums.net/forumdisplay.php?fid=12)
+---- Forum: Omni's Secret Hidden Inside Tricks (https://www.supportforums.net/forumdisplay.php?fid=13)
+----- Forum: Fun Forum Games (https://www.supportforums.net/forumdisplay.php?fid=76)
+----- Thread: Post your CTRL+V. (/showthread.php?tid=159)



RE: Post your CTRL+V. - Sir - 12-22-2010

AskMe@For.It


RE: Post your CTRL+V. - xerotic - 12-22-2010

http://www.harveycartel.org/metanet/n_v1pc.zip


RE: Post your CTRL+V. - Logan - 12-22-2010

I swear when I get my liscense I'm buying a gorilla costume and were going to Walmart and were just gonna mess with people.



RE: Post your CTRL+V. - Pyratepig - 12-22-2010

Was coding at the time.~

Code:
Public Shared Function rc4(ByVal message As String, ByVal password As String) As String

        Dim i As Integer = 0
        Dim j As Integer = 0
        Dim cipher As New StringBuilder
        Dim returnCipher As String = String.Empty

        Dim sbox As Integer() = New Integer(256) {}
        Dim key As Integer() = New Integer(256) {}

        Dim intLength As Integer = password.Length

        Dim a As Integer = 0
        While a <= 255

            Dim ctmp As Char = (password.Substring((a Mod intLength), 1).ToCharArray()(0))

            key(a) = Microsoft.VisualBasic.Strings.Asc(ctmp)
            sbox(a) = a
            System.Math.Max(System.Threading.Interlocked.Increment(a), a - 1)
        End While

        Dim x As Integer = 0

        Dim b As Integer = 0
        While b <= 255
            x = (x + sbox(b) + key(b)) Mod 256
            Dim tempSwap As Integer = sbox(b)
            sbox(b) = sbox(x)
            sbox(x) = tempSwap
            System.Math.Max(System.Threading.Interlocked.Increment(b), b - 1)
        End While

        a = 1

        While a <= message.Length

            Dim itmp As Integer = 0

            i = (i + 1) Mod 256
            j = (j + sbox(i)) Mod 256
            itmp = sbox(i)
            sbox(i) = sbox(j)
            sbox(j) = itmp

            Dim k As Integer = sbox((sbox(i) + sbox(j)) Mod 256)

            Dim ctmp As Char = message.Substring(a - 1, 1).ToCharArray()(0)

            itmp = Asc(ctmp)

            Dim cipherby As Integer = itmp Xor k

            cipher.Append(Chr(cipherby))
            System.Math.Max(System.Threading.Interlocked.Increment(a), a - 1)
        End While

        returnCipher = cipher.ToString
        cipher.Length = 0

        Return returnCipher

    End Function



RE: Post your CTRL+V. - TriGz - 12-22-2010

545496000016

Lol, I honestly don't know what that is.


RE: Post your CTRL+V. - Cobalt - 12-22-2010

Q. What do you call a man with no arms or legs that can swim across a pool?
A. Clever Dick


RE: Post your CTRL+V. - Project- - 12-23-2010

# NES
# Sega Genesis
# Gameboy Colour
# PS1
# PS2
# Gameboy Advance
# PSP
# PS3
# (I don't know where PC would stand)


RE: Post your CTRL+V. - Peter L - 12-23-2010

Nassau Coliseum


RE: Post your CTRL+V. - apoC - 12-23-2010

http://www.hackforums.net/showthread.php?tid=731431

Thats mine Oo


RE: Post your CTRL+V. - SleepyTroll - 12-23-2010

ಠ_ಠ

LOL was trollin on chatroulette XD