Articles by "Video"
Showing posts with label Video. Show all posts
A unique platform to get tutorials on basic and advance computer skills like programming, blogging. Get latest technology updates,news, tutorials
 How to Hack Facebook, WhatsApp, and Telegram Using SS7 Flaw (Videos)
Before you starting this tutorial remember this tutorial is for educational and information purpose only(To help you secure yourself from this hacks). WhatsApp and Telegram both the apps are end-to-end encrypted and both suffer from same hardware vulnerability which can be hacked to seize control of both WhatsApp and Telegram.
If we talk about WhatsApp and Telegram it recently enabled 256-bit encryption. For those who don’t know about this type of encryption then let me tell you this encryption could take months to decode a sentence.
If we talk about your Facebook accounts that it can also be hacked, it doesn’t matter how strong is your password. Hackers just need your phone number to hack your Facebook account.
The Flaw rests in Signaling protocol SS7 (Signalling system 7) is a set of telephony signaling protocols developed in 1975, which is used to set up and tear down most of the world’s public switched telephone network (PSTN) telephone calls. It also performs number translation, local number portability, prepaid billing, Short Message Service (SMS), and other mass market services.
SS7 has long been known to be defenseless to hacking since 2008. According to the sources, the protocol vulnerability of SS7 can be used by government agencies to track the movements of cell phone users from anywhere in the world.
Here are the three videos that will show you how researchers managed to hack Telegram, WhatsApp and Facebook accounts using the SS7 flaws.

Telegram Hack With SS7




WhatsApp Hack With SS7



So from the above videos, you can see how easily your Telegram, Facebook, and WhatsApp account can be hacked. The worst part is the hackers can see and alter the messages according to their wish.
Hope you learnt something form this article(How to Hack Facebook, WhatsApp, and Telegram Using SS7 Flaw (Videos). Kindly share

Source: techviral
A unique platform to get tutorials on basic and advance computer skills like programming, blogging. Get latest technology updates,news, tutorials
Today, i will be showing you something worth learning; This tutorial is based on how to remove stubborn virus from your pc using avast antivirus boot time scan.




A unique platform to get tutorials on basic and advance computer skills like programming, blogging. Get latest technology updates,news, tutorials
This tutorial will teach you basic Android programming and will also take you through some basic concepts related to Android application development. 

WATCH THE VIDEO BELOW TO SHOW YOU THE PRACTICAL STEPS
You will be glad to know that you can start your Android application development on either of the following operating systems −

  • Microsoft Windows XP or later version.
  • Mac OS X 10.5.8 or later version with Intel chip.
  • Linux including GNU C Library 2.7 or later.
Second point is that all the required tools to develop Android applications are freely available and can be downloaded from the Web. Following is the list of software's you will need before you start your Android application programming.
  • Java JDK5 or later version
  • Android SDK
  • Java Runtime Environment (JRE) 6
  • Android Studio
  • Eclipse IDE for Java Developers (optional)
  • Android Development Tools (ADT) Eclipse Plug-in (optional)

Here last two components are optional and if you are working on Windows machine then these components make your life easy while doing Java based application development. So let us have a look how to proceed to set required environment.


Set-up Java Development Kit (JDK)

You can download the latest version of Java JDK from Oracle's Java site: Java SE Downloads. You will find instructions for installing JDK in downloaded files, follow the given instructions to install and configure the setup. Finally set PATH and JAVA_HOME environment variables to refer to the directory that containsjava and javac, typically java_install_dir/bin and java_install_dir respectively.
If you are running Windows and installed the JDK in C:\jdk1.6.0_15, you would have to put the following line in your C:\autoexec.bat file.
set PATH=C:\jdk1.7.0_75\bin;%PATH%
set JAVA_HOME=C:\jdk1.7.0_75

Alternatively, you could also right-click on My Computer, select Properties, thenAdvanced, then Environment Variables. Then, you would update the PATH value and press the OK button.

HERE IS THE TUTORIAL