Advanced Search
Search Results
155 total results found
ImageMagick
Use ImageMagick to create, edit, compose, and convert digital images. Resize an image, crop it, change its shades and colors, add captions, and more. Resizing files in a directory nice -n 19 mogrify -path . -filter Triangle -define filter:support=2 -unsharp ...
Single Arm Heavy Club Mill
This page is a work in progress. Single Arm Inside Circle - Like Single Arm Outside Circle - For balance Shield Cast - Basic throwing pattern Combine Single Arm Mill Prep Inside circle goes with the shield cast (goes past your opposite ear)...
Steel Mace Rotational Mills
Steel Mace Rotational Mills #end
Wildman Mace Training
Mace 101 , part 101 of a instructional basic mace videos Mace 102 - same side single arm 360 also called same side single arm shield cast Mace 103 - reverse near side single arm 360 #end
Junctions
Finding junctions / reparse points # return all reparse points on the C: volume DIR C:\ /S /AL Checking reparse points fsutil reparsepoint query [dir/file] #end
Searching Postfix logs
Status messages # find all log entries where the status is other than sent grep status= /var/log/mail.log | grep -v status=sent # make sure there aren't eny other status messages grep status= /var/log/mail.log | grep -v -e status=sent -e status=bounced -...
Python Snippets
Useful Python3 snippets as I come across them. Using xmltodict on the command line with ipset Use ipset to dump a set list via xml, then convert that to json. ipset list observed-unathorized -output xml | python3 -c 'import xmltodict, sys, json; json....
Knots
Prussik knot (friction hitch) The Worlds Most Reliable Knot: The Prusik Hitch Marlin spike hitch Soft shackle Soft shackle with prussik (as seen in picture below)
Tarp ridgeline
Linux Performance Observability
https://www.brendangregg.com/linuxperf.html #end
Port Mirror / Monitor
Ubiquiti EdgeSwitch monitor session 1 destination interface 0/10 monitor session 1 source interface 0/1 monitor session 1 source interface 0/2 monitor session 1 source interface 0/3 monitor session 1 source interface 0/4 monitor session 1 source...
Windows Network Management from the command line
Get interface metrics # IPv4 - Display interfaces sorted by metric and alias Get-NetIPInterface -AddressFamily IPv4 | Sort InterfaceMetric,InterfaceAlias # IPv6 - Display interfaces sorted by metric and alias Get-NetIPInterface -AddressFamily IPv...
Snippets
While a file exists or not # while a file exists While (Test-Path C:\Temp\File_I_Want_Gone.txt -ErrorAction SilentlyContinue) { # Do something here while the file exists } # while a file doesn't exists While (!(Test-Path C:\Temp\File_I_Want_Gone....
tcpdump
Dealing with Ethernet headers and VLANs # include ethernet header tcpdump -n -e # show only non-vlan traffic tcpdump -n -e not vlan # show only vlan traffic tcpdump -n -e vlan # show only vlan 1000 traffic tcpdump -n -e '(vlan and (ether[14...
Event Logs
DCSync Related Logs related to DCSync Credential attacks. This is a start but needs more filtering as there are tons of 4662 events. <QueryList> <Query Id="0" Path="Security"> <Select Path="Security">*[System[(EventID=4662)]]</Select> </Query>...
Scripting with traceroute
POC Running /tool traceroute with the as-value option will return the hops as an array. { :local trDestination 1.1.1.1; :local trDuration 3s; :local tr [/tool traceroute $trDestination as-value duration=3s]; :put ("number of hops in $trD...
FreeRADIUS
Message-Authenticator and Mikrotik As of RouterOS version 7.15 changelog, Mikrotik introduced the following two changes: *) radius - added "require-message-auth" option that requires "Message-Authenticator" in received Access-Accept/Challenge/Reject messag...
Fueling
GCN - How to fuel for a 100 mile ride Hourly carb intake can be anywhere from 30 to 90 grams per hour 1-3 hours target 30 to 60 grams per hour longer or harder rides target 60 to 90 grams per hour Starting with glycogen stored before the ride...
Bike Fit
Videos Cam Nicholls - How to Perform a Simple Bike Fit (at Home)
Microsoft Surface Laptop 2 Touchscreen on Linux
Getting the touchscreen to work on Garuda / Arch Linux I recently came across the Garuda Linux SwayFX variant. It looked nice so I decided to give it a try on some older Microsoft Surface Laptops. I've never used Arch Linux or a variant before. I like the loo...