Blog links

Showing posts with label programmer tools. Show all posts
Showing posts with label programmer tools. Show all posts

TOP 10 HACKING TOOLS

10 HACKING TOOLS
1)Nessus
In computer security, Nessus is a proprietary comprehensive vulnerability scanning program. It is free of charge for personal use in a non-enterprise environment. Its goal is to detect potential vulnerabilities on the tested systems. 


The “Nessus” Project aims to provide to the internet community a free, powerful, up-to-date and easy to use remote security scanner for Linux, BSD, Solaris, and other flavors of Unix.
2)Ethereal
Ethereal is a free network protocol analyzer for Unix and Windows. Ethereal has several powerful features, including a rich display filter language and the ability to view the reconstructed stream of a TCP session.
3)Snort
A free lightweight network intrusion detection system for UNIX and Windows. 
Snort is an open source network intrusion detection system, capable of performing real-time traffic analysis and packet logging on IP networks.
4)Netcat
Netcat is a computer networking service for reading from and writing network connections using TCP or UDP. 
Netcat has been dubbed the network swiss army knife. It is a simple Unix utility which reads and writes data across network connections, using TCP or UDP protocol
5)Hping Hping is a command-line oriented TCP/IP packet assembler/analyzer, kind of like the “ping” program (but with a lot of extensions).
6)DNSiff
DNSiff is a collection of tools for network auditing and penetration testing. dsniff, filesnarf, mailsnarf, msgsnarf, urlsnarf, and webspy passively monitor a network for interesting data (passwords, e-mail, files, etc.).
7)GFI LANguard
GFI LANguard Network Security Scanner (N.S.S.) automatically scans your entire network, IP by IP, and plays the devil’s advocate alerting you to security vulnerabilities.
8)John the Ripper John the Ripper is a fast password cracker, currently available for many flavors of Unix.
9)OpenSSH
OpenSSH (OpenBSD Secure Shell) is a set of computer programs providing encrypted communication sessions over a computer network using the ssh protocol. It was created as an open source alternative to the proprietary Secure Shell software suite offered by SSH Communications Security. 
OpenSSH is a FREE version of the SSH protocol suite of network connectivity tools, which encrypts all traffic (including passwords) to effectively eliminate eavesdropping, connection hijacking, and other network-level attacks.
10)TripWire
Tripwire is a tool that can be used for data and program integrity assurance.

Read more

How to Find MAC addresses of all devices present in your LAN


Good Evening to all.....
Recently I had to find mac addresses of all servers in the local area network (LAN) for preseeding Debian installations using PXE (I will soon write about it). Finding them is easy with nmap
I used the following command and I had the mac addresses along with their associated IPs of all devices in the LAN. To find mac addresses, nmap must be run as root



nmap -sP 192.168.2.*
Starting Nmap 4.11 ( http://www.insecure.org/nmap/ ) at 2010-03-31 12:39 EDT
Host 192.168.2.1 appears to be up.
MAC Address: 00:02:B3:40:E0:AA (Intel)
Host 192.168.2.2 appears to be up.
MAC Address: 00:02:B3:40:E0:A5 (Intel)
Host 192.168.2.3 appears to be up.
MAC Address: 00:02:B3:40:E0:A5 (Intel)
Host 192.168.2.11 appears to be up.
MAC Address: 00:1B:2F:6B:B7:AC (Unknown)
Host 192.168.2.34 appears to be up.
MAC Address: 00:1E:8C:04:A5:1F (Unknown)
Host 192.168.2.57 appears to be up.
MAC Address: 00:05:5D:E0:32:DF (D-Link Systems)
Host 192.168.2.71 appears to be up.
MAC Address: 00:03:47:A9:F3:D1 (Intel)
Host 192.168.2.79 appears to be up.
MAC Address: 00:1C:C0:9D:7F:9D (Unknown)
Host 192.168.2.80 appears to be up.
MAC Address: 00:1C:C0:9D:7D:51 (Unknown)
Host 192.168.2.82 appears to be up.
MAC Address: 00:15:58:32:5C:F4 (Foxconn)
…..
…..
I think it is so simple.... so try it out and hack whatever you want... 


Read more

Write VB Windows Scripts Easier & Faster With VbsEdit


write windows scriptWriting a script to automate various tasks on your system that you would normally have to do manually is something that I’ve become infatuated with recently. Maybe it’s the automation engineer in me, but the idea of having a computer intelligently do what I don’t have time to do is very appealing. That is why I’ve recently started offering some tips on how you can automate your own computer with windows host scripts, typically using Visual Basic script to do things like automate telnet commands or even sending emails.
The reason I like VB script so much is because it’s a scaled down version of Visual Basic itself, which in my opinion is probably one of the easiest programming languages to learn if you’re just getting started as a programmer. That isn’t because the language is limited in features or scaled down in functionality, it’s because using the language is intuitive, and full of objects and components that you can pull in to perform some pretty amazing tasks with your computer.

A VB Scripting Environment

If you want to become a power Windows scripting expert, then you really need an environment that helps you remember the syntax of the language, and provides you with a quick library of functions and objects that are available to you.

VbsEdit Helps You Write Powerful Windows Scripts

If you are writing in VB6 or .Net, then you need to use the Microsoft Studio package that includes the programming environment you need. However, if you’re just a system administrator or a network IT guy, you really don’t want to spend money on an expensive tool just for writing Windows scripts. That’s where VbsEdit comes in handy.
write windows script
Last week I wrote about the BlueFish editor for web apps. Well, VbsEdit is sort of the all-star tool that is very well-known within the IT community for power-scripting highly functional VB based Windows Scripts. As you can see in the screenshot above, using an editor built specifically for VB scripting gives you the power of color-coded, intelligent sensing of declarations, variables, functions and objects. It gives you pop-up lists for suggested methods, properties and events for different objects, and a whole lot more.
If you don’t know what the heck I’m talking about here, don’t worry. After using VbsEdit for a while, you’ll quickly learn how the language works and how much functionality you can add to your Windows Scripts if you write them in this language and use VbsEdit.
The one drawback of the free version of VbsEdit is that it does have a nag-screen when you first launch the application.
writing windows scripts
It is a functional, free version of the software, but you have to click “Evaluate” every time you start. If you really like it, I would suggest buying a copy, as it is really inexpensive. Otherwise, just click Evaluate and the software will launch.

VbsEdit Features

There’s a lot available when you use this tool to write Windows Script, but the first thing that I recommend you do when you first launch it is to click on the “WScript” button at the top of the main window. This enables all of the VBS features that I’m going to describe here.
writing windows scripts
The first thing that I want to point out is that when you start defining available objects, like the windows scripting object or IHost for networking, those objects appear in the Object Browser on the right side of the window.
When you drop down the Object Browser, you can see all of the elements that are available to you, and you can drill down within those to see what properties or methods are available. If you’re just learning VB scripting, this is an invaluable resource.
Another nice feature is the drop-down lookup, just like you might be accustomed to if you’ve written programs in MS Visual Studio.
writing windows scripts
Other really nice features of this tool include adding or removing breakpoints. You can do this by clicking to the left of the line where you want to pause the program, or click on the break point icon in the toolbar.
vb windows scripting
Another nice feature that makes this software just as good as MS Visual Studio is the commenting feature. You can comment entire blocks of text simply by highlighting all of it and clicking on the “comment” icon.
vb windows scripting
There is also a really nice debugging feature that most programming editors lack. When you click the run button, the program will stop at your breakpoints and you can step through your program by clicking on the various step icons.
vb windows scripting
At the bottom of the window, you can view active variables and their values while your script is running. When you’re debugging an especially complex windows script, this feature is worth its weight in gold.
The only second drawback to the free version is another nuisance screen that counts down in seconds any time you want to run your script from inside the editor.
Other really nice features of this VB Script editor include (from left to right) the ability to convert your script into an executable, a button to add your newly written code into your own personal “code library”, a useful search button, and finally a series of bookmarking buttons that let you more easily organize and navigate your script.
write windows script
For the most part, VbsEdit is a much better improvement over using just a text editor for writing Windows Scripts. With VbsEdit, you can quickly see what you want to do, and how to do it. You can test your scripts and get them into production much faster than otherwise possible.

Read more
2leep.com