Blackhat Toolkit?

Wanna build a community blackhat tool kit?

  • Definitely

    Votes: 0 0.0%
  • No Way!

    Votes: 0 0.0%
  • Eh, maybe. I'm lazy

    Votes: 0 0.0%
  • I don't code

    Votes: 0 0.0%

  • Total voters
    0
  • Poll closed .

goawayplease

Regular Member
Joined
Apr 10, 2008
Messages
328
Reaction score
73
Hello all!

I just wanted to gauge the interest on a community code project.

I'm thinking some kind of blackhat toolkit, developed in VB6 with modules created by the users and uploaded here.

Imagine if you will a framework for things like view spoofing, trackback/comment spam, pinging, account creation, link scraping where each tool is a module that can be downloaded and plugged in.

Maybe uploaded as a VB Form and Bas file, so people could compile their own tools.

It would serve two purposes; put some tools out there for everybody, and help newer blackhats learn a thing or two about dev.

Thoughts?
 
I'd be interested in something like this, as well as developing for something like this, however I do not think that VB6 is the right language for this. I think it may be easier to use a VB.Net/C# setup.

VB6 is relatively outdated, and there are so many different ways to do the same thing in VB6. My vote is for a unified .Net plugin system.
 
It's a good idea, but as @websicosys I vote for C#

We can design a plugin architecture by using interfaces and IoC.

I would love to help
 
Yeah, one of the great things about the .Net framework is we can setup one app that will execute plugins via System.Reflection, that way all the other coders can create plugins with any .Net language (C++,C#,VB,IronPython, etc..)
 
I used to do a lot of VB6 coding but I let it slide when I started on the internet marketing stuff. I would love to learn how to use it for doing blackhat stuff and bots, but in NET.
 
Vote for C#...

What about a invitation only SVN anyone? I have a pretty good SOCKS library I wouldnt mind sharing... and a CWebBroswer class that is pretty nifty xx
 
Well I have thought of two useful interfaces!

namespace SeoApi
{
using System;
using Business;
public interface Node
{
Guid Guid { get; }
Professional Owner { get; }
}
}

namespace SeoApi.Business
{
using System;
using System.Net;
public interface Professional
{
IPHostEntry CommunicationPoint { get; set; }
}
}
 
Last edited:
VB 2008 is a great tool for writing bots, or adding functionality to other tools. I mean it's incredibly simple.

Anyone with any knowledge of programming could be making decent tools inside a week.

Learning a programming app is one of the best investments in time you can make. YOu stop being so reliant on 3rd party tools, you can implement your own ideas.

These days many (VB included) have browsers built in, and a quick scan of the net will find you tons of usable code to help you (so you don't waste time re-inventing the wheel)

Seriously - if you did a bit of programming at school or wherever, then 30-40 hours investment in a decent language - learning how to manipulate code and web pages or whatever - will prove invaluable.

Scritty
 
Back
Top