summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Fankhauser hiddenalpha.ch2023-08-02 18:44:42 +0200
committerAndreas Fankhauser hiddenalpha.ch2023-08-02 18:44:42 +0200
commit6134053988b3bbc96904c8defac324abad91aed1 (patch)
treeab51acb67f4663a3e960f547dd456c7297a27fb2
parentf0cafb3b0f4feba8b4b77725c3e8e116cf7d748a (diff)
downloadUnspecifiedGarbage-6134053988b3bbc96904c8defac324abad91aed1.zip
UnspecifiedGarbage-6134053988b3bbc96904c8defac324abad91aed1.tar.gz
Some links. Specific ssh client port.
-rw-r--r--doc/note/links/links.txt4
-rw-r--r--doc/note/ssh/ssh-usage.txt5
2 files changed, 7 insertions, 2 deletions
diff --git a/doc/note/links/links.txt b/doc/note/links/links.txt
index b70a162..1f8db4b 100644
--- a/doc/note/links/links.txt
+++ b/doc/note/links/links.txt
@@ -125,7 +125,6 @@ Links (Aka argument amplifiers)
- "http://www.richardrodger.com/2012/11/03/why-i-have-given-up-on-coding-standards/"
## slf4j logger dos and donts
-- [Parameterized logging with exceptions](https://www.slf4j.org/faq.html#paramException)
- [case SO](https://stackoverflow.com/questions/1417190/should-a-static-final-logger-be-declared-in-upper-case)
- [case java-styleguide](https://web.archive.org/web/20120911192801if_/http://developers.sun.com/sunstudio/products/archive/whitepapers/java-style.pdf#G3.5426)
- [case slf4j](http://www.slf4j.org/api/org/slf4j/Logger.html)
@@ -368,9 +367,10 @@ Links (Aka argument amplifiers)
- "https://m.youtube.com/watch?v=3fh9qm-ljA8"
## java slf4j parameterized logging log4shell
-- [slf4j parameterized logging](https://www.tutorialspoint.com/slf4j/slf4j_parameterized_logging.htm)
+- [SLF4J parameterized logging](https://www.tutorialspoint.com/slf4j/slf4j_parameterized_logging.htm)
- [Format string vulnerability](https://beaglesecurity.com/blog/vulnerability/format-string-vulnerability.html)
- [slf4shell](https://nvd.nist.gov/vuln/detail/CVE-2021-44228)
+- [Parameterized logging with exceptions](https://www.slf4j.org/faq.html#paramException)
## slf4j logger logging paisa platform alice
- logger fail "https://jira.post.ch/browse/SDCISA-9903"
diff --git a/doc/note/ssh/ssh-usage.txt b/doc/note/ssh/ssh-usage.txt
index 503aca7..f9bc2a8 100644
--- a/doc/note/ssh/ssh-usage.txt
+++ b/doc/note/ssh/ssh-usage.txt
@@ -25,6 +25,11 @@ request to "localhost:7080" on HOST.
ssh -L 127.0.0.1:1234:localhost:7080 HOST
+## Use explicit client port
+
+ssh -o 'ProxyCommand ncat -p12345 %h %p' MY_SERVER
+
+
## Run Cmd via jumphost
Source: "https://www.cyberciti.biz/faq/linux-unix-ssh-proxycommand-passing-through-one-host-gateway-server/"