Showing posts with label trick - keyboards shortcut. Show all posts
Showing posts with label trick - keyboards shortcut. Show all posts

Friday, 15 January 2016

Arduino Controlled Robotics Arm


















Circuit for this project:














Programming to control it:


//  letsarduino.com
//  [Project 23] - Arduino Controlled Robotic Arm - 6 SERVO Motors

#include<Servo.h>
Servo servo_1;
Servo servo_2;
Servo servo_3;
Servo servo_4;
Servo servo_5;
int pos = 0;

void setup()
{ 
servo_1.attach(1);
servo_2.attach(2);
servo_3.attach(3);
servo_4.attach(4);
servo_5.attach(5); 

} 

void loop()
{
  servo_1.write(180);
 delay(1000);
 
   for(pos = 90; pos>=23; pos-=1)
 { 
  servo_2.write(pos);
 delay(30);
 }
  servo_3.write(100);
 delay(1000);
  
   for(pos =45; pos < 175; pos += 1)
 { 
  servo_4.write(pos);
 delay(20);
 } 
 
 delay(1000);
  servo_5.write(10);
 delay(1000);
  
   for(pos = 175; pos>=90; pos-=1)
 { 
  servo_4.write(pos);
 delay(20);
 }
   
   servo_2.write(90);
 delay(2000);  
    
   servo_1.write(90);
 delay(1000);

   for(pos = 90; pos>=23; pos-=1)
 { 
   servo_2.write(pos);
 delay(30);
 }

   servo_3.write(100);
 delay(1000);
 
   for(pos =90; pos < 175; pos += 1)
 { 
   servo_4.write(pos);
 delay(15);
 }
 
 delay(1000);
   servo_5.write(30);
 delay(1000); 

 delay(1000);
    for(pos = 175; pos>=45; pos-=1)
 { 
   servo_4.write(pos);
 delay(20);
 } 
   
   servo_2.write(90);
 delay(1000);
}

Tuesday, 24 February 2015

LEARN HOW TO HACK WIFI IN MOST EASY WAY

In this tutorial, I’m going to tell you how to hack wifi.Now, given that we have Kail Linux, open up a terminal window, type in “ifconfig “. This is going to list all the networking interfaces connected to your device.
Selection_001
Here, we need (wlan0) which is our wifi card.So we will disable others by typing ifconfig("name of interface")down.
Selection_002
now we will type "airmon-ng start wlan0"
Selection_003
(airmon-ng is a tool for monitoring air traffic, “start” basically starts the tool, and “wlan0” specifies the interface we are using for monitoring)
It’ll probably show “some processes that could cause trouble”, we’ll simply kill those processes by typing  “kill <process ID>”.
Selection_004
Now if we type "ifconfig" it will only show the monitoring mode "mon0"
Selection_005
Then,type, “airodump-ng mon0”.
In the screenshot below, the highlighted bssid is our target (and it is my own), the channel is 13 as we can see under in “CH” column.
Selection_006
In  next step we will type “airodump-ng –c <channel> -w <name> –bssid <bssid> mon0”.
Selection_007
Let me tell you few things here, “airodump-ng” is a tool for capturing Wi-Fi packets, “<channel>” means the channel your target is running on, “-w” basically writes a file by the name that succeeds it in “<name>”, (I did “handshake” just for the convenience of it) bssid is a string of numbers specific to a hotspot.
Selection_008
Than, open up a new terminal and type “aireply-ng -0 0 –a <bssid> mon0”, this command send a deauthentication signal (usually called a deauth packet) to all the devices connected to that hotspot. Then after few moments stop it by “Ctrl+C”. Now, as we can see, the other terminal shows that the WPA Handshake was successfully captured.
Selection_009
We will close both windows at this point, and open a new one. Type “ls”; that should list the files in the current directory. We can clearly see that the files from the above operation are present. But we only need the file ending with “-01.cap”.
Selection_010
Then open a new terminal type, “aircrack-ng –w <full location of the wordlist> <the file name>”.remember it the file will be ending with .cap.
Selection_011
You may be asking what wordlist? What is that sh*t?
A Wordlist is a file containing thousands of known and possible passwords, which you can download from the internet. The one I used can be found here. The list contains 982,963,904 words exactly all optimized for WPA/WPA2. Would also just like to point out that this is not my work, I got it from forums.hak5.org. It was a guy who compiled a whole load of useful lists, including his own to come up with 2 lists (one is 11gb and one is 2gb) I will be seeding this torrent indefinitely since it is shareware and it's awesome!
Selection_012
It will then start  matching keys in the word list. Now the time it will take completely depend's on the strength of the password. The stronger the password the more time will it take.
After completion it looks something like the screenshot below. In it, you can see that it tested 45688 keys and my key was the 45689th.
Selection_013
Now you can use this passowrd on that wifi network and enjoy.This tutorial is completely for educational purpose.For further tricks.tips and news from world of technology and hacking stay tuned to  hackaklash.blogspot.com

Saturday, 21 February 2015

COMPUTER BEGINNERS TERMINOLOGIES

Communication terminilogies:
– VHF – Very High Frequency.
– UHF – Ultra High Frequency.
– GPRS – General Packet Radio Service.-
– WAP – Wireless Application Protocol.
-TCP – Transmission Control Protocol .
– ARPANET – Advanced Research Project Agency Network.
-IBM – International Business Machines.
– HP – Hewlett Packard.
-AM/FM – Amplitude/ Frequency Modulation.
– WLAN – Wireless Local Area Network.



Computer system terms:
– SIM – Subscriber Identity Module.
– AVI = Audio Video Interleave
– RTS = Real Time Streaming
– SIS = Symbian OS Installer File
-AMR = Adaptive Multi-Rate Codec
– JAD = Java Application Descriptor
– JAR = Java Archive
– JAD = Java Application Descriptor
– 3GPP = 3rd Generation Partnership Project
-3GP = 3rd Generation Project
-MP3 = MPEG player lll
– MP4 = MPEG-4 video file
-AAC = Advanced Audio Coding
– GIF = Graphic Interchangeable Format
– JPEG = Joint Photographic Expert Group
– BMP = Bitmap
– SWF = Shock Wave Flash
– WMV = Windows Media Video
– WMA = Windows Media Audio
– WAV = Waveform Audio
– PNG = Portable Network Graphics
– DOC = Document (Microsoft Corporation)
-PDF = Portable Document Format
– M3G = Mobile 3D Graphics
– M4A = MPEG-4 Audio File
– NTH = Nokia Theme (series 40)
– THM = Themes (Sony Ericsson)
– MMF = Synthetic Music Mobile Application File
– NRT = Nokia Ringtone
– XMF = Extensible Music File
-WBMP = Wireless Bitmap Image
– DVX = DivX Video
– HTML = Hyper Text Markup Language
– WML = Wireless Markup Language
– CD – Compact Disk.
-DVD – Digital Versatile Disk.
-CRT – Cathode Ray Tube.
-DAT – Digital Audio Tape.
-DOS – Disk Operating System.
-GUI – Graphical User Interface.
-HTTP – Hyper Text Transfer Protocol.
-IP – Internet Protocol.
-ISP – Internet Service Provider.
-TCP – Transmission Control Protocol.
– UPS – Uninterruptible Power Supply.
– HSDPA – High Speed Downlink Packet Access.
-EDGE – Enhanced Data Rate for GSM [Global System for Mobile
-HTTP – Hyper Text Transfer Protocol.
-HTTPS – Hyper Text Transfer Protocol Secure.
-IP – Internet Protocol.



-URL – Uniform Resource Locator.
-USB – Universal Serial Bus.
– VIRUS – Vital Information Resource Under Seized.
– 3G – 3rd Generation.
– GSM – Global System for Mobile Communication.
– CDMA – Code Division Multiple Access.
-UMTS – Universal Mobile Telecommunication

Saturday, 7 February 2015

CREATE KEYBOARD AHORTCUTS ON KALI LINUX

I'm successfully installed Kali Linux on my virtual box, but when I tried to press CTRL+ALT+T (terminal shortcut on backtrack) it's not worked, instead I must click the terminal logo on the top of my Kali linux window.

So actually how to make a keyboard shortcuts on kali linux?

If the case is you only want to run a terminal, you can try to press ALT + F2 and type:

gnome-terminal

Now how if we want to make a Kali Linux keyboard shortcut?

Requirement:

1. Kali Linux (http://kali.org)

How to Create Keyboard Shortcuts on Kali Linux:

1. First go to
Applications –> System tools –> Preferences –> System Settings

2. On the System settings, find hardware group and choose keyboard
3. Choose and click shortcuts tab, and press the plus + sign at the bottom to add a new shortcut.
4. Put the name(use the name that easy to recognize) and the command (in this case it is a terminal)
5. Click the disabled area until it change the words to New accelerator.

How to Create Keyboard Shortcuts on Kali Linux

6. Now you can choose which shortcut you want for your Kali Linux. In this example we use CTRL + ALT + T to call the terminal.

How to Create Keyboard Shortcuts on Kali Linux

We can directly try our new kali linux keyboard settings.

Hope you found it useful :-)