Advertisement · 728 × 90

Posts by franco

Louis Cole Sucks (LIVE) // Scary Goldings ft. Louis Cole, John Scofield & MonoNeon
Louis Cole Sucks (LIVE) // Scary Goldings ft. Louis Cole, John Scofield & MonoNeon YouTube video by Scary Pockets

Ermmmm ackchually Louis Cole does not suck

www.youtube.com/watch?v=-6xM...

3 months ago 0 0 0 0
Werewolf - Fiona Apple - 10/28/2017
Werewolf - Fiona Apple - 10/28/2017 YouTube video by Radio Heartland

Nothing wrong when a song ends in a minor key..

www.youtube.com/watch?v=cx8p...

3 months ago 0 0 0 0
Folk Bitch Trio - Foreign Bird | Live From Vevo Studios
Folk Bitch Trio - Foreign Bird | Live From Vevo Studios YouTube video by FolkBitchTrioVEVO

A new favorite song

www.youtube.com/watch?v=0Tpr...

6 months ago 1 0 0 0
Jazz Sabbath live | Leverkusener Jazztage 2022 | Rockpalast
Jazz Sabbath live | Leverkusener Jazztage 2022 | Rockpalast YouTube video by WDR Rockpalast

www.youtube.com/watch?v=XytG...

Delightful!

6 months ago 1 0 0 0
‘Roads’ 2025 – Together For Palestine
‘Roads’ 2025 – Together For Palestine YouTube video by Portishead

How can it feel this wrong?

www.youtube.com/watch?v=g2Am...

6 months ago 1 0 0 0
Folk Bitch Trio - Moth Song (Live at Triple R)
Folk Bitch Trio - Moth Song (Live at Triple R) YouTube video by Triple R 102.7FM

www.youtube.com/watch?v=jXMT...

8 months ago 0 0 0 0
Folk Bitch Trio - Live at Fight Night Records (Full set)
Folk Bitch Trio - Live at Fight Night Records (Full set) YouTube video by Fight Night Records

Outstanding!

www.youtube.com/watch?v=XZok...

9 months ago 0 0 0 0
Fiona Apple - Pretrial (Let Her Go Home) (Official Music Video)
Fiona Apple - Pretrial (Let Her Go Home) (Official Music Video) YouTube video by fionaappleVEVO

Let them go home..

youtu.be/ki1nvcNbYH8

11 months ago 1 0 0 0
Advertisement
Pink Floyd at Pompeii – MCMLXXII - Rick on Keyboard (Set The Controls For The Heart Of The Sun)
Pink Floyd at Pompeii – MCMLXXII - Rick on Keyboard (Set The Controls For The Heart Of The Sun) YouTube video by Pink Floyd

Configurando los controles hacia el corazón del sol..
www.youtube.com/watch?v=rDm2...

11 months ago 0 0 0 0
Roger Waters - Speech for the 80th Anniversary of the Yalta Conference
Roger Waters - Speech for the 80th Anniversary of the Yalta Conference YouTube video by Roger Waters

This is Roger Waters sharing a brilliant speech he gave for the anniversary of the Yalta Conference, filled with references to songs he wrote both with Pink Floyd and as a solo artist.

A big 'Fuck you' to all those people telling him to 'stick to the music'.

www.youtube.com/watch?v=2RGV...

1 year ago 1 0 0 0

Always and forever the Hives
youtu.be/tpUzHuiKP-c?...

1 year ago 0 0 0 0
Roger Waters - Wait for Her (Video)
Roger Waters - Wait for Her (Video) YouTube video by rogerwatersVEVO

Serve her water before wine
Do not touch her hand
Let your fingertips rest at her command

www.youtube.com/watch?v=iSl1...

1 year ago 1 0 0 0
Video

👑👑👑👑👑
thehives.com

1 year ago 22 6 3 2
Post image

Roses are red
Violets are blue

1 year ago 61329 13479 2491 1365
Black Hawks and DEI
Black Hawks and DEI YouTube video by Jesse Welles

www.youtube.com/watch?v=_xAs...

1 year ago 0 0 0 0
Khruangbin, LIVE @ Electric Castle 2024
Khruangbin, LIVE @ Electric Castle 2024 YouTube video by Electric Castle

Yes

www.youtube.com/watch?v=OzLh...

1 year ago 0 0 0 0

Gamechanger!

1 year ago 1 0 0 0
Advertisement
Enemy Of The State???
Enemy Of The State??? YouTube video by Fran Blanche

When cruelty meets no limit..

Support FranLab

www.youtube.com/watch?v=XzX0...

1 year ago 0 0 0 0

Los Enjambres

1 year ago 0 0 0 0
Roger Waters - "PICTURE THAT" (Live)
Roger Waters - "PICTURE THAT" (Live) YouTube video by Roger Waters

Imagínate tú

www.youtube.com/watch?v=j_Jh...

1 year ago 0 0 0 0
Video
1 year ago 0 0 0 0
Pink Floyd - Have A Cigar (Alternative Version)
Pink Floyd - Have A Cigar (Alternative Version) YouTube video by Pink Floyd


www.youtube.com/watch?v=6Svd...

1 year ago 0 0 0 0

"Forgotten to any man, to any time,
forgotten to any god or devil,
forgotter even to the sea.."

youtu.be/WhEfnogXxac?...

1 year ago 0 0 0 0
Preview
Deno v. Oracle: Canceling the JavaScript Trademark Oracle is holding the JavaScript trademark hostage, and we’re pursuing legal means to #FreeJavaScript. Here’s a brief update.

It's done. Now it’s your turn, Oracle.

We’ve submitted a formal petition to cancel the JavaScript trademark: it is generic, Oracle has abandoned it, and Oracle committed fraud on the USPTO during the last trademark renewal.

It's time to #FreeJavaScript.

deno.com/blog/deno-v-...

1 year ago 966 262 21 34
# 1. Basic website probing
httpx -u google.com -title -status-code

# 2. Probe specific ports 
httpx -u google.com -ports 8080,8443 -status-code

# 3. Extract URLs from response body
httpx -u google.com -ep url -o urls_extracted.txt

# 4. Match responses with specific status code
httpx -u google.com -mc 200,302

# 5. Filter responses based on content length
httpx -u google.com -fl "1000-2000"

# 6. Use multiple matchers and filters together
httpx -u google.com -mc 200 -ms "admin" -fs "login"

# 7. Probe for technologies used by websites
httpx -u google.com -td -o tech_used.json

# 8. Probe for subdomains using DNS bruteforcing
httpx -l domains.txt -tls-grab -o subdomains.txt

# 9. Take screenshots of websites (by default it creates an output folder)
httpx -u google.com -screenshot

# 10. Use custom headers
httpx -u google.com -H "User-Agent: MyCustomAgent" -H "X-Custom-Header: value"

# 1. Basic website probing httpx -u google.com -title -status-code # 2. Probe specific ports httpx -u google.com -ports 8080,8443 -status-code # 3. Extract URLs from response body httpx -u google.com -ep url -o urls_extracted.txt # 4. Match responses with specific status code httpx -u google.com -mc 200,302 # 5. Filter responses based on content length httpx -u google.com -fl "1000-2000" # 6. Use multiple matchers and filters together httpx -u google.com -mc 200 -ms "admin" -fs "login" # 7. Probe for technologies used by websites httpx -u google.com -td -o tech_used.json # 8. Probe for subdomains using DNS bruteforcing httpx -l domains.txt -tls-grab -o subdomains.txt # 9. Take screenshots of websites (by default it creates an output folder) httpx -u google.com -screenshot # 10. Use custom headers httpx -u google.com -H "User-Agent: MyCustomAgent" -H "X-Custom-Header: value"

httpx the HTTP Swiss army knife

httpx is a powerful tool for performing multiple HTTP probes. It's fast, configurable, and reliable, even with a large number of threads.

→ github.com/projectdisco...

1 year ago 25 3 1 0
Post image
1 year ago 391 74 0 6

Another day at Bluesky, and it looks like growth is not slowing down! Welcome!

We’d like to take a moment to share our stance on AI and user data:

1 year ago 117240 11415 1810 734
Advertisement
Post image
1 year ago 344 83 4 5

One part of our upgraded infrastructure may affect your profile.

If you see your handle now says “Invalid handle,” please reverify it by navigating to Settings > Change my handle > Type in your current handle > Verify DNS Record > Update.

(Basically, update to the same handle.)

2 years ago 10808 8051 530 2666
Pink Floyd - Wot’s… Uh The Deal (Official Music Video)
Pink Floyd - Wot’s… Uh The Deal (Official Music Video) YouTube video by Pink Floyd

'Cause there's no wind left in my soul

I've grown old

www.youtube.com/watch?v=aGPj...

1 year ago 0 0 0 0