Wednesday, 30 March 2016

How to Watch Security Cameras on the Internet

Want To see CCTV cameras On Your Internet? 
Here Is The Exploit!
1-Open your browser.
2-Go to http://www.google.com
3-Copy paste a code and put it in google click enter and bam you will get some cameras by clicking on the search links .
Here I have accumulated a list of Google Dorks that can be used to explore some of the IP cams that can be accessed Online without any Authentication .
inurl:/view.shtml
intitle:”Live View / – AXIS” | inurl:view/view.shtml^
inurl:ViewerFrame?Mode=
inurl:ViewerFrame?Mode=Refresh
inurl:axis-cgi/jpg
inurl:view/index.shtml
inurl:view/view.shtml
liveapplet
intitle:liveapplet
allintitle:”Network Camera NetworkCamera”
intitle:axis intitle:”video server”
intitle:liveapplet inurl:LvAppl
intitle:”EvoCam” inurl:”webcam.html”
intitle:”Live NetSnap Cam-Server feed”
intitle:”Live View / – AXIS 206M”
intitle:”Live View / – AXIS 206W”
intitle:”Live View / – AXIS 210″
inurl:indexFrame.shtml Axis
intitle:start inurl:cgistart
intitle:”WJ-NT104 Main Page”
intitle:snc-z20 inurl:home/
intitle:snc-cs3 inurl:home/
intitle:snc-rz30 inurl:home/
intitle:”sony network camera snc-p1″
viewnetcam.com
intitle:”Toshiba Network Camera” user login
intitle:”i-Catcher Console – Web Monitor”
Here is a Screenshot  :
How to Watch Security Cameras on the Internet

Tuesday, 29 March 2016

GOOGLE inbuilt offline game and its HACK.

HELLO GUYS ,Welcome to the USERX.

We’ve already seen how Google plans to make intermittent connectivity issues less of a hindrance through cache page loading malarkey.
Helpful as this may be the latest Canary builds of Google Chrome comes with a little extra sweetener. Hidden within the browser’s new-look ‘Network Error’ page is a cute, endless running game. It even features the ‘lonely t-rex’ character used to illustrate the browser’s error pages.
This button-mashing game certainly helps me channel my frustration pass the time while I wait for the network to solve itself. If you use Chrome Canary on Windows or Mac (or run Chromium from trunk on Linux) here’s how you can try it.
How to Play The Endless T-Rex Runner Game in Chrome.


Turn off your Wi-Fi connection (or use the developer tools in Chrome to simulate this). Then, open a new tab and load up a website. You’ll see the standard (though redesigned) Network Error page, topped by the lonely T-Rex glyph created by Google designer Sebastien Gabriel.

Typically at this point you’d close the tab and tut loudly, gesturing for the nearest barista to go and reboot the router. Instead, tap the space bar on your keyboard.

The lonely T-Rex at the top of the page will suddenly bounce. A stretch of land will appear before him. And then…he’ll start running.

Like other endless runner games the goal is simple: run as far as you can, for as long as you can, until you crash. You’ll need to keep mashing the space bar on your keyboard to help the T-Rex clear the conveyor belt of variously spaced, differently sized cacti.

Every 100 points marker is punctuated by a screeching high score blip.

HOW TO HACK IT????

Google Chrome Runner game is written in JavaScript . So it is easily hack-able by changing some function using chrome console you can easily hack it .


Lets do it :

  • Disconnect internet & try to open any webpage.
  • Now you got screen says "Unable to connect internet" Now by pressing space button google chrome Runner game started.
  • Right click on chrome page & select "Inspect element ".
  • A new window open within that page then click on console
  • Now If You wanna See functions define for Runner Game .Type  below instruction in console.
    1. Runner.prototype
    2. Now Modify GameOver Function to hack this game
    3. Runner.prototype.gameOver=function (){console.log("codecops.in")}
    4. You are done ,Now you are not gonna Die {Try game} :P . But speed of Dinosaur is very slow so lets make it faster.
    5. Runner.instance_.setSpeed(1000)
    6. NOW YOU ARE IMMORTAL ENJOY!!!!! BY USERX


Monday, 28 March 2016

CALCULATIONS ON COMMAND PROMPT (CMD)

THE COMMAND PROCESSOR CMD.EXE COMES WITH A MINI CALCULATOR THAT CAN PERFORM SIMPLE ARITHEMATIC ON 32BIT SIGNED INTEGERS.

THESE COMMANDS ARE:

C:\>set/a2+2
C:\>set/a2*9
C:\>set/a(2*9)/2

NOTE: We had had to quote the shift operator since it would otherwise be misinterpreted as a "redirect stdout and append operator".

FOR MORE INFORMATION ,type "set/?" at the CMD.

HERE "+" stands for ADDITION.
"*" stands for MULTIPLICATION.
"/" stands for  DIVISION.


Saturday, 26 March 2016

How To Create Bootable USB Without Any Software In Windows 10 (Using Command Prompt)

Create Bootable USB without any software on Windows :


  • Insert your USB flash drive to your computer.
  • Search for ‘cmd’ in Windows 10 from the taskbar, Command Prompt will appear. Alternatively, you can also open the  Command Prompt by pressingwindows+R at the same time and typing in ‘cmd’ in the ‘Run’ window and hitting enter.
  • Right click on Command Prompt and select ‘Run as Administrator’ in case you have searched for cmd in the Windows 10 Taskbar.
  • Once the Command Prompt window appears, type diskpart and hit enter. Wait until the diskpart utility runs in another window.
  • In the new diskpart window, type list disk and hit enter. It will show you all active disks on your computer.
Most probably, you will see two Disk types.
  • Disk 0 for hard drive and,
  • Disk 1 for your USB Flash Drive with its total capacity.
Since we are going to work on to create bootable USB drive, we will work with Disk 1.
  • Type select disk 1 in the same windows and hit Enter. You will get a message ‘Disk 1 is now the selected disk’. That means, any further operation that you do will affect your disk 1 directly.
  • Type clean and hit Enter to remove all of the data in the USB drive. Clean command will format your bootable drive. You will get a message like ‘Diskpart succeeded in cleaning the disk’.
  • Type create partition primary and hit Enter. You will get a message likeDiskpart succeeded in creating the specified partition.
  • Type select partition 1 and hit Enter. It will choose partition 1 for setting up it as an active partition.
  • Type active and hit Enter. It will activate the current partition.
  • Type format fs=ntfs quick and hit Enter. This command will format your current partition as NTFS file system quickly.
  • Type exit and hit Enter. Exit command will close the Diskpart program. But do not close the command prompt Windows.
Now before we proceed, let us assume that the USB drive is the G: drive and the DVD installer is located on drive E:. And, you also have inserted a DVD inside the DVD drive from where you want to copy the data to create a bootable USB drive.
By default, Command Prompt’s active directory for Administrator permission is on C:\Windows\System32>. We will navigate Command Prompt to set on DVD (E:) as its active directory. Remember there should be a DVD inside DVD installer.
  • Just type E: then hit Enter, and then the active directory is changed to E.
  • Type cd boot and hit Enter. Now the active directory is changed to E:\boot>
  • Type bootsect /nt60 g: and hit Enter. It will create the boot sector on G: drive (USB Flash drive).
  • Type exit and hit Enter to close the Command Prompt.
Until this step, we have been successfully able to create a bootable USB drive and the flash drive is ready to be used as a boot media.
To install Windows from a bootable USB drive, we just need to copy the whole installation files contained on the DVD installer to the USB flash drive.
  • To do this, open the Command Prompt as in previous steps.
  • Once the command prompt is open, type xcopy e: \ *. * G: \ / E / H / F and then press Enter. Wait until all the files in the DVD installer are copied onto the flash drive.
Now bootable USB drive is ready to be used for installing Windows from the Flash drive and you’re done.

Samsung Galaxy S7 hack allows you to use Dual-SIM and MicroSD together

Samsung Galaxy S7 edge hack will allow you to use microSD and dual SIMs at same time

Samsung has launched its new flagship, the Galaxy S7 and S7 Edge. While both the new Samsung smartphones have been heartily welcomed by Android fans worldwide, they lament the fact that Samsung has not provided a separate slot for SIM as well as MicroSD card in the dual-SIM enabled Galaxy S7 Edge smartphone.
The Samsung Galaxy S7 Edge dual-SIM smartphone version buyers can either choose additional storage through microSD card and a single SIM card or dual SIMs and no additional storage. However resourceful hackers have found a way to bypass this restriction and add both dual-SIM and microSD capability to the Galaxy S7 Edge smartphone.
The hack which has surfaced online requires some modifications to your SIM card and your microSD card so that you can use both SIM slots and a microSD card at the same time. Do remember that the modifications are risk and you might destroy your SIM card and your microSD in the process. There is also a chance you might damage your new smartphone, so beware.
For modification process you need a nano SIM card, lighter, scissors, tape or glue, memory card, and the willingness to risk your new Samsung Galaxy S7 Edge. This hack requires you to heat up the back of the SIM card and then hack the actual SIM chip away from the plastic backing leaving you with only the gold contacts and no plastic surrounding it. You then have to precisely trim that SIM card.
Once you have the card trimmed per the steps according to a tutorial posted by noreplied, you have to glue or tape the SIM chip to your microSD card in a precise location.
maxis-hot-link-sim
The modification also requires some precise and skillful engineering especially while removing the chip from the Nano SIM.
celcom-sim-remove-1
Next, with the same precision you have to trim your SIM card.
nano-sim-chip-trim

As it turns out the trimmed SIM card can fit onto the microSD card in such a way that the contacts for the memory card can be read at the same time the SIM is read in the dual-purpose slot.
attach-nano-sim-micro-sd
If you trim and glue precisely enough, you should be able to configure the new SIM card with the dual SIM manager application in Galaxy S7 Edge.
If you see the dual-SIM option that means you have done a pretty good engineering job. Once done, your engineering feat will give you both a second SIM card and additional storage to enjoy for your content.
Remember you have to follow all the steps precisely otherwise you may end up messing your brand new Samsung Galaxy S7 Edge smartphone.

Friday, 25 March 2016

Hacking ISP for free internet or Bypass ISP Login Page!

Hello Guys,
Team UserX Here! In this  post, I m gonna share with you an awesome trick to bypass your ISP login page and gain internet access for free. This trick is work on allWAN networks except Dial-up networks. Networks which uses a username and password to connect are known as PPPoE will not work with this trick because every client uses a different username and password. But it will work on Static IP and DHCP networks!

Required Software:

Netcut: This is a software which finds IPs and MAC or Physical addresses of the connected clients in your network. There are hundreds of users and sometimes thousands in a particular ISP. This software has a user-friendly interface which is quite easy for beginners.

Steps for Getting Free Internet!

  1. Download Netcut
  2. Install Netcut and run it.
  3. Now, you have to allow perhaps 10 seconds for the software to scan the connected clients and show their information.
  4. Now, as mention earlier that it will only work on DHCP and Static IP networks. You have to choose any one client and copy down it’s MAC Address and IP address in Notepad.
  5. Now we will have to change our computer’s Physical address and IP address. First of all, you have to go to Network and Sharing Center. Then click on Change Adapter Settings and right click on your adapter name and then click on Properties.
  6. Now click on Configure and move to Advanced tab. Then look forNetwork Address in the list, and then you will find that it is set to Not Present. Now tick or check Value and type the MAC address you copied from Netcut. This will restart your adapter, so wait 10 seconds until it reconnects properly.
  7. Now, it’s time to apply the IP we copied from Netcut. Now right click on your adapter name and click on Internet Protocol Version 4 (TCP/IPv4) and click on Properties. Now click on Use the following IP address.
    Fill the blanks like this:
    IP Address: Put the IP you got from Netcut.
    Subnet Mask: Use the same subnet mask you got from your ISP.
    Default Gateway: Use the same gateway IP you got from your ISP.
    To find the Subnet mask and Default gateway, you have to open upCommand Prompt and type this command: IPCONFIG and you will find the subnet mask and gateway.
Congrats: You now have a free internet connection!
Note: 
If one client is not working, use another!
Keep Hacking! Stay tuned 

Sunday, 20 March 2016

Run Windows XP on Android




Hey Guys Welcome UserX:The Dark Net,
We're Back this weekend with another cool tricks for our visitors, we hope that you are enjoying our tips and tricks , which we keep post for you guys, just let us know to make your experince better with UserX.

Now , back to the point , so if u really freaking about using  an PC operating System on your Android Device , then this trick is for you guys.
Actually you can install a number of OS on your android device , but this one WinXP is bit an easy task , as it does not require huge memory size and RAM.

So let begin , we have posted links to get your job done in simple and easy steps.


1.For Youtube video :- Click Right Here
     
 
                             OR



2.For textual instructions  (Step by Step) :- Click right here.