Category: Articles

Computer (3)
Open Source (313)
Security (30)
Server (5)

How to Install BT Panel in a Custom Directory

Baota (BT Panel) locks the installation directory to /www by default, but many servers have limited root partition space. Here is how to move Baota data to another directory.

Check the current server disk usage:
df -h

Here we put the data under /data:
ln -sf /data /www
This will then under /data …

How to Send Emails With Mailgun

MailGun is a great email delivery tool, offering a 3-month trial with 5,000 free emails per month. After three months, it costs $0.80 per 1,000 emails, roughly around 0.5 RMB each, which is quite affordable. 1. Register an account (details omitted), then add a domain. Go to your user dashboard and click “Add New Domain”:
h …

How to Gain Server Control Using Weevely Backdoor

Project URL: https://github.com/epinna/weevely3
Weevely is a web shell generation tool (PHP only) that creates PHP trojan programs to gain server access.
Here we use Kali Linux as an example. For other systems, install the tool first, then proceed: Generate file…

Kali Linux: The Security Toolkit System You Need

If you hear a 13-year-old hacker bragging about how awesome he is, it’s possible — thanks to Kali Linux. Though they may be called “script kiddies,” the fact is that Kali remains an important tool (or toolset) in the hands of security experts. Kali is a Linux distribution based on Debian…

Gitosis to GitLab Migration Script

Add your GitLab account in advance and authorize your SSH key to ensure you can clone directly without a password. After setup, test with the following command, replacing the project with your own.
git clone [email protected]:root/111.gitNote:
url1 is the gitosis address.
Url2 is the GitLab address.
After migration, code, commits …

How to Enable Opcache for PHP 7 Performance Acceleration

For PHP versions 5.5 and above, you can use the built-in opcache to boost performance (it is disabled by default). After PHP 5.5, opcache can be enabled directly with –enable-opcache. For PHP versions below 5.5, you can use APC for caching. Now let’s see how to enable Opcache.

1.Open php …