Coder Social home page Coder Social logo

winforce17的个人笔记

记录了本人计算机学习过程,包含计算机,安全,CTF,运维等各种内容,很多内容还未整理,排版有问题,欢迎PR。

Material color palette 颜色主题

Primary colors 主色

默认 white

点击色块可更换主题的主色

Red Pink Purple Deep Purple Indigo Blue Light Blue Cyan Teal Green Light Green Lime Yellow Amber Orange Deep Orange Brown Grey Blue Grey White
<script> var buttons = document.querySelectorAll("button[data-md-color-primary]"); Array.prototype.forEach.call(buttons, function(button) { button.addEventListener("click", function() { document.body.dataset.mdColorPrimary = this.dataset.mdColorPrimary; localStorage.setItem("data-md-color-primary",this.dataset.mdColorPrimary); }) }) </script>

Accent colors 辅助色

默认 red

点击色块更换主题的辅助色

点击色块更换主题的辅助色

Red Pink Purple Deep Purple Indigo Blue Light Blue Cyan Teal Green Light Green Lime Yellow Amber Orange Deep Orange
<script> var buttons = document.querySelectorAll("button[data-md-color-accent]"); Array.prototype.forEach.call(buttons, function(button) { button.addEventListener("click", function() { document.body.dataset.mdColorAccent = this.dataset.mdColorAccent; localStorage.setItem("data-md-color-accent",this.dataset.mdColorAccent); }) }) </script> <style> button[data-md-color-accent]> code { background-color: var(--md-code-bg-color); color: var(--md-accent-fg-color); } button[data-md-color-primary] > code { background-color: var(--md-code-bg-color); color: var(--md-primary-fg-color); } button[data-md-color-primary='white'] > code { background-color: var(--md-primary-bg-color); color: var(--md-primary-fg-color); } button[data-md-color-accent],button[data-md-color-primary],button[data-md-color-scheme]{ width: 8.4rem; margin-bottom: .4rem; padding: 2.4rem .4rem .4rem; transition: background-color .25s,opacity .25s; border-radius: .2rem; color: #fff; font-size: .8rem; text-align: left; cursor: pointer; } button[data-md-color-accent]{ background-color: var(--md-accent-fg-color); } button[data-md-color-primary]{ background-color: var(--md-primary-fg-color); } button[data-md-color-scheme='default']{ background-color: hsla(0, 0%, 100%, 1); } button[data-md-color-scheme='slate']{ background-color: var(--md-default-bg-color); } button[data-md-color-accent]:hover, button[data-md-color-primary]:hover { opacity: 0; } </style>

Todo List

coding...

要搭建的服务

  • CTFoj
  • owasp
  • ZvulDrill
  • msf vuln
  • wooyun drop
  • file server
  • 社工库

mysql 协议加密算法

hash1 = SHA1(password) //password是用户输入的密码
result = hash1 ^ sha1(scramble+sha1(hash1)) //scamble 是mysql server端发送的,当密码为空,固定为0x00

windforce17's Projects

aflplusplus-1 icon aflplusplus-1

The fuzzer afl++ is afl with community patches, qemu 5.1 upgrade, collision-free coverage, enhanced laf-intel & redqueen, AFLfast++ power schedules, MOpt mutators, unicorn_mode, and a lot more!

atomldr icon atomldr

A DLL loader with advanced evasive features

blog icon blog

个人博客,包括但不限于安全、开发、运维

cerberus icon cerberus

A Python tool to unstrip Rust/Go binaries on Linux

compose icon compose

Define and run multi-container applications with Docker

ctf-wiki icon ctf-wiki

CTF Wiki Online. Come and join us, we need you!

githack icon githack

.git 泄漏利用工具,可还原历史版本

injectproc icon injectproc

InjectProc - Process Injection Techniques [This project is not maintained anymore]

jetbrainkiller icon jetbrainkiller

A new tool for unlimited 30-day trial of JetBrains series software, supporting the latest version.

libnum3 icon libnum3

Working with numbers (primes, modular, etc.)

oneforall icon oneforall

OneForAll是一款功能强大的子域收集工具

overwatch-dump-fix icon overwatch-dump-fix

x64dbg plugin which removes anti-dumping and obfuscation techniques from the popular FPS game Overwatch.

platypus icon platypus

:hammer: A modern multiple reverse shell sessions manager written in go

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.