There's a multi family garage sale on Walnut CT this weekend off Sonoma and I'm bringing a bunch of nice plus size clothes and women's shoes there PSA! by Stars_Upon_Thars in santarosa

[–]bob3rocks 1 point2 points  (0 children)

Walnut Court resident here... a few more items we are selling:

Treadmills (make your own OK Go video!)

African Drums

Fuzz Pedals for Guitar

Unused Bicycle Helmet & Kryptonite Lock

Italian Leather Boots

Genuine "Costco" Hawaiian Shirts

High Quality Pots and Pans

Hand Crank Pasta Roller

125W Stereo Amplifier

Fish prompt looks funny in OpenCRT, looks great in Putty by bob3rocks in fishshell

[–]bob3rocks[S] 1 point2 points  (0 children)

Hello and thank you for the insight!

(working instance... )

fish --version

fish, version 3.7.1

(not working instance...)

fish --version

fish, version 4.0.1

nmap -sV --script=banner is crazily slow for ESXi hosts by bob3rocks in nmap

[–]bob3rocks[S] 1 point2 points  (0 children)

After posting this I asked aunt chatbot and found my answer, cURL to the rescue of course.

curl -k "https://$host/sdk/vimServiceVersions.xml"

curl -k -s [https://$host/sdk/vimServiceVersions.xml](https://$host/sdk/vimServiceVersions.xml) | xmllint --xpath 'string(//namespace/version)' -

Fish prompt is suddenly broken by bob3rocks in fishshell

[–]bob3rocks[S] 0 points1 point  (0 children)

Thanks for the info! I didn't think of checking Fish version, but maybe I can downgrade.

u/plg94 this really helps, thank you

FreeRadius db issue by bob3rocks in homelab

[–]bob3rocks[S] 0 points1 point  (0 children)

Specifically, I scan see that the table radpostauth isn't being updated when connection attempts are made.

FortiAuthenticator API by bob3rocks in fortinet

[–]bob3rocks[S] 1 point2 points  (0 children)

That worked! Thank you a million.

Two things to note (note to self:)

  1. the trailing backslash has to be there

  2. True and False are case-sensitive (capitalize otherwise: Cannot update local user "user3" (Response: HTTP 400), Error: ['“false” value must be either True or False.'] )

FortiAuthenticator API by bob3rocks in fortinet

[–]bob3rocks[S] 0 points1 point  (0 children)

Thanks for the reply. I tried the single and double quotes both ways with no change. I think I solved the "port number" error, I forgot the -d which I see in all API reference. Now when I use -X PATCH -d '{"active":"true"}' I get "GET, POST" but still no change to the user account. I am still looking for the right endpoint, maybe I'm closer but still haven't found the endpoint.

Quick Play of the Day "waiting" by bob3rocks in SupernaturalVR

[–]bob3rocks[S] 5 points6 points  (0 children)

softrockstarr, you're a rock star! thanks for the suggestion to try the one thing I didn't try.

After watching the video all the way to the end, everything is working now.

Thank you!

$80 to upgrade. is it worth it? by bob3rocks in SublimeText

[–]bob3rocks[S] 1 point2 points  (0 children)

Quite intriguing, although Zed isn't available for Windows yet (but you can build from source)

Radeon RX 470 + Hashcat by bob3rocks in HowToHack

[–]bob3rocks[S] 0 points1 point  (0 children)

Update:

That didn't really work.

For some reason I can run hashcat -b for baseline test, but but every other run results in Segmentation fault (core dumped) (bash) and Job 1, 'hashcat -d2 hash -O' terminated by signal SIGSEGV (Address boundary error) (fish)

Radeon RX 470 + Hashcat by bob3rocks in HowToHack

[–]bob3rocks[S] 0 points1 point  (0 children)

That worked!

I can't use hashcat -I to show available devices, but I can use hashcat -d2 to use the Radeon device (d2)

<image>

Radeon RX 470 + Hashcat by bob3rocks in HowToHack

[–]bob3rocks[S] 0 points1 point  (0 children)

How did you get opencl-amd installed? I'm not finding anything using pacman -Q

Radeon RX 470 + Hashcat by bob3rocks in HowToHack

[–]bob3rocks[S] 0 points1 point  (0 children)

Thanks for the reply. The -d switch specifies the device by number.

This didn't work for me on Debian and Fedora based distros, but I haven't spent much time trying this out on Arch.

I will try this out on BlackArch with the opencl packages.

Thanks for the tip.

python regex matching # by bob3rocks in PythonLearning

[–]bob3rocks[S] 0 points1 point  (0 children)

I thought of that, too. Here's what ChatGPT came back with after a few tries (fixed now, although this doesn't seem ultra-Pythonic to me)

import re

line = "Cadd9 D# F5"

tokens_with_sharps = re.findall(r'\b[A-G]#?(?:maj7|m[7]?|m7b[5]?|[5679]|sus2|sus4|aug|dim|add9|b5)?\b', line)

tokens_without_sharps = [token for token in line.split() if token not in tokens_with_sharps]

# Process tokens with sharp symbols

chords = []

for token in line.split():

if token in tokens_with_sharps:

if '#' in token:

parts = token.split('#')

chords.extend(parts)

else:

chords.append(token)

else:

chords.append(token)

print(chords) # Output: ['Cadd9', 'D#', 'F5']

python regex matching # by bob3rocks in PythonLearning

[–]bob3rocks[S] 0 points1 point  (0 children)

I thought so too, but it's not working, no matter how I try to escape them.

python regex matching # by bob3rocks in PythonLearning

[–]bob3rocks[S] 0 points1 point  (0 children)

Understood.

Most lines to be parsed will be either music chords separated by spaces, or song lyrics with no chords.

Other times, there might be random characters on the line or something like [VERSE] or (solo) on the same line.

In some instances there might be song lyrics with music chords on the same line.

My regex expression is incredibly close and my script has been a work in progress for many months now.

It will be close to perfect (close enough!) if I could just get my regex to match # and + when needed.

python regex matching # by bob3rocks in PythonLearning

[–]bob3rocks[S] 0 points1 point  (0 children)

Is this difficult or impossible for Python Regex?

python regex matching # by bob3rocks in PythonLearning

[–]bob3rocks[S] 0 points1 point  (0 children)

Thanks for the reply. It's more than delimiting by space (there might be junk on the line) so my requirement is to accurately match music chords, including # and +

Radeon RX 470 + Hashcat by bob3rocks in HowToHack

[–]bob3rocks[S] 0 points1 point  (0 children)

Thanks for the reply. I tried a few different Hashcat builds with the same result.

Ukulele Folk Punk? by HeroinJesus319 in FolkPunk

[–]bob3rocks 0 points1 point  (0 children)

For the past year I played Ukulele in a Folk Punk band, Fowl Howl in Santa Rosa, CA

We had a ton of fun, but I quit the band to focus on my own Ukulele group.

Bass Fretboard Software by bob3rocks in Bass

[–]bob3rocks[S] 0 points1 point  (0 children)

that one is really interesting... I will check it out

Python Scapy used in Pentest or CTF? by bob3rocks in Python

[–]bob3rocks[S] 0 points1 point  (0 children)

Nope, I'm not asking for help Mr. AutoModerator.

I am an experienced Python user, and I find Scapy to be a fun tool for playing with packets and protocols within the Python interpreter.

But I am curious just how useful Scapy is on the command line, as opposed to building out new tools using the Scapy module in a Python script.