S1m

Results 184 comments of S1m

If many output files are a solution : `rustscan -a foo -- -oA {{ip}}`

You may prefer `docker run --rm -ti -v ./:/out/:z,U rustscan/rustscan` : z for SELinux, U to change owner of /out/

There is a new branch: [unifiedpush](https://github.com/gotify/android/tree/unifiedpush) that allows gotify to forward notifications : [edit] All the needed informations are here : https://unifiedpush.org/users/distributors/gotify/

> However, I'd prefer a proper solution which allows to push silent messages, which are also not shown in the Gotify app, as well. These apps are already able to...

> I don't want to use my time for features I don't really need or support. 100% understandable, sorry to have bother you so long with this then :laughing: ....

Maybe you will have to change cleanAndDecodeUrl to: ``` public static String cleanAndDecodeUrl(String url) { return cleanUrl(decodeUrl(url)); } ```

176.126.240.158 got banned by ntfy.sh after too many requests, and looks like a matrix.org IP (https://github.com/matrix-org/synapse/issues?q=is%3Aissue+176.126.240.158). Is there a list of matrix.org IP to whitelist them on ntfy.sh ?

We need the ones for push requests (outgoing connections)

It is possible: check the doc https://ntfy.sh/docs/config/#rate-limiting

If you want to do the same setup than ntfy.sh: /etc/ntfy/server.yml ``` visitor-request-limit-exempt-hosts: "176.126.240.158" ``` /etc/nginx/nginx.conf ``` geo $limited { default 1; 176.126.240.158/32 0; } map $limited $limitkey { 1...