Skip to main content

DMCA

DMCA

If we Have added some content that belong to you or your organization by mistake, We are sorry for that. We apologize for that and assure you that this wont be repeated in future. If you are rightful owner of the content used in our Website, Please mail us with your Name, Organization Name, Contact Details, Copyright infringing URL and Copyright Proof (URL or Legal Document) at ///

I assure you that, I will remove the infringing content Within 48 Hours.

Comments

Popular Posts

How to Hack Your Friends Camera

  Camera Phishing:      Hello, Friends, today have tried to tell you an interesting hack about the camera of your friends and impress them with the help of an Amazing tool here no pc or computer is required so we are starting some simple steps which help you to do cam-phishing . First , open your play store on your android mobile phone and then search TERMUX and you have to download it. then it need approx 1 min for installation in your android phone and then you have to write some keywords which help to execute  you have to on your network connection. Write pkg update then it starts executing and after if it gives you the option to check yes or no then type Y else it will automatically execute. Write pkg upgrade then it will execute some functions. Then you have to write  https://github.com/techchipnet/CamPhish.git and after that press enter. then exit you will come out of termux then again open termux and then again write all steps from 3 t...

Hello World program in different different languages

C: #include<stdio.h> int main(){     printf("Hello World\n");     return 0; }   C++: #include<iostream> using namespace std; int main(){     cout<<"Hello World"<<endl;     return 0; }   Python: print("Hello World\n")   Node JS: console.log("Hello World");   Java Script: document.write("Hello World");   Objective C: #import <Foundation/Foundation.h> int main(int argc, const char* argv[]){      @autoreleasepool{          NSLog(@"Hello World");      }      0; } JAVA: class HelloWorld{     public static void main(String[] args){          System.out.println("Hello World");     } } BASH: echo "Hello World"