Ru-Board.club
← Вернуться в раздел «Тестирование»

» more test

Автор: Demetrio
Дата сообщения: 23.02.2005 22:39
[more=Rules]
<!--#Moderation mode-->

################ Start of IPFW rules file ###############################
# Flush out the list before we begin.
ipfw -q -f flush

# Set rules command prefix
cmd="ipfw -q add"
pif="rl0"
pnet=`ifconfig rl0 |grep "inet " |awk '{print $6}'`
pip=`ifconfig rl0 |grep "inet " |awk '{print $2}'`

#################################################################
# No restrictions on Inside Lan Interface for private network
# Not needed unless you have Lan.
#################################################################
#$cmd 00005 allow all from any to any via rl0

#################################################################
# No restrictions on Loopback Interface
#################################################################
$cmd 00010 allow all from any to any via lo0

#################################################################
# Allow the packet through if it has previous been added to the
# the "dynamic" rules table by a allow keep-state statement.
#################################################################
$cmd 00015 check-state

#################################################################
# Interface facing Public Internet (Outbound Section)
# Interrogate session start requests originating from behind the
# firewall on the private network or from this gateway server
# destine for the public Internet.
#################################################################

# Allow out access to my ISP's Domain name server.
$cmd 00110 allow tcp from any to 212.7.9.34 53 out via $pif setup keep-state
$cmd 00111 allow udp from any to 212.7.9.34 53 out via $pif keep-state
$cmd 00112 allow tcp from any to 212.7.0.1 53 out via $pif setup keep-state
$cmd 00113 allow udp from any to 212.7.0.1 53 out via $pif keep-state

# Allow out access to my ISP's DHCP server for cable/DSL configurations.
#$cmd 00120 allow log udp from any to any 67 out via $pif keep-state
$cmd 00120 allow udp from any to 10.50.14.1 67-68 out via $pif keep-state
$cmd 00121 allow udp from 10.50.14.1 to any 67-68 in via $pif keep-state
$cmd 00122 allow udp from any to 212.7.9.82 67-68 out via $pif keep-state
$cmd 00123 allow udp from 212.7.9.82 to any 67-68 in via $pif keep-state

# Allow traffic in from ISP's DHCP server.
$cmd 00124 allow udp from any to 212.7.9.82 67-68 in via $pif keep-state
$cmd 00125 allow udp from any to 10.50.14.1 67-68 in via $pif keep-state

# Allow established TCP connections
$cmd 00205 allow tcp from any to any via $pif established

# Allow out non-secure standard www function
$cmd 00210 allow tcp from any to any 80 out via $pif setup keep-state

# Allow out secure www function https over TLS SSL
$cmd 00211 allow tcp from any to any 443 out via $pif setup keep-state

# Allow Infonet proxy
$cmd 00220 allow tcp from any to 212.7.9.42 8080 out via $pif setup keep-state
$cmd 00221 allow tcp from any to 212.7.9.46 8080 out via $pif setup keep-state
$cmd 00222 allow tcp from any to 212.7.9.35 8080 out via $pif setup keep-state
$cmd 00223 allow tcp from any to 212.7.9.36 8080 out via $pif setup keep-state

# Allow out send & get email function
$cmd 00230 allow tcp from any to any 25 out via $pif setup keep-state
$cmd 00231 allow tcp from any to any 110 out via $pif setup keep-state

# Allow out FBSD (make install & CVSUP) functions
# Basically give user root "GOD" privileges.
$cmd 00240 allow tcp from me to any out via $pif setup keep-state uid root

# Allow ping, traceroute and some other ICMP types
$cmd 00250 allow icmp from any to any icmptypes 8 out via $pif keep-state
$cmd 00251 allow icmp from any to any icmptypes 0,3,4,11,12 via $pif keep-state
$cmd 00252 allow udp from any to any 33434-33524 out xmit $pif keep-state
$cmd 00253 allow log icmp from 212.7.9.82 to any icmptypes 8 in via $pif keep-state
$cmd 00254 allow log icmp from 212.7.5.250 to any icmptypes 8 in via $pif keep-state
$cmd 00255 allow log icmp from 212.7.5.251 to any icmptypes 8 in via $pif keep-state
$cmd 00256 allow log icmp from 212.7.0.1 to any icmptypes 8 in via $pif keep-state
$cmd 00257 allow log icmp from 212.7.9.194 to any icmptypes 8 in via $pif keep-state

# Allow out Time
$cmd 00260 allow tcp from any to any 37 out via $pif setup keep-state

# Allow out nntp news (i.e. news groups)
$cmd 00270 allow tcp from any to any 119 out via $pif setup keep-state

# Allow out secure FTP, Telnet, and SCP
# This function is using SSH (secure shell)
# Also enable traditional telnet
$cmd 00280 allow tcp from any to any 22 out via $pif setup keep-state
$cmd 00281 allow tcp from any to any 23 out via $pif setup keep-state

# Allow passive FTP control channel 21 & data high ports
$cmd 00282 allow tcp from any to any 21 out via $pif setup keep-state
$cmd 00283 allow tcp from any to any 10000-65000 out via $pif setup keep-state

# Allow out whois
$cmd 00290 allow tcp from any to any 43 out via $pif setup keep-state

# Allow out whois++
$cmd 00291 allow tcp from any to any 63 out via $pif setup keep-state
$cmd 00292 allow udp from any to any 63 out via $pif keep-state

# Allow out IRC
$cmd 00293 allow tcp from any to any 194 out via $pif setup keep-state
$cmd 00294 allow udp from any to any 194 out via $pif keep-state

# Allow out finger
$cmd 00295 allow tcp from any to any 79 out via $pif setup keep-state
$cmd 00296 allow udp from any to any 79 out via $pif keep-state

# deny and log everything else that.s trying to get out.
# This rule enforces the block all by default logic.
#$cmd 00299 deny log all from any to any out via $pif

#################################################################
# Interface facing Public Internet (Inbound Section)
# Interrogate packets originating from the public Internet
# destine for this gateway server or the private network.
#################################################################

# Deny public pings
$cmd 00310 deny log icmp from any to any in via $pif

# Deny ident
$cmd 00315 deny tcp from any to any 113 in via $pif

# BANNED subnets (00320-00339)
#$cmd 00320 deny all from {banned} to any in via $pif

# Deny all Netbios service. 137=name, 138=datagram, 139=session
# Netbios is MS/Windows sharing services.
# Block MS/Windows hosts2 name server requests 81
$cmd 00340 deny tcp from any to any 137-139 in via $pif
$cmd 00341 deny udp from any to any 137-139 in via $pif
$cmd 00342 deny tcp from any to any 81 in via $pif

# Deny any late arriving packets
$cmd 00350 deny all from any to any frag in via $pif

# Reject & Log all setup of tcp incoming connections from the outside
$cmd 00360 deny log tcp from any to any setup in via $pif

# Reject & Log all incoming connections from the outside
$cmd 00499 deny log all from any to any in via $pif

# Everything else is denied by default
# deny and log all packets that fell through to see what they are
$cmd 00999 deny log all from any to any
################ End of IPFW rules file ###############################

[/more]
Автор: Eric Lazzy
Дата сообщения: 23.02.2005 23:01
[more=a]а чё это было?[/more]
Автор: Broyler
Дата сообщения: 23.02.2005 23:13
[more=link_link]link[/more]

Добавлено:
[more=what?]http://forum.ru-board.com/topic.cgi?forum=2&topic=1170&start=0[/more]
Автор: Demetrio
Дата сообщения: 23.02.2005 23:21
Eric Lazzy
Правила для файрвола, резервная копия типа
Автор: Eric Lazzy
Дата сообщения: 23.02.2005 23:33
Автор: COMRAD
Дата сообщения: 24.02.2005 13:33
Тест [more=подробнее] что, интересно? [/more]
Автор: Maxer
Дата сообщения: 24.02.2005 13:54

Код: moderator
Автор: Broyler
Дата сообщения: 24.02.2005 22:05
[more=текст ссылки]nt47текст [/more]

Не получается
Автор: KADABRA
Дата сообщения: 24.02.2005 23:52
Бум-бум.
[more=-->]Бла-бла-бла[/more]
Автор: Broyler
Дата сообщения: 25.02.2005 00:12
[more=что-то не выходит это цветом выделить ]nt47текст [/more]
Автор: Eric Lazzy
Дата сообщения: 25.02.2005 11:13
[more=part1]1111111111111111111[/more]
попробуем 2 куска лепить
[more=part2]22222222222222222222[/more]
Автор: Broyler
Дата сообщения: 25.02.2005 18:58
[more=тут тут туууут]12345 54321 вапрквовкуровггг[/more]

[more=тут тут туууут]12345 54321 вапрквовкуровггг[/more]
Автор: Aleek
Дата сообщения: 25.02.2005 21:39
c ntcnbhjdfybtv e xntx'a kexit gjkexftncz



Добавлено:
клава глючит
Автор: SiaRain
Дата сообщения: 25.02.2005 22:45
или руки
Автор: Broyler
Дата сообщения: 25.02.2005 23:29
или моск
Автор: vladal
Дата сообщения: 26.02.2005 00:12
test
Автор: Andrey_Wlodimirovich
Дата сообщения: 09.04.2005 00:17
Так вот решил затестить форматироваине текста в теге morе (начал тестить - еще не закончил)>>>

[more=>>>Нажми здесь!<<<]


!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

[/more]





[size=5] [more=>>>Нажми здесь!<<<] [/size]


!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

[size=5] [/more] [/size]
Автор: neonsbeta
Дата сообщения: 09.04.2005 10:55
test
Автор: DjDevil2k
Дата сообщения: 10.04.2005 10:32
[more=Вот так] что интересно?[/more]
Автор: evle
Дата сообщения: 10.04.2005 17:51
[more=тут] jkljljljl [/more]
Автор: neonsbeta
Дата сообщения: 10.04.2005 18:16
там->[more=тут] jkljljljl [/more]
Автор: Oldster
Дата сообщения: 11.04.2005 00:32
проверка тега #

работает! круто!!!
Автор: Andrey_Wlodimirovich
Дата сообщения: 11.04.2005 01:07
Мегатестерам -->> Обратите внимание
Компьютерный форум Ru.Board » Специальные » Тестирование » FAQ по новому тегу [more]
Автор: vitaly1
Дата сообщения: 05.10.2005 00:51
а вот [more=так]так раз [more=так]и перетак[/more] и еще так[/more] получится?

Не получилось
Автор: l1720
Дата сообщения: 05.10.2005 14:01
[more]
н-да мрачновато[/more]
Автор: jCHex
Дата сообщения: 05.10.2005 17:42
[more= ]Лог к посту:
Прим.: начало обрезано до загрузки файла, кот. недогружен,
жирным выделены строки, относящиеся к загрузке этого файла

Код: 05.10.2005 15:09:54 ******ERROR
8/1
05.10.2005 15:09:54 ******ERROR
8/4

05.10.2005 15:09:54 # 740: Connection from local/127.0.0.1

05.10.2005 15:09:54 # 741: Connection from local/127.0.0.1

05.10.2005 15:09:54 # 741 >>> URL: http://oszone.net/user_img/050815103919/9.jpg
GET http://oszone.net/user_img/050815103919/9.jpg HTTP/1.0
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.0
Host: oszone.net
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
Accept-Language: ru,en;q=0.9
Accept-Charset: windows-1252, utf-8, utf-16, iso-8859-1;q=0.6, *;q=0.1
Accept-Encoding: deflate, gzip, x-gzip, identity, *;q=0
Referer: http://oszone.net/display.php?id=3307
Proxy-Connection: close



05.10.2005 15:09:54 # 740 >>> URL: http://oszone.net/user_img/050815103919/4.jpg
GET http://oszone.net/user_img/050815103919/4.jpg HTTP/1.0
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.0
Host: oszone.net
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
Accept-Language: ru,en;q=0.9
Accept-Charset: windows-1252, utf-8, utf-16, iso-8859-1;q=0.6, *;q=0.1
Accept-Encoding: deflate, gzip, x-gzip, identity, *;q=0
Referer: http://oszone.net/display.php?id=3307
Proxy-Connection: close


05.10.2005 15:09:54 ******ERROR
8/6

05.10.2005 15:09:54 # 742: Connection from local/127.0.0.1

05.10.2005 15:09:54 # 742 >>> URL: http://oszone.net/user_img/050815103919/3.jpg
GET http://oszone.net/user_img/050815103919/3.jpg HTTP/1.0
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.0
Host: oszone.net
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
Accept-Language: ru,en;q=0.9
Accept-Charset: windows-1252, utf-8, utf-16, iso-8859-1;q=0.6, *;q=0.1
Accept-Encoding: deflate, gzip, x-gzip, identity, *;q=0
Referer: http://oszone.net/display.php?id=3307
Proxy-Connection: close


05.10.2005 15:09:54 ******ERROR
8/7

05.10.2005 15:09:54 # 736: Outbound Connection

05.10.2005 15:09:55 ******ERROR
8/7

05.10.2005 15:09:55 # 737: Outbound Connection

05.10.2005 15:09:55 # 738: Outbound Connection

05.10.2005 15:09:55 ******ERROR
8/7

05.10.2005 15:09:55 # 739: Outbound Connection

05.10.2005 15:09:55 ******ERROR
8/7

05.10.2005 15:09:55 # 741: Outbound Connection

05.10.2005 15:09:55 # 740: Outbound Connection

05.10.2005 15:09:56 ******ERROR
8/7

05.10.2005 15:09:56 ******ERROR
8/7

05.10.2005 15:09:56 # 742: Outbound Connection

05.10.2005 15:09:57 ******ERROR
8/7

05.10.2005 15:09:57 # 736 <<< URL: http://oszone.net/user_img/050815103919/1.jpg
HTTP/1.1 200 OK
Date: Wed, 05 Oct 2005 11:09:55 GMT
Server: Apache/2.0.52 (Unix) PHP/4.3.9
Last-Modified: Mon, 15 Aug 2005 15:39:19 GMT
ETag: "1b8315-5450-aaaed7c0"
Accept-Ranges: bytes
Content-Length: 21584
Connection: close
Content-Type: image/jpeg


05.10.2005 15:09:58 # 737 <<< URL: http://oszone.net/user_img/050815103919/5.jpg
HTTP/1.1 200 OK
Date: Wed, 05 Oct 2005 11:09:56 GMT
Server: Apache/2.0.52 (Unix) PHP/4.3.9
Last-Modified: Mon, 15 Aug 2005 15:39:19 GMT
ETag: "1b8319-4785-aaaed7c0"
Accept-Ranges: bytes
Content-Length: 18309
Connection: close
Content-Type: image/jpeg


05.10.2005 15:09:59 ******ERROR
8/7

05.10.2005 15:09:59 # 738 <<< URL: http://oszone.net/user_img/050815103919/6-1.jpg
HTTP/1.1 200 OK
Date: Wed, 05 Oct 2005 11:09:56 GMT
Server: Apache/2.0.52 (Unix) PHP/4.3.9
Last-Modified: Mon, 15 Aug 2005 15:39:19 GMT
ETag: "1b831a-4194-aaaed7c0"
Accept-Ranges: bytes
Content-Length: 16788
Connection: close
Content-Type: image/jpeg


05.10.2005 15:10:00 # 739 <<< URL: http://oszone.net/user_img/050815103919/2.jpg
HTTP/1.1 200 OK
Date: Wed, 05 Oct 2005 11:09:56 GMT
Server: Apache/2.0.52 (Unix) PHP/4.3.9
Last-Modified: Mon, 15 Aug 2005 15:39:19 GMT
ETag: "1b8316-5e71-aaaed7c0"
Accept-Ranges: bytes
Content-Length: 24177
Connection: close
Content-Type: image/jpeg


05.10.2005 15:10:00 ******ERROR
8/7

05.10.2005 15:10:01 # 741 <<< URL: http://oszone.net/user_img/050815103919/9.jpg
HTTP/1.1 200 OK
Date: Wed, 05 Oct 2005 11:09:56 GMT
Server: Apache/2.0.52 (Unix) PHP/4.3.9
Last-Modified: Mon, 15 Aug 2005 15:39:19 GMT
ETag: "1b831b-69ed-aaaed7c0"
Accept-Ranges: bytes
Content-Length: 27117
Connection: close
Content-Type: image/jpeg


05.10.2005 15:10:02 ******ERROR
8/7

05.10.2005 15:10:02 ******ERROR
8/7

05.10.2005 15:10:02 # 735: Outbound Disconnection

05.10.2005 15:10:02 # 735: Client Disconnection

05.10.2005 15:10:02 ******ERROR
8/7

05.10.2005 15:10:02 # 743: Connection from local/127.0.0.1

05.10.2005 15:10:02 # 743 >>> URL: http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-6017219146490129&dt=1128510595472&hl=ru&alternate_ad_url=http%3A%2F%2Fwww.oszone.net%2Fgoogle_adsense_script.html&format=120x600_as&output=html&url=http%3A%2F%2Foszone.net%2Fdisplay.php%3Fid%3D3307&color_bg=F8F8F8&color_text=000000&color_link=0033FF&color_url=0033FF&color_border=7AA0DC&ad_type=text_image&ref=http%3A%2F%2Foszone.net%2Fdisplay.php%3Fid%3D10&cc=37&u_h=1024&u_w=1280&u_ah=992&u_aw=1280&u_cd=32&u_tz=240&u_nplug=4&u_nmime=159
GET http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-6017219146490129&dt=1128510595472&hl=ru&alternate_ad_url=http%3A%2F%2Fwww.oszone.net%2Fgoogle_adsense_script.html&format=120x600_as&output=html&url=http%3A%2F%2Foszone.net%2Fdisplay.php%3Fid%3D3307&color_bg=F8F8F8&color_text=000000&color_link=0033FF&color_url=0033FF&color_border=7AA0DC&ad_type=text_image&ref=http%3A%2F%2Foszone.net%2Fdisplay.php%3Fid%3D10&cc=37&u_h=1024&u_w=1280&u_ah=992&u_aw=1280&u_cd=32&u_tz=240&u_nplug=4&u_nmime=159 HTTP/1.0
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.0
Host: pagead2.googlesyndication.com
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
Accept-Language: ru,en;q=0.9
Accept-Charset: windows-1252, utf-8, utf-16, iso-8859-1;q=0.6, *;q=0.1
Accept-Encoding: deflate, gzip, x-gzip, identity, *;q=0
Referer: http://oszone.net/display.php?id=3307
Proxy-Connection: close


05.10.2005 15:10:02 # 740 <<< URL: http://oszone.net/user_img/050815103919/4.jpg
HTTP/1.1 200 OK
Date: Wed, 05 Oct 2005 11:09:57 GMT
Server: Apache/2.0.52 (Unix) PHP/4.3.9
Last-Modified: Mon, 15 Aug 2005 15:39:19 GMT
ETag: "1b8318-5a9f-aaaed7c0"
Accept-Ranges: bytes
Content-Length: 23199
Connection: close
Content-Type: image/jpeg


05.10.2005 15:10:03 # 742 <<< URL: http://oszone.net/user_img/050815103919/3.jpg
HTTP/1.1 200 OK
Date: Wed, 05 Oct 2005 11:09:57 GMT
Server: Apache/2.0.52 (Unix) PHP/4.3.9
Last-Modified: Mon, 15 Aug 2005 15:39:19 GMT
ETag: "1b8317-3460-aaaed7c0"
Accept-Ranges: bytes
Content-Length: 13408
Connection: close
Content-Type: image/jpeg


05.10.2005 15:10:13 # 743: Outbound Connection

05.10.2005 15:10:28 # 743 <<< URL: http://pagead2.googlesyndication.com/pagead/ads?client=ca-pub-6017219146490129&dt=1128510595472&hl=ru&alternate_ad_url=http%3A%2F%2Fwww.oszone.net%2Fgoogle_adsense_script.html&format=120x600_as&output=html&url=http%3A%2F%2Foszone.net%2Fdisplay.php%3Fid%3D3307&color_bg=F8F8F8&color_text=000000&color_link=0033FF&color_url=0033FF&color_border=7AA0DC&ad_type=text_image&ref=http%3A%2F%2Foszone.net%2Fdisplay.php%3Fid%3D10&cc=37&u_h=1024&u_w=1280&u_ah=992&u_aw=1280&u_cd=32&u_tz=240&u_nplug=4&u_nmime=159
HTTP/1.0 302 Found
P3P: policyref="http://www.googleadservices.com/pagead/p3p.xml", CP="NOI DEV PSA PSD IVA PVD OTP OUR OTR IND OTC"
Location: http://oszone.net/google_adsense_script.html
Content-Type: text/html; charset=windows-1251
Server: CAFE/1.0
Content-Length: 0
Date: Wed, 05 Oct 2005 11:10:16 GMT
Connection: Keep-Alive


05.10.2005 15:10:28 # 743: Outbound Disconnection

05.10.2005 15:10:28 # 743: Client Disconnection

05.10.2005 15:10:29 # 744: Connection from local/127.0.0.1

05.10.2005 15:10:29 # 744 >>> URL: http://partner.km.ru/work.asp?s=0&idb={356D949E-2B86-4814-AD39-766009925694}&ids={D0A2017D-756F-40A1-9614-F4A45EF7B5D4}
GET http://partner.km.ru/work.asp?s=0&idb={356D949E-2B86-4814-AD39-766009925694}&ids={D0A2017D-756F-40A1-9614-F4A45EF7B5D4} HTTP/1.0
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.0
Host: partner.km.ru
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
Accept-Language: ru,en;q=0.9
Accept-Charset: windows-1252, utf-8, utf-16, iso-8859-1;q=0.6, *;q=0.1
Accept-Encoding: deflate, gzip, x-gzip, identity, *;q=0
Referer: http://oszone.net/display.php?id=3307
Cookie: ASPSESSIONIDQSRDBQCA=PCILGPMBNHDAAHDBINGPJLII; ASPSESSIONIDQQTAAQDA=FHPKOCNBIOLOPFFEBLFAAONM; ASPSESSIONIDQQRCDSAA=IFGIHGNBEAABBMMFBFKDCKDI; Cook%5Fok=1; ASPSESSIONIDSSQBARCB=ECMKPJNBINNOPFFFNOOLBBPI
Cookie2: $Version=1
Pragma: no-cache
Cache-Control: no-cache
Proxy-Connection: close


05.10.2005 15:10:33 # 736: Outbound Disconnection

05.10.2005 15:10:33 # 736: Client Disconnection

05.10.2005 15:10:33 # 745: Connection from local/127.0.0.1

05.10.2005 15:10:33 # 745 >>> URL: http://ad.adriver.ru/cgi-bin/erle.cgi?sid=53299&target=top&bt=16&pz=0&rnd=81605399
GET http://ad.adriver.ru/cgi-bin/erle.cgi?sid=53299&target=top&bt=16&pz=0&rnd=81605399 HTTP/1.0
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.0
Host: ad.adriver.ru
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
Accept-Language: ru,en;q=0.9
Accept-Charset: windows-1252, utf-8, utf-16, iso-8859-1;q=0.6, *;q=0.1
Accept-Encoding: deflate, gzip, x-gzip, identity, *;q=0
Referer: http://oszone.net/display.php?id=3307
Cookie: uid=279753688; uid=279753688
Cookie2: $Version=1
Proxy-Connection: close


05.10.2005 15:10:39 # 738: Outbound Disconnection

05.10.2005 15:10:39 # 738: Client Disconnection

05.10.2005 15:10:39 # 746: Connection from local/127.0.0.1

05.10.2005 15:10:39 # 746 >>> URL: http://oszone.net/google_adsense_script.html
GET http://oszone.net/google_adsense_script.html HTTP/1.0
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.0
If-Modified-Since: Mon, 25 Apr 2005 15:06:32 GMT
Host: oszone.net
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
Accept-Language: ru,en;q=0.9
Accept-Charset: windows-1252, utf-8, utf-16, iso-8859-1;q=0.6, *;q=0.1
Accept-Encoding: deflate, gzip, x-gzip, identity, *;q=0
Referer: http://oszone.net/display.php?id=3307
Proxy-Connection: close


05.10.2005 15:10:42 # 744: Outbound Connection

05.10.2005 15:10:47 # 745: Outbound Connection

05.10.2005 15:10:47 # 737: Outbound Disconnection

05.10.2005 15:10:47 # 737: Client Disconnection

05.10.2005 15:10:47 # 746: Outbound Connection

05.10.2005 15:10:49 # 744 <<< URL: http://partner.km.ru/work.asp?s=0&idb={356D949E-2B86-4814-AD39-766009925694}&ids={D0A2017D-756F-40A1-9614-F4A45EF7B5D4}
HTTP/1.1 302 Object moved
Connection: close
Date: Wed, 05 Oct 2005 11:10:45 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Location: http://partner.km.ru/banner/kat_468x60_two.gif
Content-Length: 167
Content-Type: text/html
Set-Cookie: Cook%5Fok=1; path=/
Cache-control: private


05.10.2005 15:10:49 # 744: Outbound Disconnection

05.10.2005 15:10:49 # 744: Client Disconnection

05.10.2005 15:10:53 # 742: Outbound Disconnection

05.10.2005 15:10:53 # 742: Client Disconnection

05.10.2005 15:10:53 # 745 <<< URL: http://ad.adriver.ru/cgi-bin/erle.cgi?sid=53299&target=top&bt=16&pz=0&rnd=81605399
HTTP/1.0 200 OK
Content-length:2
Content-type:application/x-javascript
Connection:close
Pragma:no-cache


05.10.2005 15:10:53 # 745: Outbound Disconnection

05.10.2005 15:10:53 # 745: Client Disconnection

05.10.2005 15:10:53 # 748: Connection from local/127.0.0.1

05.10.2005 15:10:53 # 749: Connection from local/127.0.0.1

05.10.2005 15:10:53 # 746 <<< URL: http://oszone.net/google_adsense_script.html
HTTP/1.1 200 OK
Date: Wed, 05 Oct 2005 11:10:48 GMT
Server: Apache/2.0.52 (Unix) PHP/4.3.9
Content-Length: 475
Content-Type: text/html; charset=iso-8859-1
Connection: close
ETag: "2282bd-1db-2736ce00"


05.10.2005 15:10:53 # 748 >>> URL: http://dc.c2.b1.a0.top.list.ru/counter?id=76804;t=57;js=13;r=http%3A//oszone.net/display.php%3Fid%3D10;j=false;s=1280*1024;d=32;rand=0.732663678470999
GET http://dc.c2.b1.a0.top.list.ru/counter?id=76804;t=57;js=13;r=http%3A//oszone.net/display.php%3Fid%3D10;j=false;s=1280*1024;d=32;rand=0.732663678470999 HTTP/1.0
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.0
Host: dc.c2.b1.a0.top.list.ru
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
Accept-Language: ru,en;q=0.9
Accept-Charset: windows-1252, utf-8, utf-16, iso-8859-1;q=0.6, *;q=0.1
Accept-Encoding: deflate, gzip, x-gzip, identity, *;q=0
Referer: http://oszone.net/display.php?id=3307
Cookie: VID=1X3fuA0TygmD
Cookie2: $Version=1
Proxy-Connection: close


05.10.2005 15:10:54 # 749 >>> URL: http://counter.yadro.ru/hit?t20.6;rhttp%3A//oszone.net/display.php%3Fid%3D10;s1280*1024*32;0.7394354215357453
GET http://counter.yadro.ru/hit?t20.6;rhttp%3A//oszone.net/display.php%3Fid%3D10;s1280*1024*32;0.7394354215357453 HTTP/1.0
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.0
Host: counter.yadro.ru
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
Accept-Language: ru,en;q=0.9
Accept-Charset: windows-1252, utf-8, utf-16, iso-8859-1;q=0.6, *;q=0.1
Accept-Encoding: deflate, gzip, x-gzip, identity, *;q=0
Referer: http://oszone.net/display.php?id=3307
Cookie: VID=10v0tx3kYGWD
Cookie2: $Version=1
Proxy-Connection: close


05.10.2005 15:10:54 # 746: Outbound Disconnection

05.10.2005 15:10:54 # 746: Client Disconnection

05.10.2005 15:10:54 # 750: Connection from local/127.0.0.1

05.10.2005 15:10:54 # 751: Connection from local/127.0.0.1

05.10.2005 15:10:54 # 751 >>> URL: http://counting.kmindex.ru/1.gif?uid=57700&r=http%3A//oszone.net/display.php%3Fid%3D10&0.7000074868556112
GET http://counting.kmindex.ru/1.gif?uid=57700&r=http%3A//oszone.net/display.php%3Fid%3D10&0.7000074868556112 HTTP/1.0
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.0
Host: counting.kmindex.ru
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
Accept-Language: ru,en;q=0.9
Accept-Charset: windows-1252, utf-8, utf-16, iso-8859-1;q=0.6, *;q=0.1
Accept-Encoding: deflate, gzip, x-gzip, identity, *;q=0
Referer: http://oszone.net/display.php?id=3307
Cookie: U=-2147483648
Cookie2: $Version=1
Proxy-Connection: close


05.10.2005 15:10:54 # 750 >>> URL: http://counter.rambler.ru/top100.cnt?286812
GET http://counter.rambler.ru/top100.cnt?286812 HTTP/1.0
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.0
Host: counter.rambler.ru
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
Accept-Language: ru,en;q=0.9
Accept-Charset: windows-1252, utf-8, utf-16, iso-8859-1;q=0.6, *;q=0.1
Accept-Encoding: deflate, gzip, x-gzip, identity, *;q=0
Referer: http://oszone.net/display.php?id=3307
If-Modified-Since: Wed, 05 Oct 2005 11:09:36 GMT
Cookie: ruid=B8X7BXIr+EKwFgAAAclNc9Cqv
Cookie2: $Version=1
Proxy-Connection: close


05.10.2005 15:10:54 # 752: Connection from local/127.0.0.1

05.10.2005 15:10:54 # 752 >>> URL: http://pagead2.googlesyndication.com/pagead/google_adsense_script.js
GET http://pagead2.googlesyndication.com/pagead/google_adsense_script.js HTTP/1.0
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; ru) Opera 8.0
Host: pagead2.googlesyndication.com
Accept: text/html, application/xml;q=0.9, application/xhtml+xml, image/png, image/jpeg, image/gif, image/x-xbitmap, */*;q=0.1
Accept-Language: ru,en;q=0.9
Accept-Charset: windows-1252, utf-8, utf-16, iso-8859-1;q=0.6, *;q=0.1
Accept-Encoding: deflate, gzip, x-gzip, identity, *;q=0
Referer: http://oszone.net/google_adsense_script.html
Proxy-Connection: close


05.10.2005 15:10:54 # 752 <<< URL: http://pagead2.googlesyndication.com/pagead/google_adsense_script.js
HTTP/1.0 200 OK
Server: HandyCache
Content-Length: 216
Content-Type: text/javascript; charset=UTF-8
Content-Encoding: gzip
Proxy-Connection: close


05.10.2005 15:10:54 # 752: Client Disconnection

05.10.2005 15:10:54 # 739: Outbound Disconnection

05.10.2005 15:10:54 # 739: Client Disconnection

05.10.2005 15:10:55 # 741: Outbound Disconnection

05.10.2005 15:10:55 # 741: Client Disconnection

05.10.2005 15:10:55 # 740: Outbound Disconnection

05.10.2005 15:10:55 # 740: Client Disconnection

05.10.2005 15:10:55 # 748: Outbound Connection

05.10.2005 15:10:55 # 750: Outbound Connection

05.10.2005 15:10:55 # 749: Outbound Connection

05.10.2005 15:10:56 # 748 <<< URL: http://dc.c2.b1.a0.top.list.ru/counter?id=76804;t=57;js=13;r=http%3A//oszone.net/display.php%3Fid%3D10;j=false;s=1280*1024;d=32;rand=0.732663678470999
HTTP/1.0 200 OK
Server: 0W/1.2
Date: Wed, 05 Oct 2005 11:10:21 GMT
Content-Type: image/gif
Accept-Ranges: bytes
Content-Length: 598
Expires: Wed, 06 Jul 2005 20:00:00 GMT
Pragma: no-cache
Cache-control: no-cache


05.10.2005 15:10:56 # 748: Outbound Disconnection

05.10.2005 15:10:56 # 748: Client Disconnection

05.10.2005 15:10:56 # 750 <<< URL: http://counter.rambler.ru/top100.cnt?286812
HTTP/1.0 200 OK
Date: Wed, 05 Oct 2005 11:10:59 GMT
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Content-type: image/gif


05.10.2005 15:10:56 # 750: Outbound Disconnection

05.10.2005 15:10:56 # 750: Client Disconnection

05.10.2005 15:10:57 # 749 <<< URL: http://counter.yadro.ru/hit?t20.6;rhttp%3A//oszone.net/display.php%3Fid%3D10;s1280*1024*32;0.7394354215357453
HTTP/1.0 200 OK
Server: 0W/0.7m
Date: Wed, 05 Oct 2005 11:10:35 GMT
Content-Type: image/gif
Content-Length: 241
Expires: Thu, 05 Oct 2000 20:00:00 GMT
Pragma: no-cache
Cache-control: no-cache


05.10.2005 15:10:57 # 749: Outbound Disconnection

05.10.2005 15:10:57 # 749: Client Disconnection

05.10.2005 15:10:57 # 751: Outbound Connection

05.10.2005 15:10:57 # 751 <<< URL: http://counting.kmindex.ru/1.gif?uid=57700&r=http%3A//oszone.net/display.php%3Fid%3D10&0.7000074868556112
HTTP/1.1 200 OK
Content-Length: 481
Content-Type: image/gif
Connection: Close
Date: Wed, 05 Oct 2005 12:06:00 GMT
Expires: Wed, 17 Sep 1980 00:00:00 GMT
Pragma: no-cache
Server: KMiNDEX/08 Feb 2005


05.10.2005 15:10:57 # 751: Outbound Disconnection

05.10.2005 15:10:57 # 751: Client Disconnection

05.10.2005 15:10:59 # 747: Client Disconnection
Автор: pikvvik
Дата сообщения: 05.10.2005 20:08
[more= ][/more]
Автор: marcurio
Дата сообщения: 06.10.2005 07:20
тест
Автор: Ponimas
Дата сообщения: 07.10.2005 01:56
ntcn
Автор: mln141
Дата сообщения: 12.01.2006 16:09
<i>te</i>st

Страницы: 123

Предыдущая тема: Что творится с РУ-нетом???


Форум Ru-Board.club — поднят 15-09-2016 числа. Цель - сохранить наследие старого Ru-Board, истории становления российского интернета. Сделано для людей.