Showing posts with label OTHERS. Show all posts
Showing posts with label OTHERS. Show all posts

Sunday 26 February 2017

A Liitle Introduction To BoTnet & RAT (Hax4Us)

Leave a Comment

Hello everyone. I'm lokesh (devil) and i've been around for a while learning from various tutorials, expanding my knowledge and this is one of the best platforms for newbies to sharpen the skills.

Botnets :

A botnet is a collection of compromised machines for the use of (Distributed) Denial of Service (DoS/DDoS). Consider this as an army of compromised systems used to create havoc.
The botnets are usually controlled by IRC channels and HTTP protocols. The systems are compromised and then used for massive DDOS on websites or trigger a 0day exploit.

RATs :

RAT - Remote administration tool. A RAT is malicious malware software that runs on your computer. It gives access to a hacker when he wants to steal information from you or install other malicious software. Basically, if a RAT is installed in the system, the hacker has complete power over it. He can either keylog the passwords or steal confidential information.
The RATs are usually detected by antivirus unless its crypted or binded with other files. There are some legal RATs like Teamviewer which help in numerous ways and then there are several illegal RATs which help in all kind of malicious activities, some notable ones are ZeuS, Spynet.
Read More

Thursday 23 February 2017

[FULL Guide] Android Dictionary (All Terms Used In Android) [Hax4Us]

37 comments


Android Dictionary

Definitions referenced from the Android Developers Guide or the FreeYourAndroid.com dictionary.

.APK

Android application package file. Each Android application is compiled and packaged in a single file that includes all of the application’s code (.dex file), resources, assets, and manifest file. The application package file can have any name but must use the .apk extension. For example: myExampleAppname.apk. For convenience, an application package file is often referred to as an “.apk”.

.DEX

Dalvik Executable. Compiled Android application code file. Android programs are compiled into .dex files, which are in turn zipped into a single .apk file on the device. .dex files can be created by automatically translating compiled applications written in the Java programming language.

Action

An action is a description of something that an Intent sender wants done. An action is a string value assigned to an Intent. Action strings can be defined by Android or by a third-party developer. For example, android.intent.action.VIEW for a Web URL, or com.example.rumbler.SHAKE_PHONE for a custom application to vibrate the phone.

Activity

An activity is a single screen in an application, with supporting Java code, derived from the Activity class. Most commonly, an activity is visibly represented by a full screen window that can receive and handle UI events and perform complex tasks, because of the Window it uses to render its window. Though an Activity is typically full screen, it can also be floating or transparent.

adb

Android Debug Bridge, a command-line debugging application included with the SDK. It provides tools to browse the device, copy tools on the device, and forward ports for debugging. If you are developing in Eclipse using the ADT Plugin, adb is integrated into your development environment.

AndroidManifest.xml file

Every application must have an AndroidManifest.xml file (with precisely that name) in its root directory of the source tree. The manifest presents essential information about the application to the Android system, information the system must have before it can run any of the application’s code.

Application

From a component perspective, an Android application consists of one or more activities, services, listeners, and intent receivers. From a source file perspective, an Android application consists of code, resources, assets, and a single manifest. During compilation, these files are packaged in a single file called an application package file (.apk).

Boot

In contrast to other Linux-based operating systems, Android has a boot partition (containing the contents of a boot.img file), as opposed to a direct-booting system. This partition contains a read-only ‘ramdisk’, and a couple of other files. The ramdisk contains files critical to booting, such as init.rc and default.prop. This ‘partition’ actually sets up the directory structure of the device, having empty folders for /data, /dev, /proc, /sbin, /sys and /system.

Bootloader

The bootloader, is firmware on the phone which runs on every startup. Sometimes it may be desirable to change the version of the bootloader, or to load a different bootloader entirely to enable different features or a completely different OS. The current version of the bootloader can be viewed by entering bootloader mode, the process of which is different for each and every device or manufacturer.
Broadcast Receiver
An application class that listens for Intents that are broadcast, rather than being sent to a single target application/activity. The system delivers a broadcast Intent to all interested broadcast receivers, which handle the Intent sequentially.

Canvas

A drawing surface that handles compositing of the actual bits against a Bitmap or Surface object. It has methods for standard computer drawing of bitmaps, lines, circles, rectangles, text, and so on, and is bound to a Bitmap or Surface. Canvas is the simplest, easiest way to draw 2D objects on the screen. However, it does not support hardware acceleration, as OpenGL ES does. The base class is Canvas.

Content Provider

A data-abstraction layer that you can use to safely expose your application’s data to other applications. A content provider is built on the ContentProvider class, which handles content query strings of a specific format to return data in a specific format.

Dalvik

The Android platform’s virtual machine. The Dalvik VM is an interpreter-only virtual machine that executes files in the Dalvik Executable (.dex) format, a format that is optimized for efficient storage and memory-mappable execution. The virtual machine is register-based, and it can run classes compiled by a Java language compiler that have been transformed into its native format using the included “dx” tool. The VM runs on top of Posix-compliant operating systems, which it relies on for underlying functionality (such as threading and low level memory management). The Dalvik core class library is intended to provide a familiar development base for those used to programming with Java Standard Edition, but it is geared specifically to the needs of a small mobile device.

Data

The data partition on the device contains the user-related data, such as installed applications and settings for those apps, as well as your SQLite database containing Android settings and messages. Normally, the directory /data/app is off-limits through the ‘adb shell’ command, as well as other terminal applications that can run on the device, since this directory contains the apk files for apps. On a rooted phone, using the ‘su’ command will allow full access to this partition. This partition can be flashed using Fastboot or Nandroid.

DDMS

Dalvik Debug Monitor Service, a GUI debugging application included with the SDK. It provides screen capture, log dump, and process examination capabilities. If you are developing in Eclipse using the ADT Plugin, DDMS is integrated into your development environment.

Deodex

Deodex is the process of combining the already optimized application elements found in the .odex file and compressing them into the .apk file with the rest of the application. The main reason for doing this allows for application and ROM themers to edit the graphics and settings in the application, whereas they would be unable to in the .odex file. There is really no reason to deodex an application and/or ROM other than to allow theming or other modifications of an application which you do not have access to the sources of.

Dialog

A floating window that that acts as a lightweight form. A dialog can have button controls only and is intended to perform a simple action (such as button choice) and perhaps return a value. A dialog is not intended to persist in the history stack, contain complex layout, or perform complex actions. Android provides a default simple dialog for you with optional buttons, though you can define your own dialog layout. The base class for dialogs is Dialog.

Drawable

A compiled visual resource that can be used as a background, title, or other part of the screen. A drawable is typically loaded into another UI element, for example as a background image. A drawable is not able to receive events, but does assign various other properties such as “state” and scheduling, to enable subclasses such as animation objects or image libraries. Many drawable objects are loaded from drawable resource files — xml or bitmap files that describe the image. Drawable resources are compiled into subclasses of android.graphics.drawable.

Fastboot

Fastboot is a means which allows the user to execute or Flash an img file to their device. Some devices and/or bootloaders allow this access, while others do not. All Nexus branded devices allow such access when unlocked.

Flash

Flashing is the process of writing data to the internal memory on your phone. Normally, you would flash a ROM image to the phone, which would give you a different version of system software on your phone. Flashing can also refer to updating/writing to any of the other parts of the phone, such as the SPL, Radio etc.

Flash Memory

Flash memory, also known as NAND memory, is nonvolatile – keeping information even when the device is off. Flash memory in the device is equivalent to the hard drive in a computer. This is where the device’s operating system (sometimes called firmware) and applications are stored. Flash memory is slower than RAM, but is (almost always) faster than SD cards.

Logcat

While in adb (see ADB), type in “adb logcat > logcat.txt”. This will help you when resolving issues and bugs. There are also tools in the market you can use for this, one of which is called aLogcat. It can show different categories (severity of errors ect.) too, which is something adb logcat cannot do.

Market (also Play Store)

The market on Android is a place where you can purchase or download applications for your phone. When you download through the market, the installation process is transparent (as in you don’t have to deal with the APK files yourself), and there is the facility to rate apps and post comments which are visible to other users. Frequently, the developers of apps actually take onboard the feedback in the comments (mainly the smaller apps with slightly less feedback to sift through).
When an app is installed from the market, it is copied to ‘/data/app/apkname.apk’, as the act of ‘installing’. An app can store its data in the folder ‘/data/data/apkname’. It is possible to clear the data stored by an application by using the Manage Applications feature in Settings | Applications | Manage Applications.

Intent

A message object that you can use to launch or communicate with other applications/activities asynchronously. An Intent object is an instance of Intent. It includes several criteria fields that you can supply, to determine what application/activity receives the Intent and what the receiver does when handling the Intent. Available criteria include the desired action, a category, a data string, the MIME type of the data, a handling class, and others. An application sends an Intent to the Android system, rather than sending it directly to another application/activity. The application can send the Intent to a single target application or it can send it as a broadcast, which can in turn be handled by multiple applications sequentially. The Android system is responsible for resolving the best-available receiver for each Intent, based on the criteria supplied in the Intent and the Intent Filters defined by other applications.

Intent Filter

A filter object that an application declares in its manifest file, to tell the system what types of Intents each of its components is willing to accept and with what criteria. Through an intent filter, an application can express interest in specific data types, Intent actions, URI formats, and so on. When resolving an Intent, the system evaluates all of the available intent filters in all applications and passes the Intent to the application/activity that best matches the Intent and criteria.

Layout Resource

An XML file that describes the layout of an Activity screen.

Manifest File

An XML file that each application must define, to describe the application’s package name, version, components (activities, intent filters, services), imported libraries, and describes the various activities, and so on.

Nandroid

Nandroid is used to backup or restore backups from Recovery. You can chose to either do a regular backup (Phone only) or a backup + sd-ext (Phone + Apps2sd ext.)Both will backup your whole system, the second will include apps saved on your sdcard’s sd-ext.

Nine-patch / 9-patch / Ninepatch image
A resizeable bitmap resource that can be used for backgrounds or other images on the device.

Odex

Odex stands for “Optimized Dalvik Executable” file. The Android system, as identified above, utilizes compressed data stored in the .apk file at runtime. To speed up this process, the most critical elements of application will be placed uncompressed in an .odex file, thus enabling the Android OS to quickly interpret that important information before it continues to parse the rest of the application. Stock ROMs will come from the manufacturer as “odexed”, meaning that the application(s) will have a .apk file and an .odex file, i.e. Calendar.apk and Calendar.odex.

OpenGL ES

Android provides OpenGL ES libraries that you can use for fast, complex 3D images. It is harder to use than a Canvas object, but better for 3D objects. The android.opengl and javax.microedition.khronos.opengles packages expose OpenGL ES functionality.


Radio

The Radio on a mobile phone is the part of the phone that deals with mobile connections. It handles talking to the CDMA/GSM/LTE/3G/4G network, Bluetooth, WiFi and GPS. The radio contains software that controls how it operates, and newer versions of radio firmware are made available from time to time via system updates. These updates are transparent to the user, although users who elect to install custom software can update their radio using an update.zip file made available by members of the modding community.

Flashing the radio is potentially risky, and you should NEVER pull the battery out of a phone that is flashing the radio. If you do so, it is possible your phone will be bricked. Nevertheless, it can give improved battery life, signal strength and data performance, so is often done by users moving to later versions of ROMs. Care should be taken to only flash the correct type of radio to a phone. NEVER attempt to flash a CDMA phone with a GSM radio or vice-versa. It is likely you will brick the phone if you attempt to do so.

Recovery

The recovery partition is a boot-mode for your phone that allows you to wipe your settings from the Data partition of the phone (a hard wipe), or perform an update using an update.zip file on the root of the microSD card. It is common (although not necessary) to flash a patched Recovery image, such as TWRP or ClockworkMod Recovery. This allows you to run Nandroid backup from the device, and flash modifications, such as files to the device, essentially becoming a means to install software to the device. Recovery mode is separate from ‘normal’ mode, and can be entered by holding down home whilst turning the phone on.

Resources

Nonprogrammatic application components that are external to the compiled application code, but which can be loaded from application code using a well-known reference format. Android supports a variety of resource types, but a typical application’s resources would consist of UI strings, UI layout components, graphics or other media files, and so on. An application uses resources to efficiently support localization and varied device profiles and states. For example, an application would include a separate set of resources for each supported local or device type, and it could include layout resources that are specific to the current screen orientation (landscape or portrait). The resources of an application are always stored in the /* subfolders of the project.

ROM

ROM is literally “read-only memory” but its usage has changed over time. Today ROM can refer to the non-volatile area of a device’s flash memory on which read-only data resides or the packed image to be written to that flash area.

Root

Root is the name of the highest level superuser (su) on Unix-like systems such as Android. The root user, and applications run by the root user, have administrative access to protected files and services which makes it dangerous for normal daily use.

A ‘rooted’ device is one which has been hacked to provide privilege escalation from a standard user to superuser. Rooting a device is usually the first step in installing cooked ROMs.

S-OFF/S-ON

This refers to an unlocked/locked NAND drive. HTC locks the NAND on their phones to prevent writing to the . S-OFF can generally be obtained by an exploit, by flashing an engineering SPL, or by using a process put in place by HTC.

Service

An object of class Service that runs in the background (without any UI presence) to perform various persistent actions, such as playing music or monitoring network activity.

SPL

The Secondary Program Loader is a piece of bootcode that initiates the startup of the phone, displaying the initial splash screen for the device, and loading the initial files from ROM.

It checks to see if a button combination is pressed on bootup (such as that to enter Recovery Mode or the bootloader), and loads the relevant system software. If no special instruction is given by holding keys, the bootloader loads the normal system software by initializing the boot process from the boot partition.

Flashing your SPL is risky, as the process failing will probably result in a broken, or bricked phone, since the SPL is executed very early on in the boot process, and any error here will prevent access to the recovery or bootloader features.

If you do flash the SPL though, it unlocks the Carrier-ID CID from the device, essentially allowing any RUU to be installed to the device, and allows flashing alternative or custom bootscreens.

Stock

The term stock is often used to refer to a file or part of the software which is unmodified or untouched by developers. For example, a stock ROM would be one which was produced by HTC or Samsung and which has not been modified or rooted by someone. The term is often used when comparing performance of different ROMs, as a way to refer to the phone as it came out the box.

SU

su (substitute user) is a Linux command which, when run without a username parameter, gives the user full ‘root’ permissions. By default, this command binary (ie. Linux equivalent of an executable file) is not included on Android systems, but the process of “rooting” a phone copies this file to the ‘/system/bin/’ directory thereby enabling the command. Since root privileges can be abused by malicious applications it’s highly recommended to install an app to grant and manage access to su, similar to UAC on Windows. Many ROMs include the app called “SuperSU” for this.

Surface

An object of type Surface representing a block of memory that gets composited to the screen. A Surface holds a Canvas object for drawing, and provides various helper methods to draw layers and resize the surface. You should not use this class directly; use SurfaceView instead.

SurfaceView

A View object that wraps a Surface for drawing, and exposes methods to specify its size and format dynamically. A SurfaceView provides a way to draw independently of the UI thread for resource-intensive operations (such as games or camera previews), but it uses extra memory as a result. SurfaceView supports both Canvas and OpenGL ES graphics. The base class is SurfaceView.

System

The /system directory on your device is where the main operational software for the Android OS is stored. It has a number of sub-directories of which /system/apps (where application apk’s are stored) is probably the only one users would have need to access. The /system folder is read-only by default and needs remounted via ‘adb’ to allow write access.

Theme

A set of properties (text size, background color, and so on) bundled together to define various default display settings. Android provides a few standard themes, listed in R.style (starting with “Theme_”).


Update.zip

An update.zip (does not have to actually be called update.zip if you have a patched Recovery image) is a file containing some files which will be copied to the phone’s internal memory. Normally, a new system update or ROM is stored in the file, but update.zip files are commonly used to install modifications such as themes or applications that are installed on the to prevent uninstallation.

To flash one of these files, which commonly would contain a custom ROM for your phone, you would boot your phone to a patched recovery image (whether using Fastboot, or the home+power method if you have a patched Recovery image flashed on your phone)

Update.zip files are cryptographically signed, and more information on how to sign your own files can be found online.

URIs in Android

Android uses URI strings as the basis for requesting data in a content provider (such as to retrieve a list of contacts) and for requesting actions in an Intent (such as opening a Web page in a browser). The URI scheme and format is specialized according to the type of use, and an application can handle specific URI schemes and strings in any way it wants. Some URI schemes are reserved by system components. For example, requests for data from a content provider must use the content://. In an Intent, a URI using an http:// scheme will be handled by the browser.

View

An object that draws to a rectangular area on the screen and handles click, keystroke, and other interaction events. A View is a base class for most layout components of an Activity or Dialog screen (text boxes, windows, and so on). It receives calls from its parent object (see viewgroup, below)to draw itself, and informs its parent object about where and how big it would like to be (which may or may not be respected by the parent).

Viewgroup

A container object that groups a set of child Views. The viewgroup is responsible for deciding where child views are positioned and how large they can be, as well as for calling each to draw itself when appropriate. Some viewgroups are invisible and are for layout only, while others have an intrinsic UI (for instance, a scrolling list box). Viewgroups are all in the widget package, but extend ViewGroup.

Widget

One of a set of fully implemented View subclasses that render form elements and other UI components, such as a text box or popup menu. Because a widget is fully implemented, it handles measuring and drawing itself and responding to screen events. Widgets are all in the android.widget package.

Window

In an Android application, an object derived from the abstract class Window that specifies the elements of a generic window, such as the look and feel (title bar text, location and content of menus, and so on). Dialog and Activity use an implementation of this class to render a window. You do not need to implement this class or use windows in your application.

Zipalign

zipalign is an archive alignment tool that provides important optimization to Android application (.apk) files. The purpose is to ensure that all uncompressed data starts with a particular alignment relative to the start of the file. Specifically, it causes all uncompressed data within the .apk, such as images or raw files, to be aligned on 4-byte boundaries. The benefit is a reduction in the amount of RAM consumed when running the application.
Read More

Sunday 19 February 2017

How To Use Proxy As A Tool For Access Blocked Website (Hax4Us)

Leave a Comment

Google the keyword ‘proxy websites’. Open the first link and enter the URL of blocked website and click on Go. The proxy website will fetch the blocked content to you.

How proxy websites work?

The concept is simple. a proxy replaces your IP with their own. So instead of directly requesting the page, you send a request to the proxy website first and then it forward your request to blocked website.

Note :- For Any Query You Can Comment Or Ask Me On WhatsApp ;- 9990800493


Read More

Thursday 16 February 2017

(Hindi)How To Hack Any Paid Thing In Website & Get For Free (Hax4Us)

2 comments
Hack Any Site Paid Thing
Dosto 5 days tak me ek new hacking loop ke uppar work kar Raha tha Actually Ye Google Me Ek Loop Mene Search Kar Liya H And Iss Hacking Trick Se Hum Esi Websites Ko Hack Kar Sakte H Jinki Purchasing Mechanism Low h means ab aap unn sites ke andar Jo bhi paid thing h usko hack karke free me download kar sakte h

Dosto directly me iss post ko Apne blog pe post nahi kar sakta because dosto ye bahut hi illegal h jiska bahut wrong and illegal use bhi ho sakta h. And guys post ke last me mene link diya h mene apni iss hacking trick ko ek text file me ready karke upload kiya h.

Dosto aapko iss TEXT File k liye only 49 Rupees Pay karne hoge and guys it is so small amount for my efforts so guys please support kare muje and meri mehnat ko and me aage bhi new knowledge and new tricks post karta rahunga.. Thanks You

Click Here To Download Full Version Working Any Website (Paid)

Click Here To Download Working On Some Sites (Free)

Note :- Dosto Iss TEXT File Me Jo Hacking Code Diya Hua H Usse Aap All Websites Ke Payment Page Ko Hack Nahi Kar Sakte Ye Only Low Security Mechanism Par Hi Work Karta H And Iss Trick Ko Mene Khud Self Test Or Try Kiya H And Yes It Is Working On Sites..

Warning :- Friends Meri Ye Trick Education Ke Liye H. Aapke Dwara kiya Gaye Kisi Bhi Illegal Work Ka , Hax4Us(lokesh) Responsible Nahi Hoga..!!
Read More

Wednesday 15 February 2017

(Hindi) What Is Ransomware Virus (A New Deadly Virus) (Hax4Us)

Leave a Comment
Ransomware Virus
Dosto Aap Sabko Virus To Pata Hoga Ki Ye Kya Hota H Or Ye Kya Kaam Karta H. Virus Humare System (window, android, etc ) Slow Ya Hang Kar Deta H Kbi Kbi To Format Bhi Marna Padta H. But Dosto 2017 Me Ek New Virus Invent Hua H And almost Android Mobiles And Computers Infected Kar Chuka H But Ye Virus Kya H And Isme Esa Kya H Jisse Ye Deadly Virus Bhi kehlata h And Jyada Tar Iss Virus Ko Ransomware Virus Bolte H...So....
Today I Am Going To Tell About Ransomware Virus..



To Dosto Aap Sabhi Ko Pata H Virus Kya Hote h And Kaha se aate h means kaha se hamare system me enter karte h , 90% viruses internet se humare system me enter karte h like aap sabhi internet pe sites open karte h to most of the time suddenly pop ups ya ek message aane lagta h likha hota h ki aap ke system me virus h issko remove karne ke liye humara app download kare.
Bahut baar to ye automatic hi download hone lagte h.
Almost people android to use karte hi h to aapne notice kara hoga ki kbhi kabhi kisi website ke open hote hi aapka mobile vibrate karne lagta h ya automatic apps downland hone lagte h ....to dosto ye sab kya h yhi to virus h Jo internet se aapke system me enter kar leta h.
Kabhi kabhi to mobile ka naam bhi batate h jese me apna ek experience btata hu Ek baar mene ek site open kari and suddenly ek site or open ho gyi and uspe likha hua tha ki aapka phone intex aqua power virus se infected h , virus ko remove karne ke liye humara antivirus download kare h....
To ye sab tarike h jisse ek virus kisi bhi system me enter ho sakta h
To Ransomware Virus Me Esa Kya H Jisse Ye Ab tak Ka Most Deadly Virus bn Gaya ,,, Chaliye Dekte H...

Kya h Ransomware Virus ?

Dosto Iss Virus Me Ek Khaas Baat H Agar Galti Se Bhi Ye virus aapke system me enter kar gaya to ye automatic background me run hone lagta h and 1 min se bhi kam time me ye aapki System ki Saari files songs videos everything ko encrypted kar deta means aapki all data password protected ho jata h and frr aapke data ko decrypt karne ke liye aapko ek key ki need padti h Jo virus creator ke pass hoti h and jab aapka data encrypted ho jata h tab virus ka creator aapse contact karke aapse money ki demand karta h like vo aapse bol sakta h ki 100$ do tbhi data decrypt hoga means uske paas Jo key vo tbhi dega jab aap use money denge but kayi baar esa bhi hota h ki aapne money to dedi but tab bhi vo key ni deta ...


So Dosto Me To Yahi Kahunga Ki Trusted Website Par Hi Jaye And Kisi Bhi Faltu App Ko Download Na  Kare 

Note:- Agar Aapko Koi Bhi Doubt Ho Ya Ye Lage Ki Me Ransomware Virus Ke baare Me Kuch Batana Bhool Gaya Hu To Aap Comment Me Ya WhatsApp Pe Bata Sakte H (9990800493)
Read More

Tuesday 14 February 2017

(Hindi)How to Place Your Name Or Anything On Any Website Like Google Trick (Hax4Us)

1 comment

www.hax4us.blogspot.in
Dosto Aaj Me Aapko Bataunga Ki Kese Aap Kisi Bhi Website Ko Apne Hisaab Se Change Kar Sakte. Actually Ye Ek Trick H Jisse Aap Kisi Ko Bhi Pagal Bana Sakte H And Show off kar Sakte H...Chaliye Dekhte H Ki Ye Trick Kese Work Karti h...

Requirements :

  1. Android Mobile
  2. HTML/CSS Website Inspector Application (Download From Here)
Mene Iss Trick K Steps Nahi likhe h but Mene Ek Video Banayi H Jisko Dek ke Aap Jyada Better Samaj Jayega Ki Ye Trick Kese Work Karti H And Easy Bhi H.

Click Here To Watch My Tutorial (Hax4Us)

Note:- If You Phase Any Problem In This Trick You Can Comment Or Ask Directly :- 9990800493 (No call only WhatsApp)
Read More

Saturday 11 February 2017

Kese Bane Real Me Anonymous..Bye VPN (Hax4Us)

Leave a Comment

Guys Mne Pichle Post Me Apko Btata Tha Ki VPN Kya Hota H And Iska Use Hum Kyo Or Kese Karte H but Mne Ye Bhi Bataya Tha Ki VPN Se Hum Anonymous Ni ho Skte h So,,
My Today's Trick Is About That How We Can be Anonymous On Internet...

Firstly we are going to talk about 'TOR' ...

TOR kya h ..??

Dosto aap sbhi ko pata hoga ki VPN kya hota and agr ni pata to aap mri past post read kr skte h . So guys actually ToR bhi VPN ki tarah hi work karta h but iska working method different h isliye ye VPN se best h..

To Kya H Iska Working Method ..??

Dosto TOR ko (Onion Router) bhi kehte h because jis prakar onion me different layers hoti vse hi isme bhi different layers hoti h .
VPN humari IP address change karta h maan ligiye apki IP India ki h frr VPN ise American IP me change krdeta h okk..
But TOR me 9 round hote h means 9 layers hoti h ..simple words me VPN humari IP only one time change karta but jb aap TOR use kr rhe ho to TOR apki IP address ko 9 baar change karta h means vo apki real IP ko 9 layers me ESE change karta h ki koi bhi Hume fetch ni kar skta h.
Maan lijiye apki IP India ki h to TOR apki real IP ko 9 baar change krega ..jese pehle U.S ki frr Canada ki frr Switzerland ki and So On..
But dosto LOG file to isme bhi hoti h to iski detail bhi company k paas jati hogi... To ab kya kre jisse iss LoG file ko bhi him fool bana sake...?? 
So dosto tention mt lijiye mene ek trick develop ki h jisse aap real Anonymous ban sakte h

Steps :-


  1. Firstly dosto aap TOR download kijiye and ek best VPN provider App download kijiye.
  2. Second Ab Aap VPN On Kare ya Connected kre..
  3. Frr aapko jb confirme ho jaye ki aapki IP address change ho gyi then aap TOR app open kre ek connected ho jaye.
Boom....Now Ab hoga Kya ki Jb Aap TOR Open Karenge To And Connected Hoge To Vo Apki Real IP ni le payega Because Apne VPN se pehle hi Apna address Change krdia H.

Thanks Guys For Reading..!!

Note:- अगर आपको  किसी भी प्रकार की परेशानी आती है तो आप कमेंट मे पुंँछ सकते हैं !

Warning:- आपके दवारा किये गये किसी भी अवेध कार्य के लिये हम जिम्मेदार नहीं होगे !
Read More

Friday 10 February 2017

Kya Ye Sach H Ki VPN Hume Anonymous Bana Deta H | Sach Jane (Hax4Us)

Leave a Comment

Aaj hum baat krne ja rhe h uss technology ki jise aaj kl sbhi use krte h -- VPN (Virtual Private Network)...To Chaliye Pehle dekhte h ki VPN H kya 


VPN :-

VPN jise Virtual Private Network kehte h aaj kl bahut popular hota ja rha h. Actually ye ek service h Jo koi VPN service provider provide krata h . VPN ek tunnel ka kaam krti h ye sabse pehle humare net ko apne system se connect karta h and frr world net se connect krdeta h ..


Iska Use Hum Karte Kyo H..???

Iska Use Hum Internet Pr Anonymously surfing krne k liye krte . Means Ye Humara IP Address change krdeta h (not hidden) .

IP address kya h..??

Agr Aapne koi crime kra to police aapke ghar aayegi but kese aayegi ..normal baat h ki police pehle aapke ghar ka address pata karegi TBI to aayegi and jb police ko aapke ghar ka address hi ni pata chalega to kese aayegi hmm...ni aa payegi or aap bach jayege ...Usi type se jab aap internet p surfing krte h to aapka bhi ek address hota jisse internet pr aapki pehchan hoti ..

Internet pr aapko aapk naam se ni aapk IP address jise Internet Protocol Address kehte h se jante h ...so VPN aapk isi address ko change krdeta h ...
For example AGR aap India me bete h or IP address U.S ka h To internet PR apki location bhi U.S ki hi hogi.

Bahut se VPN service providers h jese droiVpn , open VPN , fly VPN etc

To kya ye sach ki VPN use krne se hum anonymous ho jate h ??

Yes it is true but ek ESA truth bhi jise aap shayad ni jante honge and isi sach ko batane k liye hi mne post daali h..

To Really me hota Kya h :- 

Haan VPN se humara IP address change ho jata h and normal users k liye sahi bhi h but AGR aap real me anonymous ban gaye h ESA sochkar koi illegal work karte h and sochte h ki muje to koi pakad hi ni sakta to ye wrong h because VPN companies ki bhi apni policy hoti h and AGR apke baare me police ya govt. Kisi bhi VPN provider company se details maangti h to use deni hi padegi.
Aap abhi apni app ya software check kr skte h chahe android app ho ya window app..aapke app me ek option hoga jika naam hota h "LOG" ye apki saari details save karleta and uski ek copy us main company ko de deta h jis bhi company ka aap app use kr rhe h ...

To ab bhi aap sochte h ki aap Anonymous but sorry to say ESA ni h ...

But haan it is possible but direct kisi app se ni me apko apni next post me btaunga ki hum real me anonymous kese bane or apni govt ko fool kese banaye ..

Thanks Guys For Reading...
Read More

Thursday 9 February 2017

Dosto Kya Web Vhi H Jo Aap Sochte H ? Padiye Jarur (Hax4Us)

Leave a Comment
Guys me aaj kuch esa btane ja RHA hu Jo aap daily life me sunte to h but uska meaning galt sochte ..

What is web ?


Agr koi Aapse Puche Ki Web and Net me kya difference h to 80% bnde kahenge ki ..I think both are same ...but actually esa ni hota .

Web vs Net 


Web :

Web only ek service or Net vo feature ya suvidha h jiske dwara hum web service provide krte h..
Aap apni daily life me kitni sites open krte honge I think sbhi approx 2 ya 3 sites to open krte hi honge to apne kbi socha h jb aap apne browser k URL box me jaha site ka link show hota h vha kisi bhi site k address se pehle HTTP Ya HTTPS likha hota h ...so what is this..??
This is a Hypertext Transfer Protocol Iss Protocol ka use web service ko provide krane k liye hota .
To Simple word's me web ka use web pages load krne me hota h
"WWW" world wide web ye pura naam h web ka hum ise short me web bhi kehte h
"FTP" File Transfer Protocol , ye bhi ek service Jo net k dwara provide krayi jati h AGR aapne kbhi website bnayi h to apko iska meaning pta hoga frr bhi me bta deta hu...aap jb bhi kahi bhi apni files upload krte h to vo FTP service k dwara hi possible hota h means iss service ka use krk hum net pr kahi bhi koi bhi files upload kr skte h

Net :

Now ab net kya h ...?? Net like a father of all net based services
Aap dek skte h ki Yellow Circle me internet h and uske under me WWW , FTP , TELNET etc services aati h. To isse ye pta chalta h ki internet ek esa hardware h Jo inn sbhi software's ko handle karta h 

Conclusion :-
To Web and Net same ni h ..web only net ka ek part h jse or bhi part h net k like FTP ,Email.

Read More

Sunday 5 February 2017

What Is Surface Web, Dark Web And Deep Web

6 comments
Internet is divided into 3 parts that is Surface web, Deep web, and Dark Web. But what are these things. What are these parts of internet? what does that means? In today’s article Hax4Us going to tell you about What is Surface, Deep, and Dark Web Internet?



Now, peoples think that internet is big thing. Yes, it is big but you don’t know how much big it is and you cannot even imagine how big it is.

🚢Surface Web

Everything which you are using now in internet is called as surface web. You are visiting Hax4Us it is surface web. You watch YouTube everything is surface web.
You find everything on Google , Bing Search, Yahoo search and etc. This all things comes in Surface web.

Everything which you can find and search on Google is known as surface web. 

Actually this internet is only 4%. This is you and you are just using 4% of internet daily.

Now, you might be thinking about just 4%? Where is other part of internet. But remaining is about Deep web.



🌒Deep Web

Deep web is another part of the internet. Which is not indexed by Google. It means you cannot search for this information in Google. Not just only in google but in any search engine.
These are Google Drive storage in which you store your data. Then any online cloud storage. In which you store your important data. All these things are not shared on Search engine.


If you have save a file in your online storage. Now, if you want to search for that link. You won’t found that link. Because it is your private information. Everyone is having a online storage and save something in your cloud. That can be anything such as your family images, video and all your personal details.

It is said that 96% of internet is been used in Deep web. This is the reason behind the deep web is too vast thing. I think many people don’t know about this information.



⚓ Dark Web

Dark web. This is something really dangerous. In the dark web there is trading going on of Guns, Ammo’s, Drugs, Porns and many more illegal stuffs. Which is really bad and you should not visit this site.
Visiting Dark web is completely illegal and you will end up going to jail if you are going to visit in dark web from your normal browser.
Dark web is also not indexed on Google and for that you need a special URL which is been needed if you want to visit Dark web.


There is a browser which is called as TOR Browser . It is also called as The Onion Router. In which you can access Dark web. I won’t be telling you about what ways you can access to dark web and all. Just because it is completely illegal.
Make sure you don’t visit dark web in your life. Just because it is too violent and One should not visit in your life.

Last Words

This was all about What is Surface, Deep, and Dark Web Internet? I hope you like this article.
Share this article with your friends. Your friends will be amazed knowing the secret behind this internet.

Don't Forget To Like Our Official Fb Page



Read More

Thursday 5 January 2017

WhatsApp working on new features to be released in 2017

1 comment

WhatsApp team has been hard at work in improving and adding new features to its Messaging Application on all the platforms. The team has been working very hard in testing some new features which they plan to release to its App on all the platforms. Below are the list of new features the team is planning to release to the official version of the App. Currently the below features are being tested on the Beta Applications on the platforms.
List of new features:
  • Revoke Sent Messages:The WhatsApp Team is working on releasing Revoke Messages feature to its application. Currently, it’s  been tested with the beta software for iPhone. Users claimed that the trial allowed them to revoke their messages. Thus, the recipient would get a note saying that the message has been revoked by the sender.
  • Preview of Archived Files: WhatsApp is still testing another feature that should allow users to preview contents from files sent in archive, which include ZIP and RAR files.
  • Streaming Videos: Reports say that users will be able to view streaming videos as they download. Accordingly, this feature has solely been featured for beta users only. This will allow users to play videos immediately without waiting for the download.
  • Animated GIF Image Support: Users will be able to send GIF through the attached file button that will open the device’s Gallery. Thus, they will be able to find the right GIF file to share to recipients.

Don't forget to like our official fb page 


Read More