時間:2024-02-14 10:20作者:下載吧人氣:18
這個滲透環(huán)境的搭建有以下幾點(diǎn):
$_SESSION['...']
會獲取用戶session在MySQL中使用source命令即可運(yùn)行腳本:
drop database if exists lab;
create database lab;
use lab;
create table users
(
id int not null auto_increment,
username char(32) not null,
passcode char(32) not null,
primary key(id)
);
insert into users(username,passcode) values(‘admin’,’admin123′);
insert into users(username,passcode) values(‘alice’,’alice456′);
網(wǎng)友評論