All public logs
Jump to navigation
Jump to search
Combined display of all available logs of I Will Fear No Evil. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 09:19, 27 August 2025 Chubbard talk contribs created page Category:Mediawiki (Created page with "Simply anything that is specific to Mediawiki that I have had to do over time or things I learned.")
- 09:03, 27 August 2025 Chubbard talk contribs created page Mediawiki (Created page with "Category:mediawiki ===Mediawiki Notes=== General tasks done over time to maintain mediawiki. ==Nuke SPAM accounts== Login to the MySQL database to do this work.. * UPDATE account_requests SET acr_deleted = 1, acr_rejected = DATE_FORMAT(NOW(), '%Y%m%d%H%i%s'), acr_comment = 'Mass rejection due to account bot or spammer abuse' WHERE acr_deleted = 0 AND acr_email = acr_notes; ==Attempt indexing== * TBD")
- 08:56, 27 August 2025 Chubbard talk contribs created page Category:Fail2ban (Created page with "Anything related to fail2ban can be added to this category")
- 08:56, 27 August 2025 Chubbard talk contribs created page Fail2ban (Created page with "===Fail2ban Notes=== There are a whole bunch of options and commands that I forget for fail2ban. This is simply a list of things that can be done.. ==Ban IP== * sudo fail2ban-client set JAIL banip 107.175.27.212 ==Status Jail== * sudo fail2ban-client status ==UnBan IP== * sudo fail2ban-client set JAIL unbanip 192.168.0.1 ==Testing Regex== * fail2ban-regex /var/log/haproxy.log 'haproxy(?:\[\d+\])?: <HOST>:\d+ \[.*\] default_ssl_http_in~ wiki/wiki01 .* "GET /mediawi...")
- 09:26, 10 July 2025 Chubbard talk contribs created page Url encode (Created page with "==URL encoding function== * Simple way to encode URLs for bash scripts.. Brainless but seems to work ok for most use cases.. <pre> urlencode() { local string="$1" local encoded="" local pos c o for (( pos=0 ; pos<${#string} ; pos++ )); do c=${string:$pos:1} case "$c" in [a-zA-Z0-9.~_-]) o="$c" ;; *) printf -v o '%%%02X' "'$c" esac encoded+="$o" done echo "$encoded" } </pre> Category:Bash")