banner Expire 1 April 2024
Ad Ends 13 April 2024
banner Expire 18 April 2024
banner Expire 18 April 2024
ad End 18 April 2024
Ad Ends 13 April 2023
banner Expire 20 March 2024
What's new
Ad expire at 5 March 2024
UniCvv
CrdCrew.cc Carding forum
Western union transfer
banner expire at 21 August

Carding.pw carding forum

[TUTORIAL] HOW TO SETUP HTTP BOTNET PANEL [FOR NEWBIES]

Daniel

TRUSTED VERIFIED SELLER
Staff member
Joined
Jun 13, 2020
Messages
6,378
Reaction score
890
Points
212
Awards
2
  • trusted user
  • Rich User
This is complete newbie guide to build centos server to host your command and control panel.
Requirements:
- Virtual Private Server based on Centos 6 and located in offshore location. Dont bother to install http controller in free hosting or ONshore server. You will be banned very fast and you will lose your money due to violating TOS.
- VPS root access.
- botnet panel files, builder or build connected with your domain.
- bulletproof domain


1. First of all update your server and install wget. Sometimes you may be asked few times for confirmation, just press Y and ENTER:
Code:
sudo yum update
sudo yum install wget
2. Install apache and run it:
Code:
sudo yum install httpd
sudo service httpd start
3. Install PHP. Sometimes newest version of PHP is required, in that case we will install php and upgrade it using REMI and EPEL repositories:
- Install PHP:
Code:
sudo yum install php
- Install the Remi and EPEL RPM repositories:
Code:
wget https://dl.fedoraproject.org/pub/epe...t-6.noarch.rpm && rpm -Uvh epel-release-latest-6.noarch.rpm
wget http://rpms.famillecollet.com/enterp...-release-6.rpm && rpm -Uvh remi-release-6*.rpm
- You need to enable the REMI repository globally. I will use VIM - free text editor. Quick guide: if you press INSERT you will be able to edit document and if you press ESC you will be in command mode. Type the following command:
Code:
vim /etc/yum.repos.d/remi.repo
Press INSTERT and under the section [remi] and [remi-php56] change the following line from 0 to 1: enabled=0
Now press ESC and type the following command:
Code:
:wq
Now you can upgrade your php:
Code:
sudo yum -y upgrade php*
4. Install MYSQL server. We will use official REMI repositories.
Install and activate the REMI and EPEL RPM Repositories
If you have not done so already, install and activate the REMI and EPEL repositories;
Code:
wget https://dl.fedoraproject.org/pub/epe...t-6.noarch.rpm && rpm -Uvh epel-release-latest-6.noarch.rpm
wget http://rpms.famillecollet.com/enterp...-release-6.rpm && rpm -Uvh remi-release-6*.rpm
Code:
sudo yum install mysql mysql-server
- now run mysql:
Code:
sudo service mysqld start
- using this commands you can upgrade and check what version of mysql you use:
Code:
yum -y update mysql*
rpm -qa | grep mysql
5. Install additional libraries. Few botnets require addidtional php libraries. For example Zyklon HTTP require php-gd library for captcha. We will install few standard libraries:
Code:
sudo yum install php-mysql php-pdo php-common php-cli php-gd
6. Now we need to install Ioncube Loader. Download it from https://www.ioncube.com/loaders.php I use centos 6 64bit so i choosed linux 64 bit. You can see a lot of files in archive, which Ioncube loader is the right one ? Depends on your PHP version. Type the following command:
Code:
php -v
In that case i have installed PHP 5.6 so i copy the following file: ioncube_loader_lin_5.6 to my server. You need to copy it to: /usr/lib64/php/modules/ioncube_loader_lin_5.6.so
Do it in ftp client if u want. Now you need to edit php.ini file. Its located in /etc/php.ini We will use vim again:
Code:
vim /etc/php.ini
Press INSERT and add the following line at the top of the file. This is just path to Ioncube loader. Version of Ioncube loader must match with PHP version.
Code:
zend_extension = /usr/lib64/php/modules/ioncube_loader_lin_5.6.so
Now restart apache&mysql and check if its installed correctly:
Code:
service httpd restart
service mysqld restart
php -v
7. Dealing with mysql:
- Run mysql installation script:
Code:
mysql_secure_installation
You will be able to setup new root password to your mysql. To other questions just answer yes.
- Now log in to mysql:
Code:
mysql -u root -p
- Create new database:
Code:
create database NameOfYourDatabase;
- Create new user with privileges and refresh it:
Code:
CREATE USER 'NameOfYourUser'@'localhost' IDENTIFIED BY 'PasswordForYourUser';
GRANT ALL PRIVILEGES ON NameOfYourDatabase . * TO 'NameOfYourUser'@'localhost';
FLUSH PRIVILEGES;
8. Dealing with panel:
- Copy panel files to /var/www/html/YourDirectory/
- Go to yourdomain.xx/YourDirectory/setup.php or similar name. You may use your server ip instead of domain name. Fill all fields, similar to this:
Code:
sql host: localhost or 127.0.0.1
sql user: NameOfYourUser
database name: NameOfYourDatabase
panel admin login: YourLoginToPanel
panel admin pass: YourPassToPanel
connection key: Usually you can generate it in your builder
9. Dealing with builder:
- If you already got your executable file you may miss this step. Usually in domain/ip tab you add your domain/ip and in path you add path(YourDirectory) to your gate. You should have example in builder.
10. Last words:
- Always check your executable file in virtual machine.
 
Ad End 1 April 2024
Top