notes

Personal notes
git clone git://git.laack.co/notes.git
Log | Files | Refs

commit 8e9458573f878e90d673637f9a3e4fe9a9e851d1
parent 52e530dac4f96ecc4db797ef14c9dfde68435b33
Author: Andrew Laack <andrew@laack.co>
Date:   Sun,  3 May 2026 12:48:06 -0500

Search notes

Diffstat:
Mdocs/Cybersecurity.md | 6++++--
Adocs/Dorking.md | 73+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Mdocs/SelfHosting.md | 3---
Mdocs/index.md | 1+
4 files changed, 78 insertions(+), 5 deletions(-)

diff --git a/docs/Cybersecurity.md b/docs/Cybersecurity.md @@ -4,8 +4,10 @@ **Chapter:** 1.1 - - **Definition:** Protection of information stored, transmitted, and processed on computing devices. Protection encompasses confidentiality, integrity, availability, authenticity, and accountability. + +## Links + +- [Dorking](Dorking.md) diff --git a/docs/Dorking.md b/docs/Dorking.md @@ -0,0 +1,73 @@ +# Dorking + +**Source:** Using search engines propery by Josh Blais + +**Definition:** Using advanced search operators in search engines to find targeted information. + +## Example Keywords + +### Site + +site:{site name} + +### Time + +before:2020-01-01 after:2016 + +Not supported by duckduckgo. + +### Full text + +"This is a full text search of all of these words in this order" + +### Exclusion + +-python -java -javascript -ai -llm tech news + +### Wildcard + +St. * Cathedral Montreal + +Attempts to match on the string, upweighting instances where there are words between St. and Cathedral. + +### Related + +emacs related:joshblais.com + +Returns sites similar to the site "joshblais.com". + +### Define + +define:theosis + +Give the definition of the term theosis. + +### Filetype + +filetype:pdf Deepseek v2 + +### Booleans + +Default is generally AND, but you may specify OR as follows + +NixOS OR Guix + +### Proximity Search + +OpenAI AROUND(3) mythos + +### Text Location + +inurl:wiki permanent record intitle:"security" before:2019 + +inurl specifies text must exist in the url. Similarly, intitle requires text to be in the title. + +### Ranges + +nsa backdoors 2012..2019 + +Specify numeric ranges with ".." + +## Generality + +Google's search engine supports these dorks, and it should generally be the case other search engines do as well. Despite this, it hasn't been my experience this is always the case. One of the most useful dorks, specifying date ranges, seems unsupported by duckduckgo. diff --git a/docs/SelfHosting.md b/docs/SelfHosting.md @@ -8,11 +8,8 @@ This is the index for self hosting information. - [File Hosting](FileHosting.md) - [Documentation Hosting](DocumentationHosting.md) - Git Hosting - - Feel free to clone the repo and send a PR via email if you would like to fill this out! - CI/CD - - Feel free to clone the repo and send a PR via email if you would like to fill this out! - Password Managers - - Feel free to clone the repo and send a PR via email if you would like to fill this out! - [Git Hosting](GitHosting.md) - [VPS](VPS.md) diff --git a/docs/index.md b/docs/index.md @@ -3,6 +3,7 @@ ## Main Subjects - [Computer Science](ComputerScience.md) +- [Cybersecurity](Cybersecurity.md) - [Math](Math.md) - [Machine Learning](MachineLearning.md)