Picture issues

Re: Important

Time for me to do some stuff for my day job. I'll keep half an eye here.

At the moment, it does look like the data is getting sent back out.
 
Re: Important

just did it from the work machine in IE9. That browser had never been on naxja.org. I tried it in naxja.net as well. Not logged in.

No picture in Dan's tonight post.
http://naxja.net/forum/showpost.php?p=245745252&postcount=39467

So I logged in, went to the album and viewed the picture.
Then I went back to the post in the thread and refreshed. Still no image.
Next time I think about it I'll grab some wireshark data and repeat this stuff when I get home.
 
Re: Important

Im not super concerned with it. Somewhat annoying is all.

I turned my referrers back on and it didnt change anything.
 
Re: Important

178 1.155381000 192.168.0.3 67.228.170.170-static.reverse.softlayer.com HTTP 408 GET /forum/picture.php?albumid=156&pictureid=2482 HTTP/1.1

If I copy the
/forum/picture.php?albumid=156&pictureid=2482

Add naxja.org to it, and paste it into my browser, it works fine.

I pinged naxja and got the IP, If I do this:
http://67.228.170.170/forum/picture.php?albumid=156&pictureid=2482

The titlebar says picture.php GIF 1x1Pixels and I get a gray background.
 
Last edited:
Re: Important

For Wireshark use, start a capture on all interfaces, with "host naxja.org" as the capture filter. That'll ignore all other traffic. If you put 'display contains "pictureid=2482"' in the display filter, then click Apply, it'll only display packets containing Dan's picture. Go to "http://naxja.org/forum/showthread.php?p=245745253#post245745253" and force a full refresh. You should see a few packets show up. Select one, choose Analyze from the menu, then "Follow TCP stream". That'll bring up a new window with all of the data in that transfer session.

If you don't get any packets displayed, either the display filter isn't quite right, or the data isn't coming back to your station.

Here's something else to check. Right click any graphic element (an avatar is good,) and pick View Image Info. Is the "Block Images from naxja.org" checked or unchecked?
 
Re: Important

Ill do the wireshark.
Blocked images was unchecked.
Noticed this too:
1x1pix
7956377048_1f3d7529b1_z.jpg
 
Re: Important

I've got no image blocking or anything setup in Opera. It's just as Opera installed it.

my IE9 doesn't even get used, so it's all defaults as well.

I'll dig into it some this weekend when I have the time, and I'm back on a machine with a proper operating system.
 
Re: Important

Ill do the wireshark.
Blocked images was unchecked.
Noticed this too:
1x1pix

That's bloomin' goofy. I get a 600x450 image out of that. Something is rewriting the image data on the way through.

I've also decided that I do *NOT* like the latest Windoze version of Wireshark. Capture filtering is turning into a PITA.
 
Re: Important

Now that I've got capture filtering figured out......

The images are being returned with an inline MIME type of image/jpeg. I'd *REALLY* like to see what's rewriting the packets.
 
Re: Important

Wireshark is a very highly useful tool, but it's not simple to use. It also makes security types more nervous than a cat in a dog show.
 
Re: Important

That looks like a display filter.

There's 2 major filter sections in wireshark, capture and display. In a lot of cases, capturing all of the traffic on an interface will kill a machine in pretty short order. The display filters are good for fine analysis of that captured traffic. Unfortunately, the syntax is different for capture and display filters.

I doubt anything on a home system would stress a full capture, though.
 
Re: Important

I couldnt get the capture filter to work so I used the display filter...
Still dont really know what Im looking at. lol

From what I can tell I have it narrowed down to 11 packets to do with the image...
 
Last edited:
Re: Important

Try using "(ip.src == 67.228.170.170 or ip.dst == 67.228.170.170) and image-jfif.marker" to display only the packets that contain the start of an inline JPEG.

Edit: You can select the packets, and run Analyze/Follow TCP Stream to see the entire HTTP conversation for that image.
 
Re: Important

286 13:38:11.495562000 67.228.170.170-static.reverse.softlayer.com 192.168.0.3 HTTP 1514 HTTP/1.1 200 OK (JPEG JFIF image)
 
Re: Important

286 13:38:11.495562000 67.228.170.170-static.reverse.softlayer.com 192.168.0.3 HTTP 1514 HTTP/1.1 200 OK (JPEG JFIF image)
You'll actually need to follow the TCP stream, find the right packets for the image that's not displaying, and look at the JPEG data to figure out if it's getting rewritten before it gets to your computer, or after.
 
Re: Important

K... When I use this filter "(ip.src == 67.228.170.170 or ip.dst == 67.228.170.170) and image-jfif.marker"
I get one packet.

Right click on the packet and follow stream.
"Stream Content" shows this:
GET /forum/customavatars/avatar12_9.gif HTTP/1.1

Host: naxja.org

User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:15.0) Gecko/20100101 Firefox/15.0.1

Accept: image/png,image/*;q=0.8,*/*;q=0.5

Accept-Language: en-us,en;q=0.5

Accept-Encoding: gzip, deflate

DNT: 1

Connection: keep-alive

Cookie: bbsessionhash=

Pragma: no-cache

Cache-Control: no-cache



HTTP/1.1 200 OK

Date: Sat, 08 Sep 2012 18:54:59 GMT

Server: Apache/2.2.21 (Unix) mod_ssl/2.2.21 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 PHP/5.2.9

Last-Modified: Fri, 25 May 2012 05:18:06 GMT

ETag: "418295-ac7-4c0d57e471f80"

Accept-Ranges: bytes

Content-Length: 2759

Keep-Alive: timeout=5, max=100

Connection: Keep-Alive

Content-Type: image/gif
That looks like an avatar to me... Does that mean im not even receiving Dans image in the first place?

Edit: naxja.org/forum/customavatars/avatar12_9.gif is Dans avatar...
 
Re: Important

That's an avatar URL. Replace the display filter with the one I suggested, and pick another packet, then follow that TCP stream. Somewhere in there, as long as you're fully refreshed the browser display with Dan's pic during the capture, you'll get an inline image. Yeah, I know, it can be a needle in a haystack, but considering that you've found it as a 1x1 image, it's gotta be in there someplace. The binary data for the image will tell you if it's a 1x1 or a 600x450 image.
 
Back
Top