Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/yaxingson/web-security-topics


https://github.com/yaxingson/web-security-topics

Last synced: 24 days ago
JSON representation

Awesome Lists containing this project

README

        

# web-security-topics

## 站点漏洞

> TCP/IP协议族

```powershell
ipconfig

```

HTTP协议版本:

- [ ] 0.9
- [ ] 1.0
- [x] 1.1 (持续连接)
- [ ] 2.0

常见请求报文头字段:

- `X-Requested-With`
- `Rerferer`
- `Connection`
- `Cookie`
- `Origin`
- `X-Forwarded-For`
- `Content-Type`
- `Accept-Language`
- `User-Agent`

常见响应报文头字段:

- `Set-Cookie`
- `Content-Length`
- `Etag`
- `Location`
- `Allow`

```html

email me
call me

```

### XSS

> 木马和蠕虫

#### 反射型

#### 存储型

#### DOM型

### SQL注入

> SQL字段约束: 非空(NOT NULL)、默认值(DEFAULT)、主键(PRIMARY KEY)、唯一的(UNIQUE)和外键(FOREIGN KEY)

```sql
# ...
-- ...
/* ... */

CREATE DATABASE DB;

```

### CSRF

### 文件上传和包含

[获取本机外网IP](https://ip.900cha.com/)

### 网站攻击

#### DDOS攻击

## 渗透测试