Tuesday, September 25, 2012

VERY SIMPLE 1337day's EXPLOIT DATABASE DOWNLOAD

VERY SIMPLE 1337day's EXPLOIT DATABASE DOWNLOAD


Extrem Simple 5 Minute Code. Reads out the whole Database from 1337day and saves Exploits as .html File in a Folder of the Startup Path called \"1337day\". Code is created to reproduce and archive Exploits.

Future Possibilities : Need To create a own Indexable and fast Searchable Database. So we will also Profit from it, I'll try to talk With the Cores, staffs and programmers and implement that Database in our own Exploit Database.

Coding Language : VB.NET

Code:
Public Class Form1
 
    Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click
 
        Dim Exploit As Integer = 1
 
        Do Until WebBrowser1.DocumentTitle.StartsWith("Error 404")
            WebBrowser1.Navigate("http://1337day.com/exploits/" + Exploit.ToString)
            If Not System.IO.Directory.Exists(My.Application.Info.DirectoryPath + "/1337day/") Then
                System.IO.Directory.CreateDirectory(My.Application.Info.DirectoryPath + "/1337day/")
            End If
 
            My.Computer.Network.DownloadFile("http://1337day.com/exploits/" + Exploit.ToString, String.Format("{0}/1337day/{1}.html", My.Application.Info.DirectoryPath, Exploit))
 
            Exploit += 1
        Loop
 
    End Sub
End Class