diff --git a/about_showing_ip.html b/about_showing_ip.html new file mode 100644 index 0000000..7f0144e --- /dev/null +++ b/about_showing_ip.html @@ -0,0 +1,281 @@ + + + + + + + +这一天终于来了, B站显示 IP 属地 + + + + + + +
+ UP + | + HOME +
+

这一天终于来了, B站显示 IP 属地

+
+

Table of Contents

+ +
+

+卸载吧…
+

+
+

1. 我的看法

+
+

+这个事情真正要打击的那些 诈骗/造假/海外势力, 并不会受到影响,
+它们肯定会使用"虚拟专用网络"伪造IP.
+

+ +

+那些所谓的"翻车"博主, 大多数可能只是公司在国内, 却因为这件事被各大媒体揪出来.
+

+ +

+对于那些网络喷子, 这种事估计不会减少它们的言论, 反而会加重"地域黑"…
+

+ +

+对于普通人, 大多数肯定是没什么影响, 也根本不在意,
+但是有些人, 只想公开自己想让别人看见的,
+那这种平台的强制行为确实会让TA们很不满.
+

+
+
+ +
+

2. 2022-7-25-12:00 公开显示 IP 属地

+
+ +
+

3. reference

+
+
+
+

3.1. from zhihu

+
+

+掰锝胃, 这个链接的截图在B站不到半小时就被删除了…
+B口口口口( ), 口口口口( ).
+

+
+
+ + +
+
+
+

Author: dongdigua

+

Created: 2022-09-11 日 11:14

+
+ + diff --git a/binary_exploit.html b/binary_exploit.html new file mode 100644 index 0000000..deafc3f --- /dev/null +++ b/binary_exploit.html @@ -0,0 +1,396 @@ + + + + + + + +Binary Exploit Resources I Recently Trying to Learn + + + + + + +
+ UP + | + HOME +
+

Binary Exploit Resources I Recently Trying to Learn

+ + +
+

1. resources

+
+
+ +
+

1.2. website

+
+
+
+

1.2.1. picoCTF

+
+ +
+
+ +
+

2. tools

+
+
+
+

2.1. code auditing

+
+ +
+

fedora_security_lab.png
+

+
+
+
+

2.1.1. pscan

+
+
+

2.1.2. rats

+
+
+

2.1.3. splint

+
+
+

2.1.4. flawfinder

+
+
+ +
+

2.2. debug

+
+
+
+

2.2.1. gdb

+
+
+ +
+

2.3. reverse

+
+
+
+

2.3.1. radare2

+
+
+
    +
  1. iaito
  2. +
+
+
+

2.3.2. hopper(non-free)

+
+
+
+ + +
+

3. notes on video

+
+
+
+

3.1. 0x04: asm basics

+
+
+
+

3.1.1. to show assembly in the source code window in gud, M-x gdb-display-disassembly-buffer

+
+
+

3.1.2. links

+
+
+
    +
  1. https://microcorruption.com/
  2. +
+
+
+
+

3.2. 0x06: tools

+
+
+
+

3.2.1. simple tools

+
+
+
    +
  1. hexdump
  2. +
  3. strings
    +
    +

    +all printable letters
    +

    +
    +
  4. +
  5. objdump
    +
    +

    +disassembler
    +

    +
    +
  6. +
  7. strace/ltrace
    +
    +

    +trace sys/lib call
    +

    +
    +
  8. +
+
+
+

3.2.2. 0x0A: deal with numbers

+
+
+
    +
  1. endian?
    +
    +

    +from Wikipedia
    +Big-Endian.svg.png Little-Endian.svg.png
    +x86 is little endian
    +

    +
    +
  2. +
  3. tools
    +
      +
    1. 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'
      +
      +
      +
      +
    2. +
    3. iex
      +
      +
      +
      iex(1)> <<0x61626364::32>>
      +"abcd"
      +iex(2)> Base.decode16("61626364")
      +{:ok, "abcd"}
      +
      +
      +
      +
    4. +
    +
  4. +
+
+
+
+
+
+

Author: dongdigua

+

Created: 2022-09-11 日 11:14

+
+ + diff --git a/cheatsheet.html b/cheatsheet.html new file mode 100644 index 0000000..3bd485d --- /dev/null +++ b/cheatsheet.html @@ -0,0 +1,612 @@ + + + + + + + +Editor Cheatsheet + + + + + + +
+ UP + | + HOME +
+

Editor Cheatsheet

+
+

Table of Contents

+ +
+ + +
+

1. VIM

+
+
+
+

1.1. deletion

+
+ + + +++ ++ + + + + + + + + + + + + +
keyusage
Ddelete to end of line
+
+
+ +
+

1.2. edit

+
+ + + +++ ++ + + + + + + + + + + + + + + + + + + + + + + +
keyusage
u/C-r撤销/重做
c i {change inside {}
"{register}y/p向/从寄存器拷贝
+
+
+ +
+

1.3. movement

+
+ + + +++ ++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
keyusage
w/e下一个单词/单词尾
b单词头
H/M/L当前页面可见顶部/中间/底部
C-u(f)/d上/下翻页
%到对应括号
{}段落跳转
g ;goto last change
g */#正/反查找光标下的词
g d/D跳转到本地/全局定义
+
+
+ +
+

1.4. visual

+
+ + + +++ ++ ++ + + + + + + + + + + + + + + +
keyusagenext
C-v矩形区域选择S-i 插入, esc 批量执行
+
+
+ + +
+

1.5. file/split

+
+ + + +++ ++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
keyusage
:n/:N文件之间切换
:b切换到文件
C-w h/j/k/l切换分屏窗口
ZZ:wq
+
+
+
+ + + +
+

2. EMACS

+
+
+
+

2.1. org-mode

+
+ + + +++ ++ + + + + + + + + + + + + + + + + + + + + + + +
keyusage
C-c |创建表格
C-c C-e导出 HTML
C-c C-x C-vtoggle render images
+
+
+ +
+

2.2. normal

+
+ + + +++ ++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
keyusage
M-%替换
M-;区域切换注释
C-x C-;行切换注释
C-ypaste to minibuffer
M-&/!async/shell command
+
+
+ +
+

2.3. dired

+
+ + + +++ ++ + + + + + + + + + + + +
keyusage
Rrename
+
+
+
+ +
+

3. Git

+
+
+
git log --stat | perl -ne 'END { print $c } $c += $1 if /(\d+) insertions/;'
+git log  --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }'
+
+
+
+
+ +
+

4. Fish

+
+ + + +++ ++ + + + + + + + + + + + + + + + + + + + + + + +
keyusage
M-Left/Rightjump world, or prevd/nextd
M-ssudo the last command
M-Wwhat is this
+
+
+
+
+

Author: dongdigua

+

Created: 2022-09-11 日 11:14

+
+ + diff --git a/index.md b/index.md index d5ded2a..9739f9c 100644 --- a/index.md +++ b/index.md @@ -1,20 +1,15 @@ # dongdigua's blog -## 关于我 -是人类,
-喜欢 Elixir 语言, 在学 Rust, 会写后端, 前端懒得学
-Minecraft 红石玩家, [B站](https://space.bilibili.com/489732092)
-更多请见[我的 github 主页](https://github.com/dongdigua) -## 目录 -[MGLNDD scans](org_html/weird_mglndd)
-[elixir 写点对点加密聊天软件](p2p_chat)
-[博客, YouTube 等收集](org_html/internet_collections)
-[我对 SciCraft 更新1.19的看法](scicraft_update)
+## Table of Contents (sorted by time) +[MGLNDD scans](weird_mglndd)
+[最近折腾 sway 的一些记录](wayland)
+[推荐 everforest 主题](recommend_everforest_theme)
+[我对显示 IP 属地的看法](about_showing_ip)
+[编辑器操作备忘录](cheatsheet)
[我的 gnome 配置](my_gnome_config)
-[编辑器操作备忘录](org_html/cheatsheet)
-[我对显示 IP 属地的看法](org_html/about_showing_ip)
+[我对 SciCraft 更新1.19的看法](scicraft_update)
+[博客, YouTube 等收集](internet_collections)
[对我将来的视频网站的一些畅想](plan_for_my_video_site)
-[推荐 everforest 主题](org_html/recommend_everforest_theme)
-[最近折腾 sway 的一些记录](org_html/wayland)
+[elixir 写点对点加密聊天软件](p2p_chat)
--- diff --git a/internet_collections.html b/internet_collections.html new file mode 100644 index 0000000..5069442 --- /dev/null +++ b/internet_collections.html @@ -0,0 +1,945 @@ + + + + + + + +Internet Collections + + + + + + +
+ UP + | + HOME +
+

Internet Collections

+
+

Table of Contents

+ +
+ +
+

1. 一些(个人)博客收集

+
+
+
+

1.1. Paul Graham

+
+
+

1.2. qiusir   rssub

+
+
+

1.3. 王垠

+
+
+

1.4. 阮一峰   rssub

+
+
+

1.5. 黑客技术   hack

+
+

+really good website, butt, no rss
+

+
+
+
+

1.6. 易姐

+
+
+

1.7. King's way

+
+
+

1.8. floooh   c

+
+

+07 年开始, cpu emulator
+

+
+
+
+

1.9. 小耸   rust c

+
+
+

1.10. 这可太刑了

+
+

+学习通事件相关
+

+
+
+
+

1.11. 写着写着就懂了   elixir

+
+

+elixir/erlang大佬, 公众号: HelloElixir
+

+
+
+
+

1.12. lujun9972   emacs

+
+

+超多emacs
+

+
+
+
+

1.13. 文辉的烂笔头

+
+

+第一次查过的问题,就应该记下来 !
+第二次再查的问题,就必须记下来 !
+

+
+
+
+

1.14. scinart   lisp

+
+

+13年最后更新
+

+
+
+ +
+

1.16. bozhang   rssable

+
+

+05 年开始, 天文学
+

+
+
+
+

1.17. emacs dunnet 教程   emacs

+
+

+luogu
+

+
+
+
+

1.18. IceGuye

+
+
+

1.19. Ground Oddity

+
+

+出国
+

+
+
+
+

1.20. NIL   emacs

+
+

+elisp
+

+
+
+
+

1.21. 第 N 个质数   c algorithm

+
+

+看不懂, 先收藏着
+

+
+
+
+

1.22. Zhangy233   rust

+
+
+

1.23. 芒果快评

+
+

+今年的新博客, 友链有踏浪
+

+
+
+
+

1.24. mrxn   hack

+
+

+网安
+

+
+
+
+

1.25. devbins   rust c emacs

+
+
+

1.26. include-yy   c lisp emacs

+
+

+许多东方的图
+

+
+
+
+

1.27. stardiviner

+
+

+Coder & 文学
+

+
+
+ +
+

1.29. advanced emacs startup   emacs

+
+
+

1.30. steven   rust

+
+

+BlockChain
+

+
+
+ +
+

1.32. Alynx Zhou   linux rssable

+
+
+

1.33. Clloz   frontend

+
+

+界面特别好看
+

+
+
+
+

1.34. Core Dumped   rust lowlevel emacs

+
+

+VM
+

+
+
+
+

1.35. 倔强的程序员

+
+

+编! 译! 原! 理!
+

+
+
+
+

1.36. 24 days of rust   rust

+
+

+old
+

+
+
+
+

1.37. keep coding   rust c lowlevel backend

+
+
+

1.38. Cogito, ergo sum   rssable

+
+

+文学
+

+
+
+
+

1.39. Tomas Petricek   rssub

+
+

+very high quality
+

+
+
+

1.39.1. commodore64 BASIC

+
+ +
+
+

1.40. 弦外之音   c lowlevel

+
+
+

1.41. C-tone

+
+

+pretty and concise page
+

+
+
+
+

1.42. lightless blog   hack

+
+
+

1.43. The State of GPGPU in Rust   rust lowlevel

+
+
+

1.44. Light & Truth

+
+

+from ruanyifeng
+

+
+
+
+

1.45. 知乎专栏: 技术考古

+
+

+plan9
+

+
+
+
+

1.46. ghinda   frontend

+
+
+
+

1.46.1. oxygenos

+
+

+his final year project in high school, 2008
+a webos using oxygen visual design
+

+
+
+
+ +
+

1.48. syosa

+
+

+pixel art
+

+
+
+
+

1.49. 知乎专栏: 嘶吼RoarTalk   hack

+
+

+回归最本质的信息安全
+

+
+
+ +
+

1.51. Xe Iaso   rssub

+
+
+
+

1.51.1. V for Vaporware

+
+
+ +
+

1.53. tsdh   emacs

+
+
+

1.54. B

+
+
+
+

1.54.1. yanemame

+
+

+猴哥推荐的
+

+
+
+
+

1.54.2. 我不会编程

+
+

+B站: 美味的樱桃菌
+

+
+
+
+

1.54.3. CC   linux

+
+

+B站: 称呼我C先生
+

+
+
+
+

1.54.4. lunaixsky   c lowlevel

+
+
+

1.54.5. EndlessPeak   linux

+
+
+
+

1.55. shenjack/HWS

+
+
+
+

1.55.1. 老网虫

+
+
+

1.55.2. yang-qwq

+
+
+

1.55.3. zhanganzhi

+
+
+
+ +
+

2. YouTube 收集(没有账号, 这就是我的收藏夹)

+
+
+
+

2.1. Computer Science

+
+
+
+

2.1.1. 代码视频片头

+
+

+java bad, python slow, nvidia fuck you, vi-sual studio, C艹 sucks
+

+
+
+ +
+

2.1.3. CMD 登录B站

+
+
+

2.1.4. Rust aes加密

+
+

+legacy
+

+
+
+ +
+

2.1.6. Tantan 合集

+
+

+Rust Graphics
+

+
+
+ + + + +
+

2.1.11. tsoding aoc 2020 day 12 in perl

+
+

+0:20:50 pythonbulubulu~
+

+
+
+
+

2.1.12. tsoding irc client in ocaml

+
+

+0:50 List.fold_left faster than fold_right, but haskell is opposite
+1:00 I like ocaml, that's how python should look like,
+ but ocaml itself is not ideal, you have to take ocaml and throw O away, and that's perfect
+1:03 to be fair p___hub is more interesting than this, that's for sure, so let's use Makefile (instead of dune)
+1:50 sexplib?
+2:14 "how many american server you have already hacked" - "I don't count them I'm sorry"
+

+
+
+
+

2.1.13. CVE-2021-3156 sudo

+
+ + + + + + +
+

2.1.20. The Biggest Linux Security Mistakes

+
+

+"Security is a journey, not a destination!"
+

+
+
+ +
+ +
+

2.2. Math

+
+
+
+

2.2.1. Group Theory

+
+ +
+

2.2.3. Eric Cornwell

+
+

+math on 1950~1980 computer
+

+
+
+
+ +
+

2.3. Minecraft

+
+
+ + +
+

2.3.3. Tantan: MC + Fez

+
+ +
+ +
+

2.4. ?

+
+
+ +
+

2.4.2. DT: Odysee

+
+ +
+

2.4.4. Why I'm Suing YouTube.

+
+
+

+a story about YouTube’s intentional efforts to undermine the United States of America in collusion with the Russian government.
+It’s also a story about copyright infringement
+— and YouTube’s willful blindness to bad actors who openly admit to filing patently fraudulent DMCA counter-notifications to avoid the termination of their accounts.
+

+
+
+
+
+

2.4.5. Yes, Everyone on the Internet Is a Loser.

+
+

+I agree
+

+
+
+
+
+ +
+

3. r

+
+
+
+

3.1. unixporn

+
+
+ +
+

3.1.2. pocket pc

+
+
+

3.1.3. win7 :)

+
+ +
+ +
+ +
+

4. Hacker News

+
+
+ +
+ +
+

5. Other

+
+
+
+

5.1. Python-5

+
+

+from tsoding's first porth video, (he is using debian, 37:00 copilot xd)
+

+
+
+
+

5.2. cat -v

+
+

+not only harmful stuff <3
+

+
+
+
+

5.3. http://sdf.org/

+
+

+SDF Public Access UNIX System .. Est. 1987
+

+
+
+
+

5.4. fediverse wiki

+
+

+The Fediverse is a giant Network of social media platforms
+

+
+
+ + +
+

5.7. Adequacy: Is Your Son a Computer Hacker?

+
+
+

+BSD, Lunix, Debian and Mandrake are all versions of an illegal hacker operation system,
+invented by a Soviet computer hacker named Linyos Torovoltos.
+

+
+
+
+
+

5.8. GNU C Language Intro and Reference Manual

+
+
+

+To any NSA and FBI agents reading my email: please consider
+whether defending the US Constitution against all enemies,
+foreign or domestic, requires you to follow Snowden's example.
+

+
+
+
+
+
+
+

Author: dongdigua

+

Created: 2022-09-11 日 11:14

+
+ + diff --git a/moonboos.html b/moonboos.html new file mode 100644 index 0000000..a3cf2f5 --- /dev/null +++ b/moonboos.html @@ -0,0 +1,266 @@ + + + + + + + + + + + + + + +
+ UP + | + HOME +
+
+

Table of Contents

+ +
+

+#+TITLE 有关明月庄主的一些东西
+

+ +
+

+互联网是有记忆的
+全都是你的所作所为
+

+
+ +
+

1. 扩充自 庄主人肉大炮 我的置顶评论

+
+

+如果再遇到给它洗白的人, 可以把下面这些怼过去
+

+
+ +
+

1.2. xk材质包

+
+ + +
+

1.5. fallen屠龙炮

+
+

+最开始根本没有标注原作者, 而且还说"感谢TIS成员的帮助", 然而TIS成员并没有进行任何帮助
+后来迫于压力才更改简介
+

+
+
+
+
+
+

Author: dongdigua

+

Created: 2022-09-11 日 11:14

+
+ + diff --git a/org/Makefile b/org/Makefile index 7a7b574..c582d02 100644 --- a/org/Makefile +++ b/org/Makefile @@ -7,8 +7,10 @@ all: html html: @echo "Generating HTML..." @$(EMACS) $(EMACS_OPTS) - @echo "HTML generation done" + @echo "DONE" clean: rm ./../org_html/*.html rm ~/.org-timestamps/org-pages.cache + rm ./../*.html* + rm ./../*.xml* diff --git a/org/internet_collections.org b/org/internet_collections.org index 06c8b78..c7a894c 100644 --- a/org/internet_collections.org +++ b/org/internet_collections.org @@ -1,7 +1,7 @@ #+TAGS: elixir(e) rust(r) c(c) lisp(l) #+TAGS: lowlevel(w) frontend(f) backend(b) emacs(m) hack(h) algorithm(a) linux(x) #+TAGS: rssable(s) rssub(u) -#+OPTIONS: toc:nil +#+OPTIONS: toc:1 #+OPTIONS: ^:{} #+TITLE: Internet Collections @@ -200,8 +200,6 @@ https://www.pixiv.net/users/57759368 https://www.pixiv.net/users/2973809 https://prnt.sc/ #+END_COMMENT -** [[https://moonboos.fandom.com/zh/wiki/%E6%98%8E%E6%9C%88%E5%BA%84%E4%B8%BB_Wiki][日月脏主 Wiki]] -MC 技术区毒瘤! ** [[https://en.wikipedia.org/wiki/Python_(missile)][Python-5]] from [[https://youtu.be/8QP2fDBIxjM][tsoding's first porth video]], (he is using debian, 37:00 copilot xd) ** [[http://cat-v.org/][cat -v]] diff --git a/org/moonboos.org b/org/moonboos.org new file mode 100644 index 0000000..2e8429f --- /dev/null +++ b/org/moonboos.org @@ -0,0 +1,16 @@ +#+TITLE 庄主其人 + +#+BEGIN_QUOTE +互联网是有记忆的 +全都是你的所作所为 +#+END_QUOTE + +* 扩充自 [[https://www.bilibili.com/video/BV1be4y1f7PQ][庄主人肉大炮]] 我的置顶评论 +如果再遇到给它洗白的人, 可以把下面这些怼过去 +** [[https://moonboos.fandom.com/zh/wiki/%E6%98%8E%E6%9C%88%E5%BA%84%E4%B8%BB_Wiki][日月脏主 Wiki]] +** [[https://t.bilibili.com/668527168803831831][xk材质包]] +** [[https://www.bilibili.com/video/BV1as411v7Xn][玩家怪物分离踏板]] +** [[https://t.bilibili.com/439570012759880564][无限活塞递归]] +** [[https://www.bilibili.com/video/BV1hR4y1L7Ra][fallen屠龙炮]] +最开始根本没有标注原作者, 而且还说"感谢TIS成员的帮助", 然而TIS成员并没有进行任何帮助 +后来迫于压力才更改简介 diff --git a/org/publish_config.el b/org/publish_config.el index 9e35f9d..2932e24 100644 --- a/org/publish_config.el +++ b/org/publish_config.el @@ -11,7 +11,7 @@ '(("org-pages" :base-directory "." :base-extension "org" - :publishing-directory "./../org_html/" + :publishing-directory "./../" :recursive t :exclude "画大饼.org" :publishing-function org-html-publish-to-html @@ -19,7 +19,7 @@ ;; https://github.com/rgb-24bit/org-html-theme-list org-joshua :html-head "" :html-link-home "https://dongdigua.github.io" - :html-link-up "https://dongdigua.github.io" + :html-link-up "./../" ))) (defun myweb-publish () @@ -30,9 +30,9 @@ (webfeeder-build "rss.xml" - "./../org_html" + "./../" "https://dongdigua.github.io" - (delete "rss.html" (directory-files "./../org_html" nil ".*\.html$")) + (delete "rss.html" (directory-files "./../" nil ".*\.html$")) :title "dongdigua's blog" :description "Blog!" :builder 'webfeeder-make-rss) diff --git a/recommend_everforest_theme.html b/recommend_everforest_theme.html new file mode 100644 index 0000000..79a0820 --- /dev/null +++ b/recommend_everforest_theme.html @@ -0,0 +1,244 @@ + + + + + + + +Recommend EverForest Theme + + + + + + +
+ UP + | + HOME +
+

Recommend EverForest Theme

+

+强烈推荐 everforest 这个主题
+

+
+

+Everforest is a green based color scheme, it's designed to be warm and soft in order to protect developers' eyes.
+

+
+ +

+是一个绿色系护眼主题, 正如名字, 有森林的气息
+分为暗色和亮色, 每一种都有三种不同深浅的背景
+作者是中国人, 制作了许多高质量 Vim 主题
+

+ + +
+

1. emacs

+
+

+这个主题在 2022-06-29 才开始制作 emacs 版本
+目前还没在 melpa 上, 所以需要手动安装
+我一看到这个就从 Nord 换过来了
+我加入了 whitespace-mode 的支持, 默认的颜色太晃眼睛啦
+希望大家能一起帮忙贡献这个主题
+

+ +

+放一段 Rust 代码的效果
+everforest.png
+

+
+
+
+
+

Author: dongdigua

+

Created: 2022-09-11 日 11:14

+
+ + diff --git a/wayland.html b/wayland.html new file mode 100644 index 0000000..905c9fc --- /dev/null +++ b/wayland.html @@ -0,0 +1,398 @@ + + + + + + + +Something About Wayland(swaywm) + + + + + + +
+ UP + | + HOME +
+

Something About Wayland(swaywm)

+ +
+

1. Solution

+
+
+
+

1.1. gnome-screenshot

+
+

+grim
+

+
+
+
+

1.2. iBus

+
+

+emacs pyim
+

+
+
+
+

1.3. Emacs transparent, terminal blur

+
+

+probably wayfire?
+

+
+
+
+

1.4. Authorization required, but no authorization protocol specified

+
+
+
+

1.4.1. sudo -E

+
+
+

1.4.2. lxpolkit(directly execute) or polkit-gnome(prettier)

+
+
+
+

1.5. cannot start sway on lightdm

+
+

+in /etc/lightdm/lightdm.conf uncomment sessions-directory line
+but still not stable, and it can't remenber which DE you used last time
+so use gdm is a better choice?
+SDDM is fantastic! It is themeable,
+I'm using elarun, a oxygen-like smooth crystal theme
+materia-kde is also a good choice
+

+
+
+
+

1.6. obs

+
+

+don't remove the include line!!!
+

+
+
+
+

1.7. cursor theme not working

+
+

+from this issue
+add seat seat0 xcursor_theme Oxygen_White in sway comfig file
+

+
+
+ +
+

1.9. notify-send don't work

+
+

+mako, a notification daemon
+

+
+
+ +
+

1.11. emacs tool-bar not working(cannot toggle and icon theme missing)

+
+
+
+

1.11.1. cannot toggle: disable custon default-frame-alist, or just use floating mode

+
+
+

1.11.2. TODO icon theme missing: ?

+
+
+
+ + +
+

2. Ref

+
+
+ + + + +
+

2.5. prtsc is Print

+
+

+xev/wev is helpful
+

+
+
+
+

2.6. https://github.com/ziap/dotfiles

+
+

+a great config
+

+
+
+ +
+

2.8. Ruixi-rebirth's dotfiles

+
+

+sway, very beautiful, from COSSIG
+

+
+
+
+

2.9. a Paid config

+
+

+this is excellent, but…not for me
+I'd like something simpler
+

+
+
+

2.9.1. archcraft

+
+
+
+

2.10. 夜 - Yoru

+
+

+awesome config!
+

+
+
+
+
+
+

Author: dongdigua

+

Created: 2022-09-11 日 11:14

+
+ + diff --git a/weird_mglndd.html b/weird_mglndd.html new file mode 100644 index 0000000..d26ce5d --- /dev/null +++ b/weird_mglndd.html @@ -0,0 +1,264 @@ + + + + + + + +Something About MGLNDD Scans + + + + + + +
+ UP + | + HOME +
+

Something About MGLNDD Scans

+ +
+

1. stretchoid opt-out

+
+

+this domain's workers are comstantly scanning the WHOLE internet
+

+
+
+
+

2. SANS internet storm center diary

+
+

+about the scanner and IP range
+

+
+ +
+
+

3. 知名网络空间普查与网络测绘组织研究报告 第一期-组织名录篇

+
+
+

4. my post on bilibili

+
+
+

5. my listener and some other logs

+
+
+

6. zhihu:repost-translation: 如何建立一个基本的蜜罐

+
+

+the original post is gone
+

+
+

+您还可以开始执行DNS和WHOIS查找,以找出每次扫描背后的人员。
+在这个简短的样本中,我找到了一个伪“研究员”:107.170.202.111解析为“zg-0301f-15.stretchoid.com”。根据他们的网站:
+…
+Stretchoid不能识别他们是谁。他们没有确定他们正在做什么或为什么他们在161 / udp扫描我的蜜罐。
+(端口161 / udp是为简单的网络管理协议(SNMP)保留的,并且经常容易受到攻击。)
+是的,他们把“malicious”拼错了 - 因此它可能不会出现在谷歌搜索“stretchoid and malicious”的结果中。
+

+
+
+
+
+

7. Why is Digital Ocean showing in my router, connecting to a PS4?

+
+
+

8. on ironcastle, but deleted

+
+
+
+

Author: dongdigua

+

Created: 2022-09-11 日 11:14

+
+ +