Skip to content

Instantly share code, notes, and snippets.

@loretoparisi
Created September 13, 2016 12:51
Show Gist options
  • Save loretoparisi/0dccc15b60ce16f6604a9630b73ad553 to your computer and use it in GitHub Desktop.
Save loretoparisi/0dccc15b60ce16f6604a9630b73ad553 to your computer and use it in GitHub Desktop.
Get LISTEN TCP connections on localhost
#!/bin/bash
netstat -atn | grep LISTEN | grep "127.0.0.1"
@AkdM
Copy link

AkdM commented Feb 24, 2018

Do you know what is the port 15292?
When I go to http://localhost:15292, I have the following error:

ERROR
The request could not be satisfied.
Bad request.
----------------------------------------
Generated by cloudfront (CloudFront)
Request ID: [a request ID]

@seanjparker
Copy link

Do you know what is the port 15292?
When I go to http://localhost:15292, I have the following error:

ERROR
The request could not be satisfied.
Bad request.
----------------------------------------
Generated by cloudfront (CloudFront)
Request ID: [a request ID]

I had the same port open. I'm on MacOS and after running:

lsof -i 4 | grep -i "localhost:15292"

It turns out it was the 'Adobe Desktop Service', maybe it's the same for you?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment