XR3X

Jump to content


Photo

HackHound Fever


  • This topic is locked This topic is locked
50 replies to this topic

Poll: HackHound Fever Poll (11 member(s) have cast votes)

HackHound Fever Poll

  1. yes (9 votes [81.82%])

    Percentage of vote: 81.82%

  2. no (0 votes [0.00%])

    Percentage of vote: 0.00%

  3. yes with a different final prize (2 votes [18.18%])

    Percentage of vote: 18.18%

Vote

#21 Dante

Dante

    Intermediate Member

  • Notorious
  • Reputation: 115
    Very Good
  • 186 posts
Contributor

Posted 01 December 2012 - 02:10 PM

Nicely done AKL3GEND

“The path to paradise begins in hell.” ― Dante Alighieri


#22 HttP-NuKe

HttP-NuKe

    Advanced Member

  • Guru
  • Reputation: 299
    Very Good
  • 349 posts
  • LocationBIOS
Contributor

Posted 01 December 2012 - 11:48 PM

nice background taken from my lap ;)

Attached Files


  • Ravage likes this

#23 Ravage

Ravage

    Expert

  • Administrators
  • Reputation: 591
    Excellent
  • 680 posts

Posted 03 December 2012 - 08:38 AM

Thanks guys.
http-nuke I took the liberty of attaching the image instead since it was a bit big to have showing full size on post.
Hope you don't mind.
  • HttP-NuKe likes this

#24 HttP-NuKe

HttP-NuKe

    Advanced Member

  • Guru
  • Reputation: 299
    Very Good
  • 349 posts
  • LocationBIOS
Contributor

Posted 03 December 2012 - 05:40 PM

not at all...
i belive what ever you do is the best for us ;)
+ your right, its BIG
lol

#25 x58

x58

    Advanced

  • Administrators
  • Reputation: 1,030
    Awesome
  • 1,755 posts
Contributor

Posted 04 December 2012 - 05:03 PM

Today ive decided to enter a HackHound IP Tracer for this compitition, here is a picture to show you what it looks like!

this is where you can download the file.

Please Login or Register to see this Hidden Content


here is a virus scan for all who worry about backdoored
Scan Report:

Please Login or Register to see this Hidden Content



Cool, http request or wb?
Regards

Website & blog 1366x.org


Forum - Rules & Regulations


#26 AKL3GEND

AKL3GEND

    Intermediate Member

  • Members
  • Reputation: 59
    Good
  • 288 posts
  • LocationAlaska
Contributor

Posted 04 December 2012 - 08:07 PM

http request.
  • turbo420 likes this

#27 x58

x58

    Advanced

  • Administrators
  • Reputation: 1,030
    Awesome
  • 1,755 posts
Contributor

Posted 05 December 2012 - 03:32 PM

http request.


Oh nice! I like the user interface. It's not bad at all, did you made the gfx yourself?
Regards

Website & blog 1366x.org


Forum - Rules & Regulations


#28 HttP-NuKe

HttP-NuKe

    Advanced Member

  • Guru
  • Reputation: 299
    Very Good
  • 349 posts
  • LocationBIOS
Contributor

Posted 05 December 2012 - 04:40 PM

Watch out for whats coming soon,
Great tools, for most needs
mix of codes and a great GFX
HttP-NuKe & AKL3GEND
  • turbo420 likes this

#29 HttP-NuKe

HttP-NuKe

    Advanced Member

  • Guru
  • Reputation: 299
    Very Good
  • 349 posts
  • LocationBIOS
Contributor

Posted 06 December 2012 - 12:57 AM

HackHound Utilitie Manager V1.0

This MIX of codes i've been coding for these past days, and with help of AKL3GEND , and his amazing GFX work.
hope you guys like it.


Posted Image

Please Login or Register to see this Hidden Content

 

Please Login or Register to see this Hidden Content

  6.29MB   18 downloads
  • turbo420, AKL3GEND, Ravage and 1 other like this

#30 turbo420

turbo420

    Advanced Member

  • Associate
  • Reputation: 111
    Very Good
  • 315 posts
  • LocationU.S.A
Contributor

Posted 06 December 2012 - 01:17 AM

very nice work you guys works awesome too ;)
  • AKL3GEND and HttP-NuKe like this

#31 AKL3GEND

AKL3GEND

    Intermediate Member

  • Members
  • Reputation: 59
    Good
  • 288 posts
  • LocationAlaska
Contributor

Posted 06 December 2012 - 05:16 AM

thanks turbo for the feedback.

#32 Ravage

Ravage

    Expert

  • Administrators
  • Reputation: 591
    Excellent
  • 680 posts

Posted 06 December 2012 - 05:35 AM

Keep them coming Gents

#33 HttP-NuKe

HttP-NuKe

    Advanced Member

  • Guru
  • Reputation: 299
    Very Good
  • 349 posts
  • LocationBIOS
Contributor

Posted 06 December 2012 - 07:51 AM

we well, thanks ;)

#34 x58

x58

    Advanced

  • Administrators
  • Reputation: 1,030
    Awesome
  • 1,755 posts
Contributor

Posted 06 December 2012 - 02:26 PM

Nice, well soon i will release my program aswell. I am quite busy right now these days. So i'll release it later.
Regards

Website & blog 1366x.org


Forum - Rules & Regulations


#35 mirza.sahaib

mirza.sahaib

    Member

  • Associate
  • Reputation: 24
    Fair
  • 60 posts
Contributor

Posted 09 December 2012 - 04:40 PM

here is some simplest demonstration how a file scanner works.this is coded in C#.net. I hope this is simple and understandable


this code is shared for competition
 
[vb]using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Security.Cryptography;
using System.IO;
using System.Text.RegularExpressions;
using System.IO;

namespace hackhound
{
public partial class Form1 : Form
{


private List<string> stringList;
public Form1()
{
InitializeComponent();
loadStringFromFile();

}
private void loadStringFromFile()
{
//this will be a text file which contain signatures of infected files.this could be a data file etc
stringList = new List<string>(File.ReadAllLines(@"C:\db.txt"));
}

private void button1_Click(object sender, EventArgs e)
{
try
{
OpenFileDialog dlg = new OpenFileDialog();
dlg.InitialDirectory = "c:\\";
dlg.Filter = "All Files (*.*)|*.*";
dlg.RestoreDirectory = true;

if (dlg.ShowDialog() == System.Windows.Forms.DialogResult.OK)
{
string FileName = dlg.FileName;
textBox1.Text = FileName;
}
}
catch (Exception)
{
MessageBox.Show("Error!!");
}
}

private void button3_Click(object sender, EventArgs e)
{

try
{

using (FileStream fs = new FileStream(textBox1.Text, FileMode.Open))
using (MD5 hasher = MD5.Create())
foreach (byte b in hasher.ComputeHash(fs))

textBox2.Text += b.ToString("x2");

MessageBox.Show("Spyware " + ((stringList.Contains(textBox2.Text)) ? "" : "NOT") + " Detected.");
}
catch (Exception)
{

MessageBox.Show("Error!!");
}

}

private void Form1_Load(object sender, EventArgs e)
{

}
}
}[/vb]
  • Ravage likes this

#36 HttP-NuKe

HttP-NuKe

    Advanced Member

  • Guru
  • Reputation: 299
    Very Good
  • 349 posts
  • LocationBIOS
Contributor

Posted 09 December 2012 - 11:30 PM

Posted Image

HackHound Utilitie Manager V1.0 FIX

1- fixed extracting files to temp.
2- internet tools buttons auto enabled= true\false "if internet connection workiong or not" => detected by IP address.

Please Login or Register to see this Hidden Content

 

Please Login or Register to see this Hidden Content

  6.29MB   34 downloads
  • Ravage and Simon-Benyo like this

#37 Ravage

Ravage

    Expert

  • Administrators
  • Reputation: 591
    Excellent
  • 680 posts

Posted 10 December 2012 - 01:44 AM

Txs once again guys.

#38 HttP-NuKe

HttP-NuKe

    Advanced Member

  • Guru
  • Reputation: 299
    Very Good
  • 349 posts
  • LocationBIOS
Contributor

Posted 10 December 2012 - 08:37 PM

here is a joke my friend told me yesterday :)

in the old days, if the girls want to go out, they just do their hair and very simple stuff,
but in these days, its a bit different :

Lipstick
Lips Color
Lips Shine
SPF Protection
Moisturising Cream
Continuous Infusing Moisturizer
Youth Activating Cream SerumReplenishing Cream
Soothing Treatment Cream
Intense Lipid Repair Cream
Anti-Wrinkle and Firming Treatment
Volumetric Lifting and Reshaping Cream
Eye Shadows
Mezical Fiber
VISIBLE LIFT FOUNDATION
Compact Foundation
Anti-Aging Wrinkle
Eye Line Prevention
Night Serum Treatment
Uplifting Eye Gel
Instant Face Lift
Revision Nectifirm Cream
Neck Firming Cream
Youth Restore
Clinical Lift
Firm Serum
Concealer
Blemishes Shrinks
Sculpting Cheekbone
cream blush
Bronze & Gold Cream Shadows
Lash Liner Pencil
Lip Balm
.
.
.
.
can't get going, tired of writing.

after all that, the girl says : "Heeeeeeeeyy baby, it's all natural beauty"
  • Dante, mirza.sahaib and Lion_X like this

#39 Dante

Dante

    Intermediate Member

  • Notorious
  • Reputation: 115
    Very Good
  • 186 posts
Contributor

Posted 11 December 2012 - 03:51 AM

That's why I hate the "barbie" type.
You wake up next morning beside her and say "wtf...who are you :wacko: "
ROFLMAO
  • HttP-NuKe and mirza.sahaib like this

“The path to paradise begins in hell.” ― Dante Alighieri


#40 HttP-NuKe

HttP-NuKe

    Advanced Member

  • Guru
  • Reputation: 299
    Very Good
  • 349 posts
  • LocationBIOS
Contributor

Posted 11 December 2012 - 06:04 PM

you can bypass that :) lol with this encryption : "cover the face, and f*** the base"
heheheheheheheheheh
  • Lion_X likes this