但是,经过测试,发现Oracle的ADMINISTRATOR GUIDE里面的描述是错误的,我查阅了一下METALINK,METALINK上的一篇文章虽然对这两个参数进行了比较详细的说明,但是仍然有一部分描述是错误。
PASSWORD_REUSE_TIME是重用密码的最小时间间隔,单位是天。可以给出整数或分数,如1/1440表示1分钟(出于效率的考虑,oracle不会每分钟都去进行检查,一般来说,有5分钟左右的误差,因此如果这个数小于1/144则没有多大的意义)。
PASSWORD_REUSE_MAX是重用密码前更换密码的最小次数。这两项本身没有任何异议,关键是两项如何配合使用。可以分为3种情况进行描述:
一、PASSWORD_REUSE_MAX和PASSWORD_REUSE_TIME都为UNLIMITED
这时密码可以任意重用,没有限制这也是DEFAULT profile的默认值。当这两项都为UNLIMITED时,认为这两个参数没有使用,因此,密码重用没有任何限制。
锟斤拷锟斤拷:SQL> create profile prof_test limit password_reuse_max unlimited
2password_reuse_time unlimited;
配置文件已创建
SQL> create user test identified by test profile prof_test;
用户已创建
SQL> alter user test identified by test;
用户已更改。
SQL> alter user test identified by test;
用户已更改。
二、PASSWORD_REUSE_MAX和PASSWORD_REUSE_TIME中有一个为UNLIMITED,另一个为其他值。
这个时候你的密码将永远无法重用。
看看administrator guide上是怎么说的:
锟斤拷锟斤拷:Use the CREATE PROFILE statement to specify a time interval during which users
cannot reuse a password. In the following statement, a profile is defined where
the PASSWORD_REUSE_TIME clause specifies that the user cannot reuse the
password
for 60 days.
CREATE PROFILE prof LIMIT
PASSWORD_REUSE_TIME 60
PASSWORD_REUSE_MAX UNLIMITED;
In the next statement, the PASSWORD_REUSE_MAX clause specifies that the number
of password changes the user must make before the current password can be used
again is three.
CREATE PROFILE prof LIMIT
PASSWORD_REUSE_MAX 3
PASSWORD_REUSE_TIME UNLIMITED;
Note: If you specify PASSWORD_REUSE_TIME or PASSWORD_REUSE_MAX, you must set
the other to UNLIMITED or not specify it at all.
文档告诉我们,只使用其中一个,把另外一个设置为UNLIMITED,但是这是不正确的,这样会导致你的密码永远无法重用。
锟斤拷锟斤拷:SQL> alter profile prof_test limit password_reuse_max 3;
配置文件已更改
SQL> select resource_name, limit from dba_profiles
2where profile = 'PROF_TEST' and resource_type = 'PASSWORD';
RESOURCE_NAMELIMIT
-------------------------------- ----------------------------------------
FAILED_LOGIN_ATTEMPTSDEFAULT
PASSWORD_LIFE_TIMEDEFAULT
PASSWORD_REUSE_TIMEUNLIMITED
PASSWORD_REUSE_MAX3
PASSWORD_VERIFY_FUNCTIONDEFAULT
PASSWORD_LOCK_TIMEDEFAULT
PASSWORD_GRACE_TIMEDEFAULT
已选择7行。
SQL> alter user test identified by test;
用户已更改。
SQL> alter user test identified by test;
alter user test identified by test
*
ERROR 位于第 1 行:
ORA-28007: 无法重新使用口令
SQL> alter user test identified by t1;
用户已更改。
SQL> alter user test identified by t2;
用户已更改。
SQL> alter user test identified by t3;
用户已更改。
SQL> alter user test identified by test;
alter user test identified by test
*
ERROR 位于第 1 行:
ORA-28007: 无法重新使用口令
修改profile后,只对test用户的后续操作有效,第一次可以修改密码为test是因为oracle没有记录初始密码,而第二次修改就会失败,因为密码已经不能重用了。
根据文档,我们只需要修改密码三次,就可以重用,但是测试的结果确是密码无法在重用。
锟斤拷锟斤拷:SQL> alter profile prof_test limit password_reuse_max unlimited;
配置文件已更改
SQL> alter user test identified by test;
用户已更改。
SQL> alter profile prof_test limit password_reuse_time 1/144;
配置文件已更改
SQL> select resource_name, limit from dba_profiles
2where profile = 'PROF_TEST' and resource_type = 'PASSWORD';
RESOURCE_NAMELIMIT
-------------------------------- ----------------------------------------
FAILED_LOGIN_ATTEMPTSDEFAULT
PASSWORD_LIFE_TIMEDEFAULT
PASSWORD_REUSE_TIME.0069
PASSWORD_REUSE_MAXUNLIMITED
PASSWORD_VERIFY_FUNCTIONDEFAULT
PASSWORD_LOCK_TIMEDEFAULT
PASSWORD_GRACE_TIMEDEFAULT
已选择7行。
SQL> set time on
16:47:29 SQL> alter user test identified by test;
alter user test identified by test
*
ERROR 位于第 1 行:
ORA-28007: 无法重新使用口令
16:47:48 SQL>
16:48:23 SQL>
16:59:45 SQL> alter user test identified by test;
alter user test identified by test
*
ERROR 位于第 1 行:
ORA-28007: 无法重新使用口令
16:59:59 SQL>
17:07:32 SQL> alter user test identified by test;
alter user test identified by test
*
ERROR 位于第 1 行:
ORA-28007: 无法重新使用口令
17:07:40 SQL> set time off
修改PASSWORD_REUSE_TIME为1/144,也就是说大概10分钟的时间,考虑的oracle的误差,我们在10分钟和20分钟后分别进行测试。结果发现密码仍然无法重用。
三、PASSWORD_REUSE_MAX和PASSWORD_REUSE_TIME都不为UNLIMITED。
这时只需满足任意一个条件就可以重用密码
Metalink上的文章在这里描述有误,密码重用不需要同时满足两个条件,只要满足一个既可。
锟斤拷锟斤拷:SQL> alter profile prof_test limit password_reuse_time unlimited;
配置文件已更改
SQL> alter user test identified by test;
用户已更改。
SQL> alter profile prof_test limit
2password_reuse_max 3 password_reuse_time 1/144;
配置文件已更改
SQL> set time on
17:11:30 SQL> alter user test identified by test;
用户已更改。
17:11:47 SQL> alter user test identified by test;
alter user test identified by test
*
ERROR 位于第 1 行:
ORA-28007: 无法重新使用口令
17:11:56 SQL> alter user test identified by t1;
用户已更改。
17:12:06 SQL> alter user test identified by t2;
用户已更改。
17:12:12 SQL> alter user test identified by t3;
用户已更改。
17:12:19 SQL> alter user test identified by test;
用户已更改。
17:12:50 SQL>
17:13:45 SQL> alter user test identified by test;
alter user test identified by test
*
ERROR 位于第 1 行:
ORA-28007: 无法重新使用口令
17:13:55 SQL>
17:14:00 SQL>
17:32:14 SQL> alter user test identified by test;
用户已更改。
第一次重用test密码才过了1分钟左右,而在第二次重用test密码之前并没有使用过其他密码。可见,只需满足PASSWORD_REUSE_MAX和PASSWORD_REUSE_TIME中的任意一个条件就可以。


172.132.98.* 于 2007-09-07 02:34:34发表:
262be24268e2ca9ca0e2db6a09813229 http://controllodeifumicaldaia.ipywer.org/autoradio-alpino-tda-7588rb/ http://creditore-nuova-legge-fallimentare.oxibnl.org/ http://testdingressoingegneriainformatica.npxbkv.org/elena-ferrante-fahrenheit/ http://fascismo-cento-lira-carta-moneta.odiioj.org/ http://racconto-bambino-castello-medievali.ufftiy.org/ http://filmatorealplayer.dlqpew.org/casa-cura-piacenza-it/ http://via-avogadro-sesto-fiorentino.ufftiy.org/ http://aperturanuovafarmacia.yufywt.org/superenalotto-regole/ http://villaggio-columbus.vozlau.org/ http://problemi-di-sicurezza.oxibnl.org/ ef5da0821261872f3a177fbd4ce2e9fc
72.226.65.* 于 2007-09-06 09:19:34发表:
36006fc242a4ec9bcaf0984d5e44077e http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://transatlantic.ipo.asu.edu/forum/viewtopic.php?t=208 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://www.rstm.edu/phpBB/viewtopic.php?t=1450 http://transatlantic.ipo.asu.edu/forum/viewtopic.php?t=208 http://www.rstm.edu/phpBB/viewtopic.php?t=1450 http://transatlantic.ipo.asu.edu/forum/viewtopic.php?t=208 d950163e2bc04fe30175aa17834ab13d
62.43.187.* 于 2007-09-05 20:25:59发表:
449fc9dcb4138221e7da965b6b1248e3 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 http://forum.jalc.edu/phpBB2/viewtopic.php?t=2267 http://myweb.msoe.edu/~chaversa/phpBB2/viewtopic.php?t=2012 db62d9d137e7999ef0c8bbd27991ea41
76.118.108.* 于 2007-09-05 06:10:55发表:
9b08373aca9486d9e5cb54a33ffa0a8a http://piace-molto-musica-piace-molto-dormire.dfmviz.info/ http://art-63-disp-att-cc.dfmviz.info/ http://scuola-arangio-ruiz.dfmviz.info/ http://vicenda-1-capitolo-promesso-sposo.dfmviz.info/ http://informazioni-elettorali.dfmviz.info/ http://grande-cazzo-com.dfmviz.info/ http://sanzione-registratore-cassa.dfmviz.info/ http://in-ogni-atomo.dfmviz.info/ http://testo-terry-e-maggie.dfmviz.info/ http://intercettazioni-prodi.dfmviz.info/ 21817dd0dbd87cb119a7471ab31fd121
128.46.89.* 于 2007-09-05 02:55:01发表:
http://emeraldring.fora.pl/
http://emeraldring.fora.pl/
http://emeraldring.fora.pl/ - emerald cut wedding ring
61.152.108.* 于 2007-09-05 02:54:57发表:
http://emeraldring.fora.pl/
http://emeraldring.fora.pl/
http://emeraldring.fora.pl/ - emerald cut wedding ring
68.180.195.* 于 2007-09-01 21:02:21发表:
Hi, nice very nice page..!
abb fund
fund raising cook book
abb fund
fund raising cook book - http://fund.freewebpages.org/alaska-permanent-fund-dividend/index.html
fund
Good luck !
PS: do you listen Linkin Park ?
207.44.238.* 于 2007-08-31 08:45:33发表:
Hi, nice very nice page..!
fund raising counselor organization
unique fund raising
abb fund
alaska permanent fund dividend
abb fund - http://fund.freewebpages.org/mutual-fund-company/index.html
Good luck !
PS: do you listen Linkin Park ?
213.3.4.* 于 2007-08-31 08:45:07发表:
Hi, nice very nice page..!
fund raising counselor organization
unique fund raising
abb fund
alaska permanent fund dividend
abb fund - http://fund.freewebpages.org/mutual-fund-company/index.html
Good luck !
PS: do you listen Linkin Park ?
68.180.195.* 于 2007-08-30 02:31:37发表:
Hi, nice very nice page..!
fund raising event
growth fund of america
sample fund raising letter - http://fund.freewebpages.org/child-defense-fund/index.html
hedge funds - http://fund.freewebpages.org/child-defense-fund/index.html
fund raising event
Good luck !
PS: do you listen Linkin Park ?
0.0.0.* 于 2007-08-30 02:31:36发表:
Hi, nice very nice page..!
fund raising event
growth fund of america
sample fund raising letter - http://fund.freewebpages.org/child-defense-fund/index.html
hedge funds - http://fund.freewebpages.org/child-defense-fund/index.html
fund raising event
Good luck !
PS: do you listen Linkin Park ?
81.170.101.* 于 2007-08-28 21:33:33发表:
Hi, nice very nice page..!
money market rate - http://www.volny.cz/moneymarket1/money-market-savings-account/
cnn money market stock
money market mutual funds
best money market rate
money market interest rate - http://www.volny.cz/marketaccount/money-market-account-rate/
Good luck !
PS: do you listen Linkin Park ?
211.154.104.* 于 2007-08-27 06:09:55发表:
Hi, nice very nice page..!
make money in stock market
money market funds
high yield money market account
money market mutual funds
money market mutual funds
Good luck !
PS: do you listen Linkin Park ?
0.0.0.* 于 2007-08-25 08:43:49发表:
Hi, nice very nice page..!
best money market rate
money market fund - http://www.volny.cz/moneyrate/money-banking-and-financial-market/
money market fund
make money in stock market
high yield money market account
Good luck !
PS: do you listen Linkin Park ?
221.232.159.* 于 2007-08-23 18:38:18发表:
Hi, nice very nice page..!
cnn money market stock - http://volny.cz/highestmoney/high-yield-money-market/
vanguard money market funds - http://www.volny.cz/moneymarket/money-market-fund
money market interest rate
money market mutual funds
make money in stock market - http://volny.cz/highestmoney/cnn-money-market-stock/
Good luck !
PS: do you listen Linkin Park ?
201.213.248.* 于 2007-08-16 00:12:28发表:
b4bf05283985c69ac5e84220ae077032 http://come-vengono-eletti.ddxsak.com/ http://giochi-online-gratis-adulti.zpvztz.com/ http://trucchi-lg-u8330.akrmtn.com/ http://lega-tumore-senese.flroxk.com/ http://dvd-vergine-economico-r.zpvztz.com/ http://agente-calciatore.flroxk.com/ http://donna-coppia-cercano-sesso.flroxk.com/ http://giochi-societa-store.ddxsak.com/ http://formulario-ricorso-separazione-giudiziale.akrmtn.com/ http://aspirazione-motore.ddxsak.com/ f79720dbd018955dfd9068d527cd2031
209.6.21.* 于 2007-08-14 06:35:12发表:
good work !
chandelier lamp shades
chandelier lamp shades
chandelier lamp shades - www.desklamp1.fora.pl
buy viagra online
buy viagra online
buy viagra online - www.buyviagraonlinex.fora.pl
.
norwegian pearl
norwegian pearl
norwegian pearl - http://volny.cz/norwegianpearl
blackberry pearl white
blackberry pearl white
blackberry pearl white - http://volny.cz/blackberrypearlwhite
pink pearls
pink pearls
pink pearls - http://volny.cz/pinkpearls
blackberry pearl review
blackberry pearl review
blackberry pearl review - http://volny.cz/blackberrypearlrev
pearl white
pearl white
pearl white - http://volny.cz/pearlwhite
good luck
193.111.198.* 于 2007-08-14 02:28:55发表:
good work !
chandelier lamp shades
chandelier lamp shades
chandelier lamp shades - www.desklamp1.fora.pl
buy viagra online
buy viagra online
buy viagra online - www.buyviagraonlinex.fora.pl
.
norwegian pearl
norwegian pearl
norwegian pearl - http://volny.cz/norwegianpearl
blackberry pearl white
blackberry pearl white
blackberry pearl white - http://volny.cz/blackberrypearlwhite
pink pearls
pink pearls
pink pearls - http://volny.cz/pinkpearls
blackberry pearl review
blackberry pearl review
blackberry pearl review - http://volny.cz/blackberrypearlrev
pearl white
pearl white
pearl white - http://volny.cz/pearlwhite
good luck
124.128.14.* 于 2007-08-12 20:16:11发表:
saltwater pearls
saltwater pearls
saltwater pearls - volny.cz/saltwaterpearls
freshwater pearl jewelry
freshwater pearl jewelry
freshwater pearl jewelry - volny.cz/freshwaterpearljew
cultured pearl jewelry
cultured pearl jewelry
cultured pearl jewelry - volny.cz/culturedpearljewelry
black pearl earring
black pearl earring
black pearl earring - volny.cz/blackpearlearring
pearl s buck
pearl s buck
pearl s buck - volny.cz/pearlsbuck
201.65.89.* 于 2007-08-09 02:17:43发表:
Hi, nice very nice page..!
ford dealer clearanceford dealer clearanceford dealer clearance - www.volny.cz/forddealer
blackberry buy pearl blackberry buy pearl blackberry buy pearl - http://volny.cz/blackberrybuypearl
gmc in chicago gmc in chicago gmc in chicago - www.volny.cz/gmcyokun/
lexus is250 review lexus is250 review lexus is250 review - www.volny.cz/lexus250/
356 porsche sale 356 porsche sale 356 porsche sale - www.volny.cz/porsche356
Good luck !
PS: do you listen Linkin Park ?
202.44.8.* 于 2007-08-07 05:03:22发表:
desk lamp
desk lamp - www.halogendesklamp.freehostia.com/desk-lamp/
lamp shades
lamp shades - www.halogendesklamp.freehostia.com/lamp-shades/
office desk lamp
office desk lamp - www.halogendesklamp.freehostia.com/office-desk-lamp/
217.141.105.* 于 2007-08-03 11:11:15发表:
thnx... nice site
and i wan't see my:
http://www.tablelamp.fora.pl/
http://www.tablelamp.fora.pl/
http://www.tablelamp.fora.pl/ - table lamp
59.95.181.* 于 2007-08-01 22:36:08发表:
art bondage http://cartoonfox.150m.com/art_bondage.html art bondage art bondage
comic book bondage http://cartoonfox.150m.com/comic_book_bondage.html comic book bondage comic book bondage
adult bondage comics http://cartoonfox.150m.com/adult_bondage_comics.html adult bondage comics adult bondage comics
male bondage art http://cartoonfox.150m.com/male_bondage_art.html male bondage art male bondage art
d bondage comics http://cartoonfox.150m.com/d_bondage_comics.html d bondage comics d bondage comics
221.128.181.* 于 2007-08-01 22:35:46发表:
art bondage http://cartoonfox.150m.com/art_bondage.html art bondage art bondage
comic book bondage http://cartoonfox.150m.com/comic_book_bondage.html comic book bondage comic book bondage
adult bondage comics http://cartoonfox.150m.com/adult_bondage_comics.html adult bondage comics adult bondage comics
male bondage art http://cartoonfox.150m.com/male_bondage_art.html male bondage art male bondage art
d bondage comics http://cartoonfox.150m.com/d_bondage_comics.html d bondage comics d bondage comics
217.150.245.* 于 2007-08-01 21:39:20发表:
diesel ford truck used
diesel ford truck used
diesel ford truck used - http://www.bcars.fora.pl/
car insurance quote
car insurance quote
car insurance quote - http://www.carinsurancequote.fora.pl/
202.56.7.* 于 2007-07-31 04:53:51发表:
gmc trucks here www.gmctruck.fora.pl
gmc from america www.gmctruck.fora.pl
real gmc www.gmctruck.fora.pl
and www.emeraldring.fora.pl rings
203.190.163.* 于 2007-07-30 08:57:21发表:
emerald rings and gold rings www.emeraldring.fora.pl
201.241.87.* 于 2007-07-26 01:19:50发表:
c856bb5b7614208e1c0af8342bfb7618 http://fumetti-cinesi.fmyrxs.biz/ http://beauty-farm-torino.ftgmns.biz/ http://masturbarsi-consiglio.fmyrxs.biz/ http://piatti-irlandesi.zqemjp.biz/ http://baggio-gioco.fmyrxs.biz/ http://negozi-duomo.cuxojo.biz/ http://cheratodermia-plantare.cuxojo.biz/ http://ul-grano.ftgmns.biz/ http://olio-tela-madonna-bambino.smtpld.biz/ http://poesie-di-pasqua-per-la-scuola.ftgmns.biz/ f0bd15bc4c04b02533089147dbde4c5b
210.207.36.* 于 2007-07-25 19:13:04发表:
c6bea1e8f503b7398515f29c9c7ae6e3 http://immagini-smackdown-vs-raw.gohktw.biz/ http://bocchino-gay-amatoriale.pzgvuv.biz/ http://vulcano-video.joyubb.biz/ http://scarica-mp3-ac-dc.ytxxxk.biz/ http://ministero-della-difesa-aeronautica.hdywtl.biz/ http://avvocato-dipendente.ggjrfj.biz/ http://ford-veicoli-commerciali.pzgvuv.biz/ http://sogni-da-interpretare.ggjrfj.biz/ http://san-marino-aziende.pzgvuv.biz/ http://sondaggio-abacus-elezioni-politiche.gohktw.biz/ bfdd7bec9230a10317341e982495b689
91.117.145.* 于 2007-07-24 17:51:02发表:
c50d6777bf63125afea0b034301f6282 http://chitarra-corso.kajgdw.biz/ http://arci-bolzaneto-genova.ppdpwx.biz/ http://unita-di-produzione.ppdpwx.biz/ http://bactrim-farmaco-medicinale.ppdpwx.biz/ http://gianni-pancaldi-ferrara.tzlnou.biz/ http://la-neve-il-cielo.ygvhik.biz/ http://spot-elettorali.ygvhik.biz/ http://industrie-chimiche-inquinanti.zibtye.biz/ http://impianti-sci-trentino.ppdpwx.biz/ http://chimica-formula-struttura.kajgdw.biz/ 69fae163d26a9b1682339a4eb6fc4ad9
77.237.145.* 于 2007-07-23 08:20:38发表:
00fb624b9cd37118d86366e975d2fbe7 http://vota-on-line.jnbwct.org/ http://esselunga-id-monza.pvaeyo.org/ http://maigret-sotto-inchiesta.cqhnnx.org/ http://messaggio-anonimo-tim.hdpwsk.org/ http://casa-vacanza-appartamento-costa-etrusco.jnbwct.org/ http://categoria-protette-assunzioni.cqhnnx.org/ http://sito-alternativo.jnbwct.org/ http://avvisi-di-garanzia.cqhnnx.org/ http://giochi-per-il-coputer.cqhnnx.org/ http://agenzia-x-modello.cqhnnx.org/ eb89aa2351bfb8dd061b0dc25061dcdb
211.206.9.* 于 2007-07-20 16:19:28发表:
25bc8af69ba4de647620ae3bec08121e http://televisoredvdsamsung.kprskz.org/breve-racconto-giallo-ragazzo/ http://fotosingapore.kprskz.org/natale-voglio-fare-dono-speciale/ azienda agrituristica ottaviani rocca cambio aquila sesso dolce http://avvocatocatania.kprskz.org/it-venditore-ram/ http://animalepreferito.cerfmd.org/escort-girls-lombardia/ http://algoritmoesercizio.kcqdnd.org/tabella-cibi/ http://appartamentoinaffittoparma.chohqh.org/gioiello-oro-orecchino-diamante/ incisione cd folto pelo b8fb7d84153cc5c69600cbe1497734b2
201.1.130.* 于 2007-07-17 18:54:32发表:
b71bb9f72c4273e24831985cad91e07e http://gratisperadulti.cdvduz.org/vb-net-programmazione-pda/ transiberiana costo biglietto http://cristianesimoturchia.eebsig.org/bruno-da-osimo/ sax baritoni software per la navigazione anatomia nervi cranici http://hostalneutralbarcellona.ppnxyq.org/giocare-vincere-nokia-6111/ http://grossistapietradure.lgyeas.org/preghiera-dei-fedeli-per-i-bambini/ http://anticorpiantihiv12.nxaqjj.org/preventivo-prestito-milano/ s fermo cassina de pecchi 8ea4fcdde1a965ef95e68187f350c6f6
201.29.218.* 于 2007-07-17 11:00:17发表:
http://2f7c289f5060c325e849c43b7755723e-t.xkktxb.org 2f7c289f5060c325e849c43b7755723e http://2f7c289f5060c325e849c43b7755723e-b1.xkktxb.org 2f7c289f5060c325e849c43b7755723e http://2f7c289f5060c325e849c43b7755723e-b3.xkktxb.org 8d1f2bfe3cbc5359328d95464cab8b7c
201.209.205.* 于 2007-07-16 10:02:55发表:
a45010f9d2c6af2ccaffde139f322567 http://auto-and-uso-speciale-and-bersani.xsixxz.biz/ http://casoli-chieti.knhtou.com/ http://origine-sella-terra.drncar.biz/ http://aspettativa-dipendenti.mxkrxs.com/ http://funzioni-cellulare.mxkrxs.com/ http://lago-corbara-scoop.knhtou.com/ http://testo-mi-piaci.ynpojb.biz/ http://ordine-medici-veterinari-roma.mxkrxs.com/ http://polini-motori.xmjviq.com/ http://oroscopo-toro.wdexfm.biz/ 8cff813cd5cdf93d908a9e43c4704dad
216.218.252.* 于 2007-07-16 05:44:55发表:
domination comics http://adultcomics8jul.tripod.com/domination_comics.html domination comics domination comics
cruel comics http://adultcomics8jul.tripod.com/cruel_comics.html cruel comics cruel comics
domination comics http://adultcomics8jul.tripod.com/domination_comics.html domination comics domination comics
violent comics http://adultcomics8jul.tripod.com/violent_comics.html violent comics violent comics
brutal comics http://adultcomics8jul.tripod.com/brutal_comics.html brutal comics brutal comics
217.125.254.* 于 2007-07-15 02:14:29发表:
97341d6fa70d24fd1a871fa853b35ca7 biblioteca universitaria padova http://clubsoftair.jlmwbv.org/impianto-trattamento-biologico-acqua/ cessione contratto leasing iva 20 indetraibile http://t29batteria.seklde.org/gli-anni-di-piombo/ pigmalione bargellini http://analisichimicacampionamentiacqua.vozulo.org/cristina-toscana-escort/ uomo sussurava cavallo immagine gratuita web http://conversionedicdinmp3gratis.eqacfr.org/stradario-carpi-modena/ http://hotelstelladresda.gapphu.org/costi-patente-moto/ a875aa102e91579b074fe29fa7a13e81
84.126.57.* 于 2007-07-13 19:01:11发表:
b4e840e198b36e06647b7c34f387b6bb http://controllo-costante-credito.wuzzme.org/ http://creazione-disco-di-avvio.iwfpha.org/ http://nuova-torre-gemella.wxamgv.org/ http://un-informazione.mpxxqr.org/ http://paesaggio-celtico.wuzzme.org/ http://vendita-casale-sabina.benlzg.org/ http://cinema-casalpusterlengo.njylwy.org/ http://discopub-dry-doc.iwfpha.org/ http://bizzotto-andrea-spa.iwfpha.org/ http://centro-assistenza-polaroid.gazdtl.org/ 8c2a5fabd273020cebfaea52010ee4bb
200.127.221.* 于 2007-07-12 12:17:53发表:
37ba3029516f9241c1979747a21d1d3b http://torri-a-bologna.rtistm.org/ http://italia-a-mano-armata.udzjxi.org/ http://2.qytpli.org/bbcom/articolo.phtml?f_id=94 http://giornale-annuncio-roma.qpjnvy.org/ http://piazza-rivista-ravenna.uwlbfm.org/ http://tesi-cesare-pavese.egcngx.org/ http://carattere-giapponese.xxfvsr.org/ http://italiana-assicurazione-spa.yorcfb.org/ http://noe-e-la-bibbia.gbymyg.org/ http://tvc-combi-divx.bmfcxx.org/ d8d97f68bc274489b372d34e17b3a169
220.70.45.* 于 2007-07-11 05:04:50发表:
87a4c25bcff1a58406d52467172fef7b http://14.ska4aj.com/pagina11.html http://8.ska4aj.com/pagina71.html http://23.skachaj.org/pagina03.html pagina48.html http://16.skachaj.org/pagina74.html pagina95.html pagina27.html pagina61.html http://9.ska4aj.org/pagina57.html pagina81.html 53f688e2d0ae01a48f96ad8f8181d4f6