Teach you how to build a platform for scammer reporting/information inquiry

Relevant statement : This article is only used for network security learning, research, intelligence collection and educational purposes, and should not be used for illegal purposes.

foreword

Many netizens said that scammers have been rampant recently, so in order to reduce the occurrence of being deceived, can you build a platform to report scammers and collect some information about scammers? The following will show you how to build it.

Effect demonstration

You can search the information of suspected fraudulent users at the front desk, support QQ/WeChat/mobile phone numbers, including fraud process and screenshot information

If you self-deployed, log in in the background/admin/index/index.html

After logging in, you can see the recorded situation and some basic configurations

Then you can manually add the scammer's information in the background

Deployment Tutorial

initial preparation work

You need to prepare a server, a domain name and a pagoda panel.
We need to do domain name resolution in advance, select the record type as A, here we set the host record is jubao, the record value fills in our server IP address

Pagoda deployment source code

[→Follow me for all resources, and reply to "data" by private message to get ←]
1. Network security learning route
2. E-books (white hat)
3. Internal video of a big security company4,
100 src documents5
, common security interview questions6
,the classic topics of the ctf competition
7, a full set of toolkits
8, emergency response notes

Let's first add a site to the pagoda background website and enter the one we just parsedjubao.iculture.cc

Just got the SSL certificate

and enable Force HTTPS

Since our source code is based on the thinkphp framework, we need to modify the running path as/public

Pseudo-static selection thinkphptemplate

Next, click the green root directory path to enter the website root directory

Upload our source code in the root directory of the website

Click to unzip

Since it is the source code of the thinkphp framework, we need to use the terminal composer installto install it here

Here we first upgrade

composer update

then install

composer install

This shows that the environment has been prepared since, no need to install anymore

configuration database

First, we need to import the database first

add databasefancypig_jubao

Import the sql file we prepared

Upload the file locally fancypig_jubao.sqland click导入

Up to here, we just finished importing the database, we also need to allow the website to connect to our configured database

We edit the files in the root directory of the website /application/database.php, the core part

    'database'        => 'fancypig_jubao',
    // 用户名
    'username'        => 'fancypig_jubao',
    // 密码
    'password'        => '你刚才随机生成的数据库密码填在这里',

Then you're done, you can use the adminpassword 121212to log in to the deployed background, and then modify the corresponding configuration!

Guess you like

Origin blog.csdn.net/HBohan/article/details/123363291