Skip to main content

Posts

Here’s Why Your Downloading Speed Is Always Lesser Than What Your Service Provider Promises.!!

Internet connection is a must for every household today. It is worth saying that – in today’s generation a person can live without food but can’t survive without a smart phone and obviously the internet connection. It has become so important that we carefully choose the pack and pay for the desired pack from the Internet Service Provider (ISP). But have you ever wondered or checked why your downloading speed is always lesser than what your ISP promises? Actually it is myth that our speed is always lesser than what our ISP promises. Confused? Smart marketing stratergy of Internet Service Providers: The Internet Service Provider (ISP) always lures people by their marketing strategy so as to buy their service. In other words ISP always gives you the speed in terms of Bits per second but when downloading a file from internet, the downloading speed will be shown in Bytes per second. This leads to so much confusion in the mind of a common man and he thinks ...

How To Download A Website For Offline Access Using HTTrack?

How to download a website for offline use? There are many software which facilitate offline viewing of a website. In this article, I will bring to the spotlight the open source offline browser HTTrack Website Copier. It is a well-liked software used for offline browsing of websites. HTTrack (WinHTTrack for Windows) can download an entire website. And entire means entire–all the text, images, videos, GIFs, all of it. Although HTTrack is available for different operating systems, I have used Windows OS to explain the working of HTTrack as it is preferred by many users over other operating systems. Follow these steps to download a website for offline viewing using HTTracks: Follow the link given ahead and download  WinHTTrack . 1. Click  Next  on the welcome page. 2. Type  Project  and  Category  name (choose any name as per your liking) in the field and click  Next . 3. From the drop-down menu in front of Action, select  Dow...

How to Turn Off Your PC Using Your Smartphone

Do you want to turn off your PC at your home and save some electricity. Or may be try to shutdown your PC from outside just because it looks cool. We got you covered. If you ever walked away from your computer and remembered that you forgot to turn it off, you can actually do it from your smart phone! To begin with, you need to download Unified Remote app on your smartphone ( iOS ,  Android ), and you then need to download it’s server to your computer from  this website  right here. You can go through the installation process on your PC  and it is easy, straightforward and there is no spyware or any nonsense which comes with it. Once you are finished, make sure the server app is running on your computer, and then open the app on your mobile. It will scan for a server on your local network. Once it finds the server it will let you control your computer. Now, the way the app works is with a bunch of different rem...

How to Remove a Virus from Android Without a Factory Reset

Desktops aren’t the only gadgets that can be affected by a virus. Android devices have a malware problem and it’s growing every day. If you do get a virus, you could perform a factory reset to get rid of it, but that means you’d lose all your data — those photos you shot, the saved games, the text messages, and everything else. Obviously, you want a factory reset to be your last option. So what can you do to remove a virus from Android without a factory reset? Is It Really a Virus? If your phone isn’t functioning the way it should be, there’s a chance you have some malware on it. One wrong tap somewhere and a malicious file might have been downloaded on your phone, which is leeching battery life, Internet resources, or your personal data. But it could be something else. Suppose your Android refuses to boot or crashes every time it starts up. Or maybe you can’t seem to download apps from the Play Store. These are not necessarily caused...

Linux Commands Cheat Sheet

Kali Linux commands cheat sheet. All basic commands from A to Z in Kali Linux has been listed below. Any command is wrong kindly comment below.  Download Cheat Sheet: Kali Linux Commands Download Cheat Sheet: Kali Linux Commands

7 algorithms and data structures every programmer must know

In programmers life algorithms and data structures is most important subject if they want to go out in the programming world and make some bucks. Today, We will see what they do and where they are used with simplest examples. This list is prepared keeping in mind their use in competitive programming and current development practices. 1. Sort Algorithms Sorting is the most heavily studied concept in Computer Science. Idea is to arrange the items of a list in a specific order. Though every major programming language has built-in sorting libraries, it comes in handy if you know how they work. Depending upon requirement you may want to use any of these. Merge Sort Quick Sort Bucket Sort Heap Sort Counting Sort More importantly one should know  when and where to use  them. Some examples where you can find direct application of sorting techniques include: Sorting by price, popularity etc in e-commerce websites 2. Search Algorithms Binary Search  (in linear data structur...

Top 5 Bootable USB Tools For Windows Operating System

In this article, I have created a list of the top 5 bootable USB tools for Windows operating system. You can create ISO files for different Windows operating systems, Linux distros, and also make Linux Live USB drives. All these bootable USB tools have their advantages and disadvantages. One of the most common methods of installing an operating system on a computer is to create a bootable media. We can also install an OS using the inbuilt features, for instance, the Reset option present in Microsoft Windows 8 and later. For that, an already running operating system on your machine is a pre-requisite. On the other hand, that’s not the case with the bootable media, you can use it even if your computer doesn’t have any operating system installed at all. Primarily, we create a bootable media using a CD/DVD or a USB drive. However, the former one has become obsolete because it is technologically backward than the USB drive-based bootable media. Now, there are many tools a...

Rooting

Rooting is the process of getting the superuser (root) permissions on an Android device (which is also a type of Linux system). This allows you to install unauthorized applications and ROMs, delete bloatware and other kinds of stuff. However, in many countries, rooting might result in voiding your warranty. If you are a long time Android user, you might have come across various applications asking for root access to function. The internet is full of articles on rooting and the whole process is different for different smartphones. There are tons of guides on online forums and there is no single guide that works for all smartphones. Well, in this article, I’ll try to tell you the meaning of rooting and some related aspects. What is rooting? Here, we love Linux and open source software. So, I expect that you might be using a Linux distribution for everyday computing. In that case, you might be aware of running a command with sudo. It allows you to run programs with root permissions...

How to generate exceptions in virtual constructors

It is possible that exceptions might raise in a constructor or destructors. If an exception is raised in a constructor, memory might be allocated to some data members and might not be allocated for others. This might lead to memory leakage problem as the program stops and the memory for data members stays alive in the RAM.   Similarly, when an exception is raised in a destructor, memory might not be deallocated which may again lead to memory leakage problem. So, it is better to provide exception handling within the constructor and destructor to avoid such problems. Following program demonstrates handling exceptions in a constructor and destructor: #include<iostream> using namespace std; class Divide { private: int *x; int *y; public: Divide() { x = new int(); y = new int(); cout<<“Enter two numbers: “; cin>>*x>>*y; try { if(*y == 0) { throw *x; } } catch...

How to work with virtual constructors and destructors in C++

C++ allows programmers to create virtual destructors. But, it doesn’t allow virtual constructors to be created because of various reasons. To know why a virtual destructor is needed, consider the following program: #include <iostream> using namespace std; class A { public: A() { cout<<“A’s constructor”<<endl; } ~A() { cout<<“A’s destructor”<<endl; } }; class B : public A { public: B() { cout<<“B’s constructor”<<endl; } ~B() { cout<<“B’s destructor”<<endl; } }; int main() { A *bptr = new B(); delete bptr; return 0; } Output for the above program is as follows: A‘s constructor B’s constructor A‘s destructor   From the above output you can see that derived class destructor didn’t e...

WAFNinja – A Tool To Bypass WAF

WAFNinja  is a CLI tool written in Python. It is the best tool for penetration testers to bypass a WAF by automating steps necessary for bypassing input validation. The tool was created with the objective to be easily extendable, simple to use and usable in a team environment. Many payloads and fuzzing strings, which are stored in a local database file come shipped with the tool. WAFNinja  supports HTTP connections, GET and POST requests and the use of Cookies in order to access pages restricted to authenticated users. Also, an intercepting proxy can be set up.   Using Command: wafninja.py [-h] [-v] {fuzz, bypass, insert-fuzz, insert-bypass, set-db} ... Example: Fuzz: python wafninja.py fuzz -u "http://www.target.com/index.php?id=FUZZ" -c "phpsessid=value" -t xss -o output.html   Bypass: python wafninja.py bypass -u "http://www.target.com/index.php" -p "Name=PAYLOAD&amp;Submit=Submit" -c "phpsessid=value" -t xss -o output....

How to get 100 rs on bookmyshow for free

First of all sorry to all my readers for posting so late...Now coming to the point I would like to tell you that bookmyshow has started a referral offer in which we will get 100 rs each ...many of you might be knowing it also but today I came to know that to reffer first you have to add some money from your credit card then you will get 100 rs or your refferal code ....don't worry I have added some money in my account and got my code....you all can use my code:- G429LCX and get 100 rs without adding any money and you will get a discount of 100rs on booking your tickets and after booking your tickets you will get your refferal code for free also ...so what are you waiting for just grab this offer before it expires... It's your choice😎.

Basics for Hacking

BASIC OF HACKING Hacker means someone who finds weaknesses in a computer or computer network, though the term can also refer to someone with an advanced understanding of computers and computer networks.Hackers may be motivated by a multitude of reasons, such as profit, protest, or challenge. The subculture that has evolved around hackers is often referred to as the computer underground but it is now an open community. While other uses of the word hacker exist that are not related to computer security, they are rarely used in mainstream context. Classifications:- Several subgroups of the computer underground with different attitudes use different terms to demarcate themselves from each other, or try to exclude some specific group with which they do not agree. Eric S. Raymond (author of The New Hacker's Dictionary) advocates that members of the computer underground should be called crackers. Yet, those people see themselves as hackers and even try to include the views of ...

Hack your mobile's password or pattern without loosing data(with and without root)

Method 1 : Flashing zip file from CWM recovery For this method, it is necessary that your phone has a custom recovery like Clockworkmod (CWM) installed in it. Downloads : 1. Lock Screen Security Bypass for Android. Procedure : 1. Download and copy the zip file on your phone external memory. You may use memory card reader for that. 2. Switch off your device. You need to boot into CWM recovery mode now .Note that every device requires different key combination to enter recovery mode. (power button + Vol.+/Vol.-). 3. After landing into CWM recovery , select install zip from sd card option. 4.On the next screen choose zip from sd card option. This will show all the files loacated on the sdcard. 5. Just navigate to the zip file which you have just transferred on your phone. 6. select the file and confirm the installation by selecting 'Yes-Install LockScreen_Security_Bypass.zip'. 7.Wait for the flashing process to get completed. It will hardly take ...

How to find and delete duplicate files on pc

I am always a victim of lots of useless and redundant data in my PC. Out of all these useless files, a good percentage of the content is the duplicate data. It’s always difficult to find duplicate files and delete them manually. So today I am going to show how can you find the duplicate files and delete them from your computer. There are hundreds of good software out there that can find the duplicate files in your system and remove them. But, I found Duplicate Files Finder light and fast to use. Duplicate Files Finder is a software that locates the duplicate files (same content, but not necessarily same name). You can delete them manually or create links. The search used in this software is very fast compared other programs of the similar nature with hashing algorithms. Firstly , all the files are sorted by size as duplicate files will have equal size. Other search software use hashing algorithms that scan the files completely. Also, additional caching of files improves ...