The Hacker Project - a free online game

General Category => HP History => Topic started by: JPCS5917 on April 09, 2009, 12:19:13 PM



Title: Hacker-Project Tool
Post by: JPCS5917 on April 09, 2009, 12:19:13 PM
Hi ppl!

One of my hobbies is programming and I recently created a tool for HP players.Feel free to download at http://jpcs.250free.com/Downloads/Hacker-Project%20Tool.exe .


Title: Re: Hacker-Project Tool
Post by: Donn on April 09, 2009, 12:52:25 PM
Could you perhaps explain first what this tool is used for?


Title: Re: Hacker-Project Tool
Post by: Triadian on April 09, 2009, 12:59:00 PM
Hi ppl!

One of my hobbies is programming and I recently created a tool for HP players.Feel free to download at http://jpcs.250free.com/Downloads/Hacker-Project%20Tool.exe .

also please zip it up and have the source code available so that we can see what it will be doing behind our backs.


Title: Re: Hacker-Project Tool
Post by: Araeus on April 09, 2009, 02:04:05 PM
Yeah, I'd like to see the source before I run it  :5:


Title: Re: Hacker-Project Tool
Post by: jager on April 09, 2009, 03:01:51 PM
I checked it - some tools for calculating resources for different software versions, HPD calculator for bought/needed hardware and such... nothing illegal as far as i can see.


Title: Re: Hacker-Project Tool
Post by: JPCS5917 on April 09, 2009, 05:44:21 PM
Lol I used a obfuscator to hide the code...If I show you the code you will see my email and password lol.


Title: Re: Hacker-Project Tool
Post by: gs 059 on April 10, 2009, 12:29:51 AM
Lol I used a obfuscator to hide the code...If I show you the code you will see my email and password lol.

wich means that youcould have used it to hide the part where it takes our email and passwords and sends them to you?


Title: Re: Hacker-Project Tool
Post by: virus man on April 10, 2009, 01:39:46 AM
Lol I used a obfuscator to hide the code...If I show you the code you will see my email and password lol.

Why would your login info still be in the code if you release it to the public?


Title: Re: Hacker-Project Tool
Post by: JPCS5917 on April 10, 2009, 05:00:31 AM
The mail is for the "mail programmer" function.A e-mail me function lol.


Title: Re: Hacker-Project Tool
Post by: siremi on April 10, 2009, 01:15:16 PM
The mail is for the "mail programmer" function.A e-mail me function lol.

As far as I know, you don't need your email pass in order to send an email.

That email function should be taken out, as it looks suspicious when the software accesses the internet on it's own. Most will have firewalls that will prevent your program from accessing the internet and it's unlikely that the email will arrive. Instead, you can pop a message with your email when the bug hits, and instruct the user to email you the bug details.


Title: Re: Hacker-Project Tool
Post by: JPCS5917 on April 10, 2009, 06:00:09 PM
Imports System.Web
Imports System.IO
Imports System.Net.Mail

Public Class Bug

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        If TextBox1.Text = "" Then
            MsgBox("The from field is not filled in!", MsgBoxStyle.OkOnly, "Error")
            Exit Sub
        End If
        ProgressBar1.Value = 20
        Dim mail As New System.Net.Mail.MailMessage()
        Dim SmtpServer As New SmtpClient
        ProgressBar1.Value = 40
        SmtpServer.Credentials = New Net.NetworkCredential("(my mail)", "(my password)")
        SmtpServer.Port = 587
        SmtpServer.Host = "smtp.gmail.com"
        SmtpServer.EnableSsl = True
        mail.To.Add("(my mail)")
        mail.From = New MailAddress("(my mail)")
        mail.Subject = "Hacker-Project Tool - " & ComboBox1.SelectedItem
        mail.Body = "Message from: " & TextBox1.Text & vbNewLine & RichTextBox1.Text
        ProgressBar1.Value = 60
        SmtpServer.Send(mail)
        ProgressBar1.Value = 100
        MsgBox(ComboBox1.SelectedItem & " sent!", MsgBoxStyle.OkOnly, ComboBox1.SelectedItem)
    End Sub
End Class


Title: Re: Hacker-Project Tool
Post by: siremi on April 10, 2009, 06:37:51 PM
It's funny that you need to open your mailbox in order to add a new message. That's not really sending mail, it's more like injecting a mail directly into your inbox.

You can always use predefined smtp classes to send anonymous mails to your mailbox, but I suggest you just pass the email to the user and let them take care of the sending of bugs.


Title: Re: Hacker-Project Tool
Post by: jager on April 12, 2009, 01:00:29 PM
There are almost no SMTP servers anymore that allows sending mail without prior authorisation. That is all he is doing - authorizing to the server before sending mail ...


Title: Re: Hacker-Project Tool
Post by: Adramalech on April 19, 2009, 01:30:26 AM
for the source code, as its is .net, you can use the program 'reflector',