Skip to main content

Posts

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 ...

Catch the guy who is using your fake Facebook account easily and quickly

Is someone using your fake Facebook account and spoiling your name.Then this is the right place for you. Here in this post I will be telling how to catch that guy Facebook chat runs on XMPP protocol now which is not peer-2-peer, so it is not possible to determine the IP address of the user through Facebook Chat using Netstat command. All i will be doing is use some social engineering skills and default ‘ Banner grabbing ‘ technique of a web server. Banner Grabbing is an enumeration technique used to get information about a particular computer system on a network/internet (Information like: Operating system, browser, IP address, etc.) Steps in finding an IP address of a fake Facebook user: # 1.  Collect as much information about the fake profile as you can and identify all of the people who are connected to the profile. Make a list of connected people to this account who are your real life friends. # 2.  Select any one of your close friend or relative on that list...

Meet “Steve Jobs of Robotics” – Man Who is Making World’s First Humanoid Smartphone

Tomotaka Takahashi, considered as Steve Jobs of robotics, aims to gift humanity a talking humanoid smartphone very soon. An associate professor at the University of Tokyo, Tomotaka Takahashi has built a lifestyle around his smart gadgets and plans to extend his robot family now. It is no denying the fact that we are going to be surrounded by Artificial Intelligence soon. Robots engaged in our chores; you might be greeted at the reception by one of those in the near future. But the question is how near is that near future, how soon? Tomotaka Takahashi, a roboticist and an associate professor at the University of Tokyo plans to do it, well, really soon. He strategies to build a pocket size robot with features of Siri. And he is ready to unveil his hybrid four-limbed Siri. Did you get the plot? It is similar to Tony Stark giving Jarvis a body!! C’mon people. Takahashi in his own words, he wants to become “Steve Jobs of Robotics”. He aims to build smartphones in the humanoid form, mo...

Hacking Someone's Facebook Password Using Some Software Or Website? No Sir You Can't!

Hacking Someone's Facebook Password Using Some Software Or Website? No Sir You Can't! Do you know there are over thousands of websites and software that claim to hack Facebook password of any account? They'd ask you the victim's profile ID, maybe your credentials and some money too and will reportedly tell you the password which, to be honest, never works. Ever wonder why? Let me tell you why, they're FAKE! They're a scam which tricks you somehow in losing your money or your own Facebook account. Just give it a thought, why would Zuckerberg and his team spend Billions of Dollars on Facebook if one could hack it in less than a minute? Today, we'll take a look at this topic in detail with some example websites and software and get answers to some common related questions. Back in 2005, I came across a mechanism that reportedly hacked Yahoo mail password for a user using some simple tricks. It didn't work for me for obvious reasons but I d...

Linux 101 Hacks eBook Free Download

“ Linux 101 Hacks ” by Ramesh Natarajan is available in PDF format for free. This book gives you practical examples to build a strong foundation in Linux. Table of Contents:- Chapter  1: Powerful CD Command Hacks Hack 1. Use CDPATH to define the base directory for cd command Hack 2. Use cd alias to navigate up the directory effectively Hack 3. Perform mkdir and cd using a single command Hack 4. Use “cd -” to toggle between the last two directories Hack 5. Use dirs, pushd and popd to manipulate directory stack Hack 6. Use “shopt -s cdspell” to automatically correct mistyped directory names on cd Chapter 2: Date Manipulation Hack 7. Set System Date and Time Hack 8. Set Hardware Date and Time Hack 9. Display Current Date and Time in a Specific Format Hack 10. Display Past Date and Time Hack 11. Display Future Date and Time Chapter 3: SSH Client Commands Hack 12. Identify SSH Client Version Hack 13. Login to Remote Host using SSH Hack 14. Debug SSH Client Sessi...