update: binary exploit

This commit is contained in:
dongdigua 2022-07-29 16:13:34 +08:00
parent e0e864e51d
commit f8972f6a6e
10 changed files with 541 additions and 28 deletions

BIN
images/Big-Endian.svg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 KiB

71
org/binary_exploit.org Normal file
View File

@ -0,0 +1,71 @@
#+TITLE: Binary Exploit Resources I Recently Trying to Learn
#+TAGS: relearn(r)
#+OPTIONS: toc:nil
* resources
** video
[[https://youtube.com/playlist?list=PLhixgUqwRTjxglIswKp9mpkfPNfHkzyeN][Binary Exploitation / Memory Corruption by LiveOverflow]]
** website
*** [[https://play.picoctf.org/practice][picoCTF]]
*** [[https://exploit.education/][exploit education]]
* tools
** code auditing
[[../images/fedora_security_lab.png]]
*** pscan
*** rats
*** splint
*** flawfinder
** debug
*** gdb
** reverse
*** [[https://book.rada.re/][radare2]]
**** iaito
*** hopper(non-free)
* notes on video
** [[https://youtu.be/6jSKldt7Eqs][0x04: asm basics]]
*** to show assembly in the source code window in gud, ~M-x gdb-display-disassembly-buffer~
*** links
**** https://microcorruption.com/
** [[https://youtu.be/3NTXFUxcKPc][0x06: tools]]
*** simple tools
**** hexdump
**** strings
all printable letters
**** objdump
disassembler
**** strace/ltrace
trace sys/lib call
*** [[https://youtu.be/mT1V7IL2FHY][0x0A: deal with numbers]]
**** endian?
from [[https://zh.wikipedia.org/zh-cn/%E5%AD%97%E8%8A%82%E5%BA%8F][Wikipedia]]
[[../images/Big-Endian.svg.png ]][[../images/Little-Endian.svg.png]]
x86 is little endian
**** tools
***** python
#+BEGIN_SRC python
>>> int('111', 2)
7
>>> hex(123)
'0x7b'
>>> import struct
# https://docs.python.org/3.10/library/struct.html#format-characters
>>> struct.pack("<I", 0x61626364) # little endian
b'dcba'
>>> struct.pack(">I", 0x61626364) # big endian
b'abcd'
#+END_SRC
***** iex
#+BEGIN_SRC elixir
iex(1)> <<0x61626364::32>>
"abcd"
iex(2)> Base.decode16("61626364")
{:ok, "abcd"}
#+END_SRC

View File

@ -52,12 +52,12 @@
* EMACS
** org-mode
| key | usage |
|-----------+-----------|
| C-c \vbar | 创建表格 |
| C-c C-e | 导出 HTML |
| | |
| | |
| key | usage |
|--------------+----------------------------|
| C-c \vbar | 创建表格 |
| C-c C-e | 导出 HTML |
| M-left/right | 升级(promote)/降级(demote) |
| C-c C-x C-v | toggle render images |
** normal
| key | usage |
@ -69,6 +69,10 @@
| C-x C-; | 行切换注释 |
| C-y | paste to minibuffer |
** dired
| key | usage |
| R | rename |
* Git (虽然不算editor, 但是先也放这吧)
#+BEGIN_SRC shell
git log --stat | perl -ne 'END { print $c } $c += $1 if /(\d+) insertions/;'

View File

@ -78,6 +78,9 @@ old
very high quality
*** [[http://tomasp.net/commodore64][commodore64 BASIC]]
*** [[http://tomasp.net/blog/csharp-async-gotchas.aspx][async in C#(gotchas) and F#]]
** [[http://www.xianwaizhiyin.net/][弦外之音]] :c:lowlevel:
** [[https://creamidea.github.io/][C-tone]]
pretty and concise page
* YouTube 收集(没有账号, 这就是我的收藏夹)
** Code
@ -89,13 +92,13 @@ java bad, python slow, nvidia fuck you, vi-sual studio, C艹 sucks
legacy
*** [[https://youtu.be/qKA2NZ1-kx0][tsoding write cool shell in rust]]
*** [[https://youtu.be/hmMtQe_mYr0][tsoding helloworld in c]]
*** [[https://www.youtube.com/watch?list=RDCMUChl_NKOs1qqh_x7yJfaDpDw][Tantan 合集]]
*** [[https://www.youtube.com/playlist?list=RDCMUChl_NKOs1qqh_x7yJfaDpDw][Tantan 合集]]
Rust Graphics
*** [[https://www.youtube.com/watch?list=PLGNbPb3dQJ_446PjTYQ0mCn2OGoHSKraB][build a virtual machine 合集(6/29)]]
*** [[https://www.youtube.com/watch?list=PLSiFUSQSRYAOFwfP-aMzXJlWKVyIuWfPU][stack-based virtual machine(6 episode)]]
*** [[https://www.youtube.com/playlist?list=PLGNbPb3dQJ_446PjTYQ0mCn2OGoHSKraB][build a virtual machine 合集(6/29)]]
*** [[https://www.youtube.com/playlist?list=PLSiFUSQSRYAOFwfP-aMzXJlWKVyIuWfPU][stack-based virtual machine(6 episode)]]
and [[https://youtu.be/cfPDeso3XwI][register-based(13 episode)]]
*** [[https://youtu.be/_uAMo-bXI5g][register virtual machine in rust, with memory visualization]]
*** [[https://www.youtube.com/watch?list=PLpM-Dvs8t0VY73ytTCQqgvgCWttV3m8LM][tsoding virtual machine in C]] , [[https://dongdigua.github.io/tsoding_bm][some notes]]
*** [[https://www.youtube.com/playlist?list=PLpM-Dvs8t0VY73ytTCQqgvgCWttV3m8LM][tsoding virtual machine in C]] , [[https://dongdigua.github.io/tsoding_bm][some notes]]
*** [[https://youtu.be/Fq9chEBQMFE][what if I try to malloc too much memory]]
*** [[https://youtu.be/qF7dkrce-mQ][fireship bitcoin]]
大概是我见过最好的讲区块链的视频了, 除了...JS 啊啊啊
@ -110,6 +113,7 @@ and [[https://youtu.be/cfPDeso3XwI][register-based(13 episode)]]
1:50 sexplib?
2:00 build own irc lib
2:14 "how many american server you have already hacked" - "I don't count them I'm sorry"
*** [[https://youtube.be/TLa2VqcGGEQ][CVE-2021-3156 sudo]]
** Minecraft
*** [[https://youtu.be/VKydXD6Lr20][Mojang & Minecraft 开始衰落了吗?]]

View File

@ -0,0 +1,392 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2022-07-29 五 16:08 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Binary Exploit Resources I Recently Trying to Learn</title>
<meta name="author" content="dongdigua" />
<meta name="generator" content="Org Mode" />
<style>
#content { max-width: 60em; margin: auto; }
.title { text-align: center;
margin-bottom: .2em; }
.subtitle { text-align: center;
font-size: medium;
font-weight: bold;
margin-top:0; }
.todo { font-family: monospace; color: red; }
.done { font-family: monospace; color: green; }
.priority { font-family: monospace; color: orange; }
.tag { background-color: #eee; font-family: monospace;
padding: 2px; font-size: 80%; font-weight: normal; }
.timestamp { color: #bebebe; }
.timestamp-kwd { color: #5f9ea0; }
.org-right { margin-left: auto; margin-right: 0px; text-align: right; }
.org-left { margin-left: 0px; margin-right: auto; text-align: left; }
.org-center { margin-left: auto; margin-right: auto; text-align: center; }
.underline { text-decoration: underline; }
#postamble p, #preamble p { font-size: 90%; margin: .2em; }
p.verse { margin-left: 3%; }
pre {
border: 1px solid #e6e6e6;
border-radius: 3px;
background-color: #f2f2f2;
padding: 8pt;
font-family: monospace;
overflow: auto;
margin: 1.2em;
}
pre.src {
position: relative;
overflow: auto;
}
pre.src:before {
display: none;
position: absolute;
top: -8px;
right: 12px;
padding: 3px;
color: #555;
background-color: #f2f2f299;
}
pre.src:hover:before { display: inline; margin-top: 14px;}
/* Languages per Org manual */
pre.src-asymptote:before { content: 'Asymptote'; }
pre.src-awk:before { content: 'Awk'; }
pre.src-authinfo::before { content: 'Authinfo'; }
pre.src-C:before { content: 'C'; }
/* pre.src-C++ doesn't work in CSS */
pre.src-clojure:before { content: 'Clojure'; }
pre.src-css:before { content: 'CSS'; }
pre.src-D:before { content: 'D'; }
pre.src-ditaa:before { content: 'ditaa'; }
pre.src-dot:before { content: 'Graphviz'; }
pre.src-calc:before { content: 'Emacs Calc'; }
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
pre.src-fortran:before { content: 'Fortran'; }
pre.src-gnuplot:before { content: 'gnuplot'; }
pre.src-haskell:before { content: 'Haskell'; }
pre.src-hledger:before { content: 'hledger'; }
pre.src-java:before { content: 'Java'; }
pre.src-js:before { content: 'Javascript'; }
pre.src-latex:before { content: 'LaTeX'; }
pre.src-ledger:before { content: 'Ledger'; }
pre.src-lisp:before { content: 'Lisp'; }
pre.src-lilypond:before { content: 'Lilypond'; }
pre.src-lua:before { content: 'Lua'; }
pre.src-matlab:before { content: 'MATLAB'; }
pre.src-mscgen:before { content: 'Mscgen'; }
pre.src-ocaml:before { content: 'Objective Caml'; }
pre.src-octave:before { content: 'Octave'; }
pre.src-org:before { content: 'Org mode'; }
pre.src-oz:before { content: 'OZ'; }
pre.src-plantuml:before { content: 'Plantuml'; }
pre.src-processing:before { content: 'Processing.js'; }
pre.src-python:before { content: 'Python'; }
pre.src-R:before { content: 'R'; }
pre.src-ruby:before { content: 'Ruby'; }
pre.src-sass:before { content: 'Sass'; }
pre.src-scheme:before { content: 'Scheme'; }
pre.src-screen:before { content: 'Gnu Screen'; }
pre.src-sed:before { content: 'Sed'; }
pre.src-sh:before { content: 'shell'; }
pre.src-sql:before { content: 'SQL'; }
pre.src-sqlite:before { content: 'SQLite'; }
/* additional languages in org.el's org-babel-load-languages alist */
pre.src-forth:before { content: 'Forth'; }
pre.src-io:before { content: 'IO'; }
pre.src-J:before { content: 'J'; }
pre.src-makefile:before { content: 'Makefile'; }
pre.src-maxima:before { content: 'Maxima'; }
pre.src-perl:before { content: 'Perl'; }
pre.src-picolisp:before { content: 'Pico Lisp'; }
pre.src-scala:before { content: 'Scala'; }
pre.src-shell:before { content: 'Shell Script'; }
pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
/* additional language identifiers per "defun org-babel-execute"
in ob-*.el */
pre.src-cpp:before { content: 'C++'; }
pre.src-abc:before { content: 'ABC'; }
pre.src-coq:before { content: 'Coq'; }
pre.src-groovy:before { content: 'Groovy'; }
/* additional language identifiers from org-babel-shell-names in
ob-shell.el: ob-shell is the only babel language using a lambda to put
the execution function name together. */
pre.src-bash:before { content: 'bash'; }
pre.src-csh:before { content: 'csh'; }
pre.src-ash:before { content: 'ash'; }
pre.src-dash:before { content: 'dash'; }
pre.src-ksh:before { content: 'ksh'; }
pre.src-mksh:before { content: 'mksh'; }
pre.src-posh:before { content: 'posh'; }
/* Additional Emacs modes also supported by the LaTeX listings package */
pre.src-ada:before { content: 'Ada'; }
pre.src-asm:before { content: 'Assembler'; }
pre.src-caml:before { content: 'Caml'; }
pre.src-delphi:before { content: 'Delphi'; }
pre.src-html:before { content: 'HTML'; }
pre.src-idl:before { content: 'IDL'; }
pre.src-mercury:before { content: 'Mercury'; }
pre.src-metapost:before { content: 'MetaPost'; }
pre.src-modula-2:before { content: 'Modula-2'; }
pre.src-pascal:before { content: 'Pascal'; }
pre.src-ps:before { content: 'PostScript'; }
pre.src-prolog:before { content: 'Prolog'; }
pre.src-simula:before { content: 'Simula'; }
pre.src-tcl:before { content: 'tcl'; }
pre.src-tex:before { content: 'TeX'; }
pre.src-plain-tex:before { content: 'Plain TeX'; }
pre.src-verilog:before { content: 'Verilog'; }
pre.src-vhdl:before { content: 'VHDL'; }
pre.src-xml:before { content: 'XML'; }
pre.src-nxml:before { content: 'XML'; }
/* add a generic configuration mode; LaTeX export needs an additional
(add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
pre.src-conf:before { content: 'Configuration File'; }
table { border-collapse:collapse; }
caption.t-above { caption-side: top; }
caption.t-bottom { caption-side: bottom; }
td, th { vertical-align:top; }
th.org-right { text-align: center; }
th.org-left { text-align: center; }
th.org-center { text-align: center; }
td.org-right { text-align: right; }
td.org-left { text-align: left; }
td.org-center { text-align: center; }
dt { font-weight: bold; }
.footpara { display: inline; }
.footdef { margin-bottom: 1em; }
.figure { padding: 1em; }
.figure p { text-align: center; }
.equation-container {
display: table;
text-align: center;
width: 100%;
}
.equation {
vertical-align: middle;
}
.equation-label {
display: table-cell;
text-align: right;
vertical-align: middle;
}
.inlinetask {
padding: 10px;
border: 2px solid gray;
margin: 10px;
background: #ffffcc;
}
#org-div-home-and-up
{ text-align: right; font-size: 70%; white-space: nowrap; }
textarea { overflow-x: auto; }
.linenr { font-size: smaller }
.code-highlighted { background-color: #ffff00; }
.org-info-js_info-navigation { border-style: none; }
#org-info-js_console-label
{ font-size: 10px; font-weight: bold; white-space: nowrap; }
.org-info-js_search-highlight
{ background-color: #ffff00; color: #000000; font-weight: bold; }
.org-svg { width: 90%; }
</style>
<link rel='stylesheet' type='text/css' href='./../css/org-css.css' />
</head>
<body>
<div id="content" class="content">
<h1 class="title">Binary Exploit Resources I Recently Trying to Learn</h1>
<div id="outline-container-org2c06886" class="outline-2">
<h2 id="org2c06886"><span class="section-number-2">1.</span> resources</h2>
<div class="outline-text-2" id="text-1">
</div>
<div id="outline-container-org5415e70" class="outline-3">
<h3 id="org5415e70"><span class="section-number-3">1.1.</span> video</h3>
<div class="outline-text-3" id="text-1-1">
<p>
<a href="https://youtube.com/playlist?list=PLhixgUqwRTjxglIswKp9mpkfPNfHkzyeN">Binary Exploitation / Memory Corruption by LiveOverflow</a>
</p>
</div>
</div>
<div id="outline-container-org25c1b45" class="outline-3">
<h3 id="org25c1b45"><span class="section-number-3">1.2.</span> website</h3>
<div class="outline-text-3" id="text-1-2">
</div>
<div id="outline-container-orgc08e35b" class="outline-4">
<h4 id="orgc08e35b"><span class="section-number-4">1.2.1.</span> <a href="https://play.picoctf.org/practice">picoCTF</a></h4>
</div>
<div id="outline-container-org9f7eb91" class="outline-4">
<h4 id="org9f7eb91"><span class="section-number-4">1.2.2.</span> <a href="https://exploit.education/">exploit education</a></h4>
</div>
</div>
</div>
<div id="outline-container-org3b472b5" class="outline-2">
<h2 id="org3b472b5"><span class="section-number-2">2.</span> tools</h2>
<div class="outline-text-2" id="text-2">
</div>
<div id="outline-container-orgcbfc212" class="outline-3">
<h3 id="orgcbfc212"><span class="section-number-3">2.1.</span> code auditing</h3>
<div class="outline-text-3" id="text-2-1">
<div id="org849af32" class="figure">
<p><img src="../images/fedora_security_lab.png" alt="fedora_security_lab.png" />
</p>
</div>
</div>
<div id="outline-container-org93570b4" class="outline-4">
<h4 id="org93570b4"><span class="section-number-4">2.1.1.</span> pscan</h4>
</div>
<div id="outline-container-org5d60e2f" class="outline-4">
<h4 id="org5d60e2f"><span class="section-number-4">2.1.2.</span> rats</h4>
</div>
<div id="outline-container-orgadb8d21" class="outline-4">
<h4 id="orgadb8d21"><span class="section-number-4">2.1.3.</span> splint</h4>
</div>
<div id="outline-container-orgbb818ea" class="outline-4">
<h4 id="orgbb818ea"><span class="section-number-4">2.1.4.</span> flawfinder</h4>
</div>
</div>
<div id="outline-container-orge4f5656" class="outline-3">
<h3 id="orge4f5656"><span class="section-number-3">2.2.</span> debug</h3>
<div class="outline-text-3" id="text-2-2">
</div>
<div id="outline-container-orgdccb67d" class="outline-4">
<h4 id="orgdccb67d"><span class="section-number-4">2.2.1.</span> gdb</h4>
</div>
</div>
<div id="outline-container-orgcb808d9" class="outline-3">
<h3 id="orgcb808d9"><span class="section-number-3">2.3.</span> reverse</h3>
<div class="outline-text-3" id="text-2-3">
</div>
<div id="outline-container-org0e9c0a4" class="outline-4">
<h4 id="org0e9c0a4"><span class="section-number-4">2.3.1.</span> <a href="https://book.rada.re/">radare2</a></h4>
<div class="outline-text-4" id="text-2-3-1">
</div>
<ol class="org-ol">
<li><a id="org6c35ca4"></a>iaito<br /></li>
</ol>
</div>
<div id="outline-container-org1281d59" class="outline-4">
<h4 id="org1281d59"><span class="section-number-4">2.3.2.</span> hopper(non-free)</h4>
</div>
</div>
</div>
<div id="outline-container-org05baf84" class="outline-2">
<h2 id="org05baf84"><span class="section-number-2">3.</span> notes on video</h2>
<div class="outline-text-2" id="text-3">
</div>
<div id="outline-container-org0b68048" class="outline-3">
<h3 id="org0b68048"><span class="section-number-3">3.1.</span> <a href="https://youtu.be/6jSKldt7Eqs">0x04: asm basics</a></h3>
<div class="outline-text-3" id="text-3-1">
</div>
<div id="outline-container-org6f9d871" class="outline-4">
<h4 id="org6f9d871"><span class="section-number-4">3.1.1.</span> to show assembly in the source code window in gud, <code>M-x gdb-display-disassembly-buffer</code></h4>
</div>
<div id="outline-container-org4ce9d40" class="outline-4">
<h4 id="org4ce9d40"><span class="section-number-4">3.1.2.</span> links</h4>
<div class="outline-text-4" id="text-3-1-2">
</div>
<ol class="org-ol">
<li><a id="orgf810a62"></a><a href="https://microcorruption.com/">https://microcorruption.com/</a><br /></li>
</ol>
</div>
</div>
<div id="outline-container-org080995f" class="outline-3">
<h3 id="org080995f"><span class="section-number-3">3.2.</span> <a href="https://youtu.be/3NTXFUxcKPc">0x06: tools</a></h3>
<div class="outline-text-3" id="text-3-2">
</div>
<div id="outline-container-orgb0bd3f8" class="outline-4">
<h4 id="orgb0bd3f8"><span class="section-number-4">3.2.1.</span> simple tools</h4>
<div class="outline-text-4" id="text-3-2-1">
</div>
<ol class="org-ol">
<li><a id="orgadcfb8e"></a>hexdump<br /></li>
<li><a id="orgcfa25c4"></a>strings<br />
<div class="outline-text-5" id="text-3-2-1-2">
<p>
all printable letters
</p>
</div>
</li>
<li><a id="org9f0d072"></a>objdump<br />
<div class="outline-text-5" id="text-3-2-1-3">
<p>
disassembler
</p>
</div>
</li>
<li><a id="org1dfb6a8"></a>strace/ltrace<br />
<div class="outline-text-5" id="text-3-2-1-4">
<p>
trace sys/lib call
</p>
</div>
</li>
</ol>
</div>
<div id="outline-container-orgde8d02a" class="outline-4">
<h4 id="orgde8d02a"><span class="section-number-4">3.2.2.</span> <a href="https://youtu.be/mT1V7IL2FHY">0x0A: deal with numbers</a></h4>
<div class="outline-text-4" id="text-3-2-2">
</div>
<ol class="org-ol">
<li><a id="orgf57ed7f"></a>endian?<br />
<div class="outline-text-5" id="text-3-2-2-1">
<p>
from <a href="https://zh.wikipedia.org/zh-cn/%E5%AD%97%E8%8A%82%E5%BA%8F">Wikipedia</a>
<img src="../images/Big-Endian.svg.png " alt="Big-Endian.svg.png " /><img src="../images/Little-Endian.svg.png" alt="Little-Endian.svg.png" />
x86 is little endian
</p>
</div>
</li>
<li><a id="org55154db"></a>tools<br />
<ol class="org-ol">
<li><a id="orgcb9d950"></a>python<br />
<div class="outline-text-6" id="text-3-2-2-2-1">
<div class="org-src-container">
<pre class="src src-python">&gt;&gt;&gt; int('111', 2)
7
&gt;&gt;&gt; hex(123)
'0x7b'
&gt;&gt;&gt; import struct
# https://docs.python.org/3.10/library/struct.html#format-characters
&gt;&gt;&gt; struct.pack("&lt;I", 0x61626364) # little endian
b'dcba'
&gt;&gt;&gt; struct.pack("&gt;I", 0x61626364) # big endian
b'abcd'
</pre>
</div>
</div>
</li>
<li><a id="org4df9a7d"></a>iex<br />
<div class="outline-text-6" id="text-3-2-2-2-2">
<div class="org-src-container">
<pre class="src src-elixir">iex(1)&gt; &lt;&lt;0x61626364::32&gt;&gt;
"abcd"
iex(2)&gt; Base.decode16("61626364")
{:ok, "abcd"}
</pre>
</div>
</div>
</li>
</ol>
</li>
</ol>
</div>
</div>
</div>
</div>
<div id="postamble" class="status">
<p class="author">Author: dongdigua</p>
<p class="date">Created: 2022-07-29 五 16:08</p>
</div>
</body>
</html>

View File

@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2022-07-27 三 12:42 -->
<!-- 2022-07-29 五 16:07 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Editor Chaetsheet</title>
@ -215,6 +215,7 @@
<ul>
<li><a href="#org84d4152">2.1. org-mode</a></li>
<li><a href="#orgc0a6693">2.2. normal</a></li>
<li><a href="#org4bb8064">2.3. dired</a></li>
</ul>
</li>
<li><a href="#orgb3c7ff0">3. Git (虽然不算editor, 但是先也放这吧)</a></li>
@ -505,13 +506,13 @@
</tr>
<tr>
<td class="org-left">&#xa0;</td>
<td class="org-left">&#xa0;</td>
<td class="org-left">M-left/right</td>
<td class="org-left">升级(promote)/降级(demote)</td>
</tr>
<tr>
<td class="org-left">&#xa0;</td>
<td class="org-left">&#xa0;</td>
<td class="org-left">C-c C-x C-v</td>
<td class="org-left">toggle render images</td>
</tr>
</tbody>
</table>
@ -569,6 +570,32 @@
</table>
</div>
</div>
<div id="outline-container-org4bb8064" class="outline-3">
<h3 id="org4bb8064"><span class="section-number-3">2.3.</span> dired</h3>
<div class="outline-text-3" id="text-2-3">
<table border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides">
<colgroup>
<col class="org-left" />
<col class="org-left" />
</colgroup>
<tbody>
<tr>
<td class="org-left">key</td>
<td class="org-left">usage</td>
</tr>
<tr>
<td class="org-left">R</td>
<td class="org-left">rename</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div id="outline-container-orgb3c7ff0" class="outline-2">
@ -584,7 +611,7 @@ git log --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 -
</div>
<div id="postamble" class="status">
<p class="author">Author: dongdigua</p>
<p class="date">Created: 2022-07-27 三 12:42</p>
<p class="date">Created: 2022-07-29 五 16:07</p>
</div>
</body>
</html>

View File

@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2022-07-27 三 12:44 -->
<!-- 2022-07-29 五 16:07 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Internet Collections</title>
@ -458,6 +458,17 @@ very high quality<br />
<h4 id="orgf5f54ab"><span class="section-number-4">1.41.2.</span> <a href="http://tomasp.net/blog/csharp-async-gotchas.aspx">async in C#(gotchas) and F#</a></h4>
</div>
</div>
<div id="outline-container-org72464c7" class="outline-3">
<h3 id="org72464c7"><span class="section-number-3">1.42.</span> <a href="http://www.xianwaizhiyin.net/">弦外之音</a>&#xa0;&#xa0;&#xa0;<span class="tag"><span class="c">c</span>&#xa0;<span class="lowlevel">lowlevel</span></span></h3>
</div>
<div id="outline-container-org604cb3c" class="outline-3">
<h3 id="org604cb3c"><span class="section-number-3">1.43.</span> <a href="https://creamidea.github.io/">C-tone</a></h3>
<div class="outline-text-3" id="text-1-43">
<p>
pretty and concise page<br />
</p>
</div>
</div>
</div>
<div id="outline-container-org758841b" class="outline-2">
@ -496,19 +507,19 @@ legacy<br />
<div id="outline-container-org4963866" class="outline-4">
<h4 id="org4963866"><span class="section-number-4">2.1.6.</span> <a href="https://youtu.be/hmMtQe_mYr0">tsoding helloworld in c</a></h4>
</div>
<div id="outline-container-org25a8ac0" class="outline-4">
<h4 id="org25a8ac0"><span class="section-number-4">2.1.7.</span> <a href="https://www.youtube.com/watch?list=RDCMUChl_NKOs1qqh_x7yJfaDpDw">Tantan 合集</a></h4>
<div id="outline-container-org3e0f72d" class="outline-4">
<h4 id="org3e0f72d"><span class="section-number-4">2.1.7.</span> <a href="https://www.youtube.com/playlist?list=RDCMUChl_NKOs1qqh_x7yJfaDpDw">Tantan 合集</a></h4>
<div class="outline-text-4" id="text-2-1-7">
<p>
Rust Graphics<br />
</p>
</div>
</div>
<div id="outline-container-org296e0d6" class="outline-4">
<h4 id="org296e0d6"><span class="section-number-4">2.1.8.</span> <a href="https://www.youtube.com/watch?list=PLGNbPb3dQJ_446PjTYQ0mCn2OGoHSKraB">build a virtual machine 合集(6/29)</a></h4>
<div id="outline-container-orgff07475" class="outline-4">
<h4 id="orgff07475"><span class="section-number-4">2.1.8.</span> <a href="https://www.youtube.com/playlist?list=PLGNbPb3dQJ_446PjTYQ0mCn2OGoHSKraB">build a virtual machine 合集(6/29)</a></h4>
</div>
<div id="outline-container-orgbc9a22c" class="outline-4">
<h4 id="orgbc9a22c"><span class="section-number-4">2.1.9.</span> <a href="https://www.youtube.com/watch?list=PLSiFUSQSRYAOFwfP-aMzXJlWKVyIuWfPU">stack-based virtual machine(6 episode)</a></h4>
<div id="outline-container-orgf132300" class="outline-4">
<h4 id="orgf132300"><span class="section-number-4">2.1.9.</span> <a href="https://www.youtube.com/playlist?list=PLSiFUSQSRYAOFwfP-aMzXJlWKVyIuWfPU">stack-based virtual machine(6 episode)</a></h4>
<div class="outline-text-4" id="text-2-1-9">
<p>
and <a href="https://youtu.be/cfPDeso3XwI">register-based(13 episode)</a><br />
@ -518,8 +529,8 @@ and <a href="https://youtu.be/cfPDeso3XwI">register-based(13 episode)</a><br />
<div id="outline-container-org82bd31a" class="outline-4">
<h4 id="org82bd31a"><span class="section-number-4">2.1.10.</span> <a href="https://youtu.be/_uAMo-bXI5g">register virtual machine in rust, with memory visualization</a></h4>
</div>
<div id="outline-container-org13c3daa" class="outline-4">
<h4 id="org13c3daa"><span class="section-number-4">2.1.11.</span> <a href="https://www.youtube.com/watch?list=PLpM-Dvs8t0VY73ytTCQqgvgCWttV3m8LM">tsoding virtual machine in C</a> , <a href="https://dongdigua.github.io/tsoding_bm">some notes</a></h4>
<div id="outline-container-orgbd780cf" class="outline-4">
<h4 id="orgbd780cf"><span class="section-number-4">2.1.11.</span> <a href="https://www.youtube.com/playlist?list=PLpM-Dvs8t0VY73ytTCQqgvgCWttV3m8LM">tsoding virtual machine in C</a> , <a href="https://dongdigua.github.io/tsoding_bm">some notes</a></h4>
</div>
<div id="outline-container-org085d325" class="outline-4">
<h4 id="org085d325"><span class="section-number-4">2.1.12.</span> <a href="https://youtu.be/Fq9chEBQMFE">what if I try to malloc too much memory</a></h4>
@ -557,6 +568,9 @@ and <a href="https://youtu.be/cfPDeso3XwI">register-based(13 episode)</a><br />
</p>
</div>
</div>
<div id="outline-container-org746a030" class="outline-4">
<h4 id="org746a030"><span class="section-number-4">2.1.17.</span> <a href="https://youtube.be/TLa2VqcGGEQ">CVE-2021-3156 sudo</a></h4>
</div>
</div>
<div id="outline-container-org791b0d5" class="outline-3">
@ -611,7 +625,7 @@ from <a href="https://youtu.be/8QP2fDBIxjM">tsoding's first porth video</a>, (he
</div>
<div id="postamble" class="status">
<p class="author">Author: dongdigua</p>
<p class="date">Created: 2022-07-27 三 12:44</p>
<p class="date">Created: 2022-07-29 五 16:07</p>
</div>
</body>
</html>

View File

@ -3,7 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<!-- 2022-07-27 三 13:16 -->
<!-- 2022-07-28 四 16:06 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Recommend EverForest Theme</title>
@ -220,6 +220,7 @@ Everforest is a green based color scheme, it's designed to be warm and soft in o
<p>
这个主题在 2022-06-29 才开始制作 <a href="https://github.com/Theory-of-Everything/everforest-emacs">emacs 版本</a><br />
目前还没在 melpa 上, 所以需要手动安装<br />
我一看到这个就从 <a href="https://github.com/arcticicestudio/nord-emacs">Nord</a> 换过来了<br />
我加入了 whitespace-mode 的支持, <del>默认的颜色太晃眼睛啦</del><br />
希望大家能一起帮忙贡献这个主题<br />
</p>
@ -233,7 +234,7 @@ Everforest is a green based color scheme, it's designed to be warm and soft in o
</div>
<div id="postamble" class="status">
<p class="author">Author: dongdigua</p>
<p class="date">Created: 2022-07-27 三 13:16</p>
<p class="date">Created: 2022-07-28 四 16:06</p>
</div>
</body>
</html>