The Hacker Project - a free online game

April 24, 2024, 02:54:47 AM
Welcome, Guest. Please login or register.

Login with username, password and session length











"Trust your technolust!"
Pages: [1]
Print
Author Topic: Hacker-Project Tool  (Read 6895 times)
JPCS5917
Newbie
*
Posts: 8


View Profile Email
« 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 .
Logged
Donn
Sr. Member
****
Posts: 423


View Profile Email
« Reply #1 on: April 09, 2009, 12:52:25 PM »

Could you perhaps explain first what this tool is used for?
Logged
Triadian
Select Member
Hero Member
*****
Posts: 546


Guilty as charged


View Profile Email
« Reply #2 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.
Logged
Araeus
Sr. Member
****
Posts: 447



View Profile Email
« Reply #3 on: April 09, 2009, 02:04:05 PM »

Yeah, I'd like to see the source before I run it  5
Logged

jager
Sr. Member
****
Posts: 284



View Profile WWW Email
« Reply #4 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.
Logged
JPCS5917
Newbie
*
Posts: 8


View Profile Email
« Reply #5 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.
Logged
gs 059
Sr. Member
****
Posts: 357


View Profile
« Reply #6 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?
Logged

virus man
Hero Member
*****
Posts: 985


View Profile WWW
« Reply #7 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?
Logged

SGP is opening their forums for all.  From now on all Tutorials and Help files that SGP releases will be available there.

SGP's Forums.

New World Order
JPCS5917
Newbie
*
Posts: 8


View Profile Email
« Reply #8 on: April 10, 2009, 05:00:31 AM »

The mail is for the "mail programmer" function.A e-mail me function lol.
Logged
siremi
Administrator
Hero Member
*****
Posts: 1099



View Profile WWW Email
« Reply #9 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.
Logged

JPCS5917
Newbie
*
Posts: 8


View Profile Email
« Reply #10 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
Logged
siremi
Administrator
Hero Member
*****
Posts: 1099



View Profile WWW Email
« Reply #11 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.
Logged

jager
Sr. Member
****
Posts: 284



View Profile WWW Email
« Reply #12 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 ...
Logged
Adramalech
Full Member
***
Posts: 139



View Profile
« Reply #13 on: April 19, 2009, 01:30:26 AM »

for the source code, as its is .net, you can use the program 'reflector',
Logged
Pages: [1]
Print
Jump to: