网络安全学习资料

应急响应实战笔记 (bypass007.github.io) :这是一个关于安全事件应急响应的项目,从系统入侵到事件处理,收集和整理了一些案例进行分析。

Web安全学习笔记 — Web安全学习笔记 1.0 文档 (websec.readthedocs.io)

slowmist/Knowledge-Base: Knowledge Base 慢雾安全团队知识库 (github.com)

黑客攻防实战教程第10讲“漏洞分析测试环境的搭建”

以ATT&CK为例构建网络安全知识图 – 绿盟科技技术博客 (nsfocus.net)

nshalabi/ATTACK-Tools: Utilities for MITRE™ ATT&CK (github.com)

infosecn1nja/AD-Attack-Defense: Attack and defend active directory using modern post exploitation adversary tradecraft activity (github.com)

Micropoor/Micro8: Gitbook (github.com)

cors

enable cross-origin resource sharing (enable-cors.org)

Git 学习资料

文档说明
<> 表示【需替换的项】
[]表示【非必填项】
| 表示【或】
工作树(工作区),索引(暂存区),Git 目录(HEAD) 三词含义参照 Git 官网

初始配置

1
2
3
4
5
git config --global user.name [<username>] 配置用户名

git config --global user.email [<email>] 配置邮箱

git config --global core.editor [<vim>] 配置编辑器

创建项目

1
2
3
4
git clone <options> 克隆远程仓库

git init [project] 初始化本地项目

添加

1
2
3
4
5
6
7
8
git add <file> 添加文件到暂存区

git commit -m <commit notes> 将暂存区的内容提交到 HEAD

git commit -am <commit notes> 将 add 和 commit 合并操作

git commit --amend -m <commit notes> 将 add 和 commit 合并操作且合并到上次 commit

显示

1
2
3
4
5
6
7
8
9
git status 显示状态

git diff [HEAD] 显示差异

git log 显示日志

git show <commit> 显示某个 commit 的详细内容

git blame <file> 显示文件每行的 commit 信息

撤回

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
git restore <file> 撤回工作区的修改

git restore --staged <file> 将已提交到暂存区的修改撤回工作区

git reset [--mixed] <commit> 将当前版本撤回到某个 commit,保留工作区的修改

git reset --soft <commit> 将当前版本撤回到某个 commit, 保留工作区和暂存区的修改

git reset --hard <commit> 将当前版本撤回到某一个 commit,不保留工作区的修改

git rm <file> 将文件从工作区和暂存区删除

git mv <file> 将文件从工作区和暂存区移动或改名

git clean -df 从工作区删除未跟踪的文件

分支

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
git branch [--list] 显示所有分支

git branch -a 显示远程分支

git branch <branch> 创建分支

git branch -d|-D <branch> 删除分支

git branch -m <newbranch> 重命名当前分支

git switch <branch> 切换到已有分支

git switch -c <branch> 创建并切换分支

git merge <branch> 将某个分支合并到当前分支

git tag <tagname> 给当前分支打标签

git stash 将工作区的更改存储到脏工作目录中

git stash apply 将脏工作目录中的数据恢复到工作区(不会删除脏工作目录保存的数据)

git stash drop 将脏工作目录中的数据删除

git stash pop 将脏工作目录中的数据恢复工作区并删除脏数据

远程

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
git remote [-v] 显示远程库

git remote show <origin> 显示某个远程库的信息

git remote add <origin> <url> 添加远程库链接

git remote rm <origin> 删除远程库链接

git remote rename <oldname> <newname> 重命名远程库

git pull [<origin><branch>] 拉取远程库到本地库

git push [-u <origin> <master>] 将本地库推送到远程库

git push origin --delete <branch>|git push origin :crazy-experiment 删除远程分支

git fetch 从远程库获取到本地库

帮助

1
2
3
git help <command> 显示某个命令的详细使用文档

git <command> -h 显示某个命令的使用说明

checkout
该命令职责不明确,不建议使用;

1
2
3
4
5
6
7
git checkout <file> 丢弃工作区的修改

git checkout -f 强制丢弃工作区和暂存区的修改

git checkout <branch> 切换分支

git checkout -b <branch> 创建并切换分支

Git速查表 | Laravel China 社区 (learnku.com)

当工作遇到GIT,看这篇就够了! - SegmentFault 思否

Git Commit 日志风格指南 | LeanCloud 开放资源

Git - Book (git-scm.com)

Learn Git Branching

GitHub Flavored Markdown Spec

Set up Git - GitHub Docs

Markdown 学习资料

thlorenz/doctoc: 📜 Generates table of contents for markdown files inside local git repository. Links are compatible with anchors generated by github or other sites.

Markdown 语法手册 (完整整理版) (yuhongjun.github.io)

Markdown语法

Marked Documentation

danielyaa5/puml-for-markdown: A CLI tool to embed interactive PUML diagrams to your github markdown files.

susam/texme: Self-rendering Markdown + LaTeX documents (github.com)

markdown-it/markdown-it: Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed (github.com)

sindresorhus/github-markdown-css: The minimal amount of CSS to replicate the GitHub Markdown style

Java 学习资料

Google Java Style Guide

doocs/advanced-java: 😮 Core Interview Questions & Answers For Experienced Java(Backend) Developers | 互联网 Java 工程师进阶知识完全扫盲:涵盖高并发、分布式、高可用、微服务、海量数据处理等领域知识 (github.com)

用轻和快定义优雅,Okio框架解析 - 简书 (jianshu.com)

oracle/helidon: Java libraries for writing microservices (github.com)

Spring Cloud 从入门到精通 | 程序猿DD (didispace.com)