Recent Posts

  • Remote Network Capture with Tcpdump and NetCat
    Ever need to do a tcpdump but stream the packets to a file on a remote device. This can come in handy if you are capturing from a device with a small or limited disk. On Remote Server: Run nc -l 32000 > /my/file/thefile.pcap That command tell […]
  • Parsing Key Value Pairs From Shell Command Results
    I recently saw a post asking how in Xojo to parse a data dump that was returned from a shell.result into key value pairs. dim Rows() as string //remove any extra line feed chars data=replaceall(data,chr(10),””) //remove any qoutes […]
  • Using Find to Delete Files
    If you have ever needed to delete file that are older then a given date in a linux enviroment FIND will give you what you are looking for. The basic command layout is find %PATH% -type f -name %FILTER% -mtime +%DAYS% -print -delete %PATH% This is […]
  • Hello World
    First post on the new blog. One of my personal goals for 2019 is to blog more of the ramblings that come into my mind. I also have a few projects I would like to start and promote as this year moves forward. My initial goal is to blog once a week, […]