PDA

View Full Version : What does this code mean in my ftp log?


D007
06-14-2009, 04:37 PM
I found this code in my ftp log. I don't know where or who it is coming from the ip address isn't mine. What does this code mean or what is it doing?

2X.1XX.3X.XX2 - - [13/Jun/2009:23:48:30 -0500] "GET /XXXXXXXXXXXXXXXX.html HTTP/1.1" 200 4389 "http://googleads.g.doubleclick.net/pagead/ads?client=ca-pub-2500009277743076&dt=1200051258625&lmt=1244951271&prev_fmts=160x90_0ads_al&format=fp_al_lp&output=html&correlator=12000051258370&url=http%3A%2F%2FXXXXXXXXXXX.com%2Fcategory%2F1%2F8&ea=0&ref=http%3A%2F%2FXXXXXXXXXX.com%2Fbrand-ds-8-sauces-food-c5&frm=0&ga_vid=1910744000.1240950000&ga_sid=1240950000&ga_hid=669003206&ga_fc=true&flash=10.0.12.36&w=160&h=90&u_h=800&u_w=1280&u_ah=770&u_aw=1280&u_cd=32&u_tz=-240&u_his=22&u_java=true&dtd=181&kw_type=radlink&rt=ChBKLLLyAAfnmQqyygjF-FzfEgxTYW1wbLLgVm9jYWwaDDxF8EOygx4UIJDf0WDRKAE4AkiQ39WDFlITCK650vfsiJsCFQhvsnfhxCAjfQ&hl=en&kw0=Widget+Sauce+Recipes&kw1=Widget+Sauces&kw2=Sample+recipes&kw3=Product+Sauces&okw=Widget+Sauce+Recipes&random=1244951269342&kw=Recipe Sauces" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MSN OptimizedIE8;ENUS)"


2X.XX4.3X.1X2 - - [13/Jun/2009:23:48:31 -0500] "GET /XXXXXXXXXXX.gif HTTP/1.1" 200 27401 "http://www.XXXXXXXXXX.com/XXXXXXXXXX.html" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Trident/4.0; GTB6; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MSN OptimizedIE8;ENUS)"

Thanks!

schleppel
06-17-2009, 12:46 AM
FTP and not web server?

It is the access log, showing when URLs have been accessed. Each entry consists of
The clients IP address, eg. 2X.XX4.3X.1X2
The time and date of the request [13/Jun/2009:23:48:31 -0500]
The request method, eg. GET
The requested file, eg. /XXXXXXXXXXX.gif
The request protocol eg. HTTP/1.1
The response's HTTP status, eg. 200 OK
The size of the requested file/the data returned, eg. 27401
The referring page.
The user agent of the client/browser.