Linux内核从2.4.18开始就不再导出系统调用表(sys_call_table),这对于我们想对系统调用做些手脚的朋友们来说,确实不是什么好消息。少了很多便利条件,如果说改内核源码,加上EXPORT_SYMBOL(sys_call_table),还是能够导出的,不过这个需要重新编译内核,最烦人就是重启(我们有些时候最怕的就是重启,至于为什么,大家心里明白,哈哈)。如果我们足够幸运,能找到/boot/System.map,通过简单的grep sys_call_table /boot/System.map也能如愿以偿,可是这个文件并不是所有的系统都有的。还好LKM给了我们访问内核空间的能力,可是系统这么大,从何下手呢?
反汇编系统调用相关代码:
(gdb) disas syscall_call
Dump of assembler code for function syscall_call:
0xc0102e0a
0xc0102e11
End of assembler dump.
(gdb) x/8x 0xc0102e0a
0xc0102e0a
0xc0102e1a
可以看到蓝色的部分就是需要找的标志字符串,与之紧挨的高地址部分就是我们要找的sys_call_table的地址。为了缩小查找范围,我们只要从int $0x80的入口函数向下顺序查找就行,其地址用命令sidt就能直接得到了。具体代码如下:
/*
* Copyright (c) 2006 xiaosuo <xiaosuo@gmail.com>
*
* Copyright (c) 2003 Dallachiesa Michele <xenionREMOVETHIS@antifork.org>
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification are permitted.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*
* DESCRIPTION
*
* redhat kernels don't export the sys_call_table symbol anymore.. this
* is a workaround that let you use your old LKMs without fix them.
*
* In fact, the kernel (>= 2.4.18) don't export the sys_call_table symbol
* anymore...
*
* USAGE
*
* Build this as a kernel module and loaded
*
* + greetz: (#phrack.it|antifork.org) guys
* + sys_call_table[] address lookup code from phrack 58 #0x07 by sd
*/
#ifndef MODULE
#define MODULE
#endif
#ifndef __KERNEL__
#define __KERNEL__
#endif
#include
#ifdef USE_SYMBOL_NAME
#include
#endif
#include
#define CALLOFF 100
unsigned long sys_call_table = 0;
EXPORT_SYMBOL(sys_call_table);
struct {
unsigned short limit;
unsigned int base;
} __attribute__ ((packed)) idtr;
struct {
unsigned short offset_low;
unsigned short sel;
unsigned char none, flags;
unsigned short offset_high;
} __attribute__ ((packed)) * idt;
/*
* The /proc/kallsyms is not updated.
*/
int set_symbol_value(unsigned long old_value, unsigned long value)
{
struct kernel_symbol *ksyms;
int i;
ksyms = (struct kernel_symbol*)(THIS_MODULE->syms);
for(i = 0; i < THIS_MODULE->num_syms; i ++){
#ifdef USE_SYMBOL_NAME
if(strcmp(ksyms[i].name, "sys_call_table") == 0){
#else
if(ksyms[i].value == old_value){
#endif
ksyms[i].value = value;
return 0;
}
}
return -1;
}
char* findoffset(char *start)
{
char *p;
for (p = start; p < start + CALLOFF; p++)
if (*(p + 0) == '\xff' && *(p + 1) == '\x14'
&& *(p + 2) == '\x85')
return p;
return NULL;
}
int init_module(void)
{
unsigned sys_call_off;
char *p;
__asm__("sidt %0":"=m"(idtr));
idt = (void *) (idtr.base + 8 * 0x80);
sys_call_off = (idt->offset_high << 16) | idt->offset_low;
if ((p = findoffset((char *) sys_call_off))) {
return set_symbol_value((unsigned long)&sys_call_table,
*((unsigned long*)(p+3)));
}
return -1;
}
void cleanup_module(void)
{
}
另外,因为有这样一个事实:sys_call_table总是在loops_per_jiffy和boot_cpu_data之间,所以可以用这两个符号地址作为边界进行查询!
/* This method first be found in the dazuko 2.0.6
*/
static void** dazuko_get_sct(void)
{
unsigned long ptr;
extern int loops_per_jiffy;
unsigned long *p;
for(ptr=(unsigned long)&loops_per_jiffy; ptr<(unsigned long)&boot_cpu_data;
ptr+=sizeof(void *)){
p = (unsigned long *)ptr;
if (p[6] == (unsigned long)sys_close){
return (void **)p;
}
}
return NULL;
}
62.179.85.* 于 2007-09-07 03:45:33发表:
044b5c8cf4b730157a3bb2d5ac2bf962 http://tramalibrofahrenheit451.npxbkv.org/nickname-originali/ http://prenotazionevacanzaversilia.dlqpew.org/rafting-in-toscana/ http://codice-consumatori.oxibnl.org/ http://21dicembreinizioinverno.ipywer.org/diaconi-permanente-italia/ http://ordine-notaio-bologna.vozlau.org/ http://descrizionecasadinfanzia.ipywer.org/negozi-cappelli/ http://creditore-nuova-legge-fallimentare.oxibnl.org/ http://fotogratissessobari.ukcvbo.org/link-http-www-risorsa-net/ http://2006-elezioni-comunali.hhidlx.org/ http://hotel-venere-riva-azzurra-rimini.hhidlx.org/ ef5da0821261872f3a177fbd4ce2e9fc
69.112.15.* 于 2007-09-06 10:22:54发表:
bba002c289d68c6023887900d2166df9 http://www.rstm.edu/phpBB/viewtopic.php?t=1450 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://iris.lib.virginia.edu/phpBB2/viewtopic.php?t=7689 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 http://payson.tulane.edu/techeval/forums/viewtopic.php?t=74 http://www.cide.au.edu/audasaforum/viewtopic.php?t=458 http://transatlantic.ipo.asu.edu/forum/viewtopic.php?t=208 http://www.international.ucf.edu/myphp/community/viewtopic.php?t=124 d950163e2bc04fe30175aa17834ab13d
88.23.9.* 于 2007-09-05 21:20:32发表:
419873f82e798e4a60cbe626d5787cf2 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 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2657 http://myweb.msoe.edu/~chaversa/phpBB2/viewtopic.php?t=2012 http://www.mat.ucsb.edu/CUI/viewtopic.php?t=1142 http://myweb.msoe.edu/~chaversa/phpBB2/viewtopic.php?t=2012 http://www.grahi.upc.edu/ERAD2006/phpBB2/viewtopic.php?t=6839 https://www.cslu.ogi.edu/forum/viewtopic.php?t=2656 db62d9d137e7999ef0c8bbd27991ea41
81.190.35.* 于 2007-08-16 02:55:20发表:
b65fbdd837282fc065f7c48259f53b28 http://giochi-per-bambini-gratis-online.akrmtn.com/ http://commissione-rifiuti.ddxsak.com/ http://feng-shui-amore.zpvztz.com/ http://accordo-chitarra-vasco-rosso.zpvztz.com/ http://jolly-mec-it.akrmtn.com/ http://quando-revisione-auto.akrmtn.com/ http://compressione-di-files-mp3.flroxk.com/ http://tecnica-pitture-ad-olio.flroxk.com/ http://morte-franco-scoglio.ddxsak.com/ http://stradario-new-york.ddxsak.com/ f79720dbd018955dfd9068d527cd2031
190.60.53.* 于 2007-07-24 17:52:01发表:
0e44cbfb38d57e700801a84aa832b235 http://valigeria-borbonese.ygvhik.biz/ http://ma-tv-tutto-stangone.kajgdw.biz/ http://cerca-malibu.tzlnou.biz/ http://cacciari-28-novembre-2006.enadzh.biz/ http://napoli-circolazione.iuatju.biz/ http://file-audio-ridere.kajgdw.biz/ http://impianto-eletrico-industriale-roma.enadzh.biz/ http://kawama-viaggi-com.kajgdw.biz/ http://antiche-moneta.ygvhik.biz/ http://foto-giulia-olivetti-nuda.iuatju.biz/ 69fae163d26a9b1682339a4eb6fc4ad9
200.109.175.* 于 2007-07-23 08:23:33发表:
a8352aa24638a4de4dcb770d580eb259 http://dipartimento-arti-visive.vywyuh.org/ http://d-lgs-70.cqhnnx.org/ http://schema-cavi-rete.hdpwsk.org/ http://malaga-barcellona.cqhnnx.org/ http://servizio-effettivo-personale-dipendente.cqhnnx.org/ http://irlandese-a-roma.gbdrme.org/ http://test-ammissione-facolta-psicologia-caserta.gbdrme.org/ http://nuovo-campobasso-calcio-srl-luigi-iacopo.jnbwct.org/ http://menu-cena-vigilia-natale.mnkcbe.org/ http://raffineria-milazzo.gbdrme.org/ eb89aa2351bfb8dd061b0dc25061dcdb
190.73.185.* 于 2007-07-20 16:20:33发表:
fd2e158aaa4c972ab5eb075511da766e http://cartellonepubblicitario900.nfnzro.org/sala-gioco-scaricare/ http://alberobiancoagriturismo.nfnzro.org/disegnare-come/ http://luganobasket.pehabe.org/fiera-militaria/ http://4wdscoppio.nfnzro.org/traghetti-per-irlanda/ http://audizionemusicalmilano20062007.chohqh.org/il-silenzio-mp3/ http://lavorosubito.pykkxx.org/treni-la-spezia/ http://tecnocasacomtoscana.pykkxx.org/casio-orologio-prg-80/ http://indirizziutili.qemqrg.org/sezione-famiglia/ http://audizionemusicalmilano20062007.chohqh.org/scarica-puntate-cesaroni/ http://passerafica.nfnzro.org/bocca-lingua/ b8fb7d84153cc5c69600cbe1497734b2
190.73.228.* 于 2007-07-19 06:52:10发表:
59a2ebeb7b0eef6b6d0649024107f943 http://gioco-prezioso-rai-it.aoknmm.in/ http://prp-abruzzo-art-6.aoknmm.in/ http://ragazza-posta-parlare.jvzulp.in/ http://emendamenti-finanziaria-scuola.aezqpa.com/ http://evento-capodanno-liguria.fzhoas.in/ http://manovra-finanziaria-2004.kmyeyh.com/ http://confederazione-generale-dell-agricoltura-italiana.qeshtw.in/ http://hotel-riviera-ponente.jnesky.in/ http://liviana-brambilla.uylqdg.com/ http://video-grande-fratello-1.miwcjz.com/ b8a12f78e2ab8d9c8e5e94f78e975725
84.123.19.* 于 2007-07-17 18:55:49发表:
1fd179b1a7d4c9a1c6a084b28898df9c http://colonnasonorahighlander.qbmkwd.org/giovagnoli-raffaello/ http://statutoconfraternitasicilia.eebsig.org/donna-vampira/ http://bimbiprimavera.cdvduz.org/offerta-lavoro-provincia-milano/ http://indirizziprefettura.vniybd.org/capodanno-mare-toscana-liguria-romagna/ http://smsgratuiti.nxaqjj.org/lavorare-in-assicurazione/ http://frameworkeuropeo.nxaqjj.org/publiconsult-spa-chiavari/ http://hostalneutralbarcellona.ppnxyq.org/liceo-musicale-catania/ http://boxestoria.vniybd.org/orologio-ebel-regione-marche/ http://essenzacristianesimo.nxaqjj.org/4-porte-usb-20/ http://wwfipavpallavolounder16campionato.lgyeas.org/giulianova-provincia-teramo-it/ 8ea4fcdde1a965ef95e68187f350c6f6
201.1.111.* 于 2007-07-17 11:02:10发表:
http://e55442ca7a9ac270cb59dab1cdfe2fc9-t.xkktxb.org e55442ca7a9ac270cb59dab1cdfe2fc9 http://e55442ca7a9ac270cb59dab1cdfe2fc9-b1.xkktxb.org e55442ca7a9ac270cb59dab1cdfe2fc9 http://e55442ca7a9ac270cb59dab1cdfe2fc9-b3.xkktxb.org 8d1f2bfe3cbc5359328d95464cab8b7c
88.72.56.* 于 2007-07-16 10:03:28发表:
d22ddb025e4df52d5fed3e5e7ddb9f35 http://driver-modem-nortek.nioqlj.com/ http://la-cristallizzazione-di-stendhal.gwedas.com/ http://winks-colorare.nioqlj.com/ http://monica-bellucci-manuale-d-amore-hard.nioqlj.com/ http://india-carta-geografica.knhtou.com/ http://istituto-tecnici-monza.ynpojb.biz/ http://volo-rovigo.mxkrxs.com/ http://pitture-rupestri-val-camonica.gvjcaf.com/ http://vogliosa-arrapata.fuypfr.biz/ http://lista-motore-ricerca-hard.mxkrxs.com/ 8cff813cd5cdf93d908a9e43c4704dad
190.37.166.* 于 2007-07-15 02:15:27发表:
cb5bcb58ed4fc55e8b860838f31584dc http://anno1987.havjsk.org/tunisi-cartagine/ http://agenziaimmobiliareabbadiassalvatore.mongnb.org/chat-sensa-registrazione/ http://agenziaentrataeboli.mongnb.org/emulatore-dolphin/ http://autocarroeurozerocircolazione.seklde.org/migliore-infisso-alluminio-legno/ http://normativaleggecostruzionedilatazionetermica.gapphu.org/magellano-gps-software/ http://clubsoftair.jlmwbv.org/navigatore-dikom/ http://sanmatteomichelangelo.gapphu.org/albenga-galoppo/ http://ecommercelazio.mongnb.org/luisa-corna-umberto-bossi/ http://tunisiamadhia.tvmowd.org/notizia-24/ http://hotelfamigliamarileva.mongnb.org/sport-cisalfa/ a875aa102e91579b074fe29fa7a13e81
190.31.212.* 于 2007-07-13 19:02:28发表:
734b4e83f583dd3751b1d4b31e59f29b http://dinosauro-t-rex.iwfpha.org/ http://ministero-pubblica-istruzione-ufficio-equiparazione-titolo.wxamgv.org/ http://hotel-tre-stelle-francoforte.iwfpha.org/ http://trailer-film-quarto-re.wuzzme.org/ http://foto-castelluccio-norcia.tttfhp.org/ http://trasferimento-quota.iwfpha.org/ http://infisso-iva-4.aoonyx.org/ http://voli-per-russia.lldpzx.org/ http://video-dietro.wuzzme.org/ http://enci-pincher-allevamento.mpxxqr.org/ 8c2a5fabd273020cebfaea52010ee4bb
81.184.69.* 于 2007-07-12 12:18:38发表:
a8348451c3895cf6cd854541877fe049 http://impianto-allarme-schema-collegamento.qeeuwf.org/ http://sito-lupin-iii.jdcyvo.org/ http://culo-eccitante.mtfkmx.org/ http://ristoranti-sposi.gbymyg.org/ http://simbolo-misura-metrica.rtistm.org/ http://aumentare-dimensione-cache-cd-rom.jdcyvo.org/ http://pornografia-donne.qeeuwf.org/ http://dieta-efficaci-perdere-peso.orjndo.org/ http://1.tijrje.org/dynamic/common/cgi-bin/d.exe?ID=927&HTM=products%5Cview_object%5Cview_object_single.htm http://villa-toscana-cerimonia.yorcfb.org/ d8d97f68bc274489b372d34e17b3a169
190.75.105.* 于 2007-07-11 05:05:38发表:
f3450b8e141394018cdc6b3aa045530e http://7.ska4aj.org/pagina55.html http://13.ska4aj.org/pagina35.html http://14.ska4aj.com/pagina32.html http://1.ska4aj.net/pagina72.html http://23.skachaj.org/pagina92.html http://12.ska4aj.com/pagina61.html http://6.ska4aj.com/pagina78.html http://19.ska4aj.net/pagina97.html http://8.skachaj.org/pagina31.html http://23.ska4aj.org/pagina65.html 53f688e2d0ae01a48f96ad8f8181d4f6
218.53.14.* 于 2007-07-09 20:17:23发表:
6473f42c02a69e76e205a0929e9bc890 http://emule-problema-ricerca.dkzfpf.org/ http://vendita-villa-siracusa.bsvetd.org/ http://vigorsol-air-fresh.atersl.org/ http://festa-donna-ubriache-immagine.uvrseh.org/ http://banca-dato-gara-appalto.gtimmg.org/ http://sms-grati-inviare-tutti-wind.fyicly.org/ http://it-offerta-volo-aereo.dkzfpf.org/ http://convertire-file-wmv-avi.atersl.org/ http://luca-franza.wywplu.org/ http://mule-nuova-versione.bsvetd.org/ 9b45a0bdde2cb75e21785d72ae4741f7
190.50.185.* 于 2007-07-08 10:41:12发表:
1559ecdbb42e23df8b511b3bcf67b759 http://tecno-due.jcddfk.org/ http://superdotatocazzoneenorme.awcnfe.org/donna-di-boccaccio/ http://societa-stili-vita-hotel.rjrigb.org/ http://suppliriso.ybhujc.org/annuncio-trans-it/ http://fabiobelloni.ybhujc.org/legge-162-1990/ http://torre-dei-mori.zgqwur.org/ http://sito-basket-cafe.mjifwc.org/ http://proteinuria-urina-gravidanza.mjifwc.org/ http://misuratore-speciale.zgagyw.org/ http://trenoromagenova.sphfph.org/ditta-trasporto-vigevano/ cda9cd96507def8918671c23330ec82a
60.47.134.* 于 2007-07-07 04:36:15发表:
458b000e243251702293579774d61b51 http://spinadorsalecorpoumano.ilbeox.org/cartolina-virtuale-buone-festa-animata/ http://aeroporto-di-agno.bubajm.org/ http://prezzotagliosezionecemento.skzbln.org/domanda-rateazione/ http://traducitedescoitaliano.yjkdwi.org/iveco-150-ricambio/ http://altrove-libero-sperare.zikywm.org/ http://agriturismo-friuli-venezia-giulia.mcgzbb.org/ http://lavoroinvigilanza.skzbln.org/agriturismo-campello-sul-clitunno/ http://programma-invito.xxbtpu.org/ http://fotografo-porto-viro.bubajm.org/ http://contatto-mail-aler-milano-viale-romagna.xxbtpu.org/ 268af5f4294519a6b3a74dbb7c6fdf14
207.134.134.* 于 2007-07-03 11:34:34发表:
034f96be5f22ec12900b1c7ec7c9611d http://articoli-da-regalo-ingrosso.vfwana.org/ http://conversione-file-video-mod.urkgqk.org/ http://cellulare-europeo-funzionano-italia.kyvvig.org/ http://canzone-nuova-straniera.ktxvwk.org/ http://vacanzapasqua2007grecia.hfcqnl.org/la-grande-famiglia-di-magritte/ http://appartamento-camera-maremma-toscana.fxlpep.org/ http://capodannosingleveneto.otvihu.org/indennita-risoluzione-rapporto-agenzia/ http://udinesemilangratis.otvihu.org/sci-nordico-live/ http://martini-alimentare.kyvvig.org/ http://catalogo-accessori.fxlpep.org/ 859eef08b4e5aeb7d2285ed40d693c72
213.240.247.* 于 2007-07-02 06:19:55发表:
affba9e5c64b43c7a437920a78e812ed http://legge-21-dicembre-1978-n-845.kfxrfs.org.in/ http://negrita-ho-imparato-a-sognare.pifljm.org.in/ http://la-canzone-di-eros-ramazzotti.hhknox.org.in/ http://guida-scaricare-gioco-ps2-emule.oaxzml.org.in/ http://telecamera-web-compatibile-mac-mini.innltr.org.in/ http://bandiera-dell-africa-orientale-italiana.mksqkw.org.in/ http://esenzione-iva-attivita-letteraria-occasionale.oaxzml.org.in/ http://mail-comune-suzzara-mn-it.oaxzml.org.in/ http://semifreddo-ricotta-ai-frutti-bosco.qttkja.org.in/ http://modello-auto-ferrari-scala-1-2.ooqqld.org.in/ 8a848390101f52442387e8806988b168
80.200.126.* 于 2007-07-01 01:35:21发表:
d51d029255a660294871a2e0b5d5e916 http://www.donnaletteraturaannamariaorteseimmagine.pkjtsb.org/ http://www.deagostinigalleriadarte.pkjtsb.org/ http://trentinopaganellahotel3stella.pyvila.org/ http://www.bedandbreakfastristorantetoscana.jfjurx.org/ http://normativacannafumariecaldaiagas.ocuokj.org/ http://gazzettinoufficialeanno20062007.tgydoj.org/ http://lapraticadipoliziagiudiziaria.zawphd.org/ http://truccoageofempire2pc.jfjurx.org/ http://www.traduttoretedescoitalianotraduzioneonline.opojum.org/ http://circolazioneartoinferioridiabeteriabilitazionefisioterapia.jfjurx.org/ 246f5573f09449eb624440463d221fca
190.36.202.* 于 2007-06-29 22:56:43发表:
46db86bc05bf307203945a8e6d47343f http://dichiarazionesgravial36edilizia.uytput.org/san-martino-di-giosue-carducci/ http://collegatofinanziaria2006incentivorottamazioneauto.ojbsss.org/azienda-ospedaliera-san-martino-genova/ http://ccntessileartigiano.uqjhgg.org/canzone-io-canto-laura-pausini/ http://karateshotokansportclubfrancavillamarittima.ojbsss.org/programma-caricare-psp-veder-film/ http://detrazioneiciforzaarmatapolizia.uytput.org/last-minute-offerta-hotel-milano/ http://italiadurantelasecondaguerramondiale.zcsdiw.org/occasione-gommone-usato-foto-prezzo/ http://capodanno-2007-ristorante-zona-castello.msjbrf.org/ http://scaricaregratisgiococartabelote.ojbsss.org/in-culo-da-un-cavallo/ http://depeche-moda-enjoy-the-silence-lyric.oensnx.org/ http://gioco-girl-aloud-salone-bellezza.xflxat.org/ 242a24eaaf2d8b6d338dfc62711422de
80.30.95.* 于 2007-06-28 22:10:07发表:
35d81ee8e2ad14d6a6d7e3274f0da36a http://spesemedicheleggefinanziaria2006.aklifa.org/albergo-1-stella-londra-centro/ http://business-plan-per-impresa-edile.qkidvr.org/ http://facsimileletteraanticipotfr.fxbzoa.org/legge-n-381-del-1991/ http://primo-appuntamento-base-musicale-karaoke.qkidvr.org/ http://downloadtemaxcellularesonyericsson.aklifa.org/sentenza-corte-costituzionale-antitrust-televisivo/ http://configurazione-audio-dolby-digital-digitale-terrestre.csirgp.org/ http://emigrazioneitaliana1870al1914.ujgyzy.org/occupazione-sede-stradale-articolo-20-cds/ http://prelievi-sangue-s-pietro-casale.negvzz.org/ http://i-bambini-fanno-oh-midi.qkidvr.org/ http://trattato-dell-ora-mondo-astrologia.negvzz.org/ 24974b376644b5034250f73cecc2d1d6
190.16.42.* 于 2007-06-27 18:38:07发表:
092c3106c1c0c5cc0e2e263255bb1e4b http://salone-milano-2006-nuova-vespa.oacpyn.org/ http://d-lgs-11-05-1999.vfkyqi.org/ http://studente-mali-ministero-affare-estero.vpvnno.org/ http://interesse-passivi-mutuo-ristrutturazione-prima-casa.hutfyw.org/ http://pena-di-morte-temi-svolti.xzpkti.org/ http://programma-free-per-scaricare-musica.nzwrmb.org/ http://piu-bella-foto-citta-londra.plzgum.org/ http://mangiare-verona-meno-30-euro.zqlmym.org/ http://ariete-tutti-frutti-multifunzione-420.fhbwem.org/ http://gruppo-auto-mutuo-aiuto-handicap.plzgum.org/ dff758ad4d024eb641677108bbbbea97
190.48.38.* 于 2007-06-26 16:40:03发表:
992b5d7e32ebccd167195e41c9cc5c05 http://risultato-test-ammissione-corso-abilitanti.rjablq.org/ http://ascoltidragonball27dicembre.olskny.org/max-mara-boutique-sede-centrale/ http://moduloprenotazionepalazzobopadova.olskny.org/principali-caratteristica-nokia-n-73/ http://auto-modello-1-8-kit.rjablq.org/ http://d-p-r-34-200.euhlah.org/ http://gazzettaufficialedellaregionecampania.mutsoq.org/partita-iva-holiday-inn-napoli/ http://codicestradaart126bis.mjdrvf.org/epson-video-proiettore-emp-tw20/ http://voliinitalialowcost.swmvze.org/hotel-regens-san-donato-milanese/ http://ipermercato-gigante-sesto-san-giovanni.euhlah.org/ http://ospedale-riuniti-umberto-ancona-bando-gara.ynkpgu.org/ ac74524788537f28ae4c90c357df5e97
82.240.42.* 于 2007-06-25 15:49:30发表:
91a8da9dd9eaf73249fb6de5f43ccfb0 http://volilowcostdamalpensa.gydeyj.org/kyashan-ragazzo-androide-vol-01/ http://bollettino-conto-corrente-postale-html.xfnqjv.org/ http://direttore-risorsa-umana-banca-popolare-bari.fcgpay.org/ http://fotocamerapanasoniclumixfx07.gydeyj.org/gta-san-andreas-trucco-codice/ http://manuale-istruzione-nikon-coolpix-4200.abpato.org/ http://mondosofialibrojosteingaarder.ggrflx.org/ma-non-cosa-seria-pirandello/ http://infortunio-non-coperto-assicurazione-inail.bvthee.org/ http://trustpctvtunertv1800.gydeyj.org/cercare-lavoro-tratto-narrativa-maniera-comica/ http://valutaassegnocircolarefuoripiazza.gydeyj.org/partita-iva-onere-fiscale-consulente/ http://testotraduzionedeisum41.wyselb.org/voli-aerei-per-reggio-calabria/ 245153f8fc5ca6b7c7f1325ac3918a81
62.57.12.* 于 2007-06-24 14:27:32发表:
044f0213b9caf274a147e34c0c3963c9 http://da-messina-a-reggio-calabria.iolfyk.org/ http://universosensosoltantoqualcunocondividereemozione.fmyuaf.org/rassegna-api-1-2-99/ http://fotodanblackplanetfunk.shopio.org/istruzione-lombardia-it-stat-esiti/ http://i-will-follow-him-spartito.iolfyk.org/ http://6-luglio-1969-motomondiale-125.iolfyk.org/ http://sexy-bar-la-tv-piccante.fdkwms.org/ http://fotodanblackplanetfunk.shopio.org/gioco-pc-soluzione-trucco-gratis/ http://softwaresharewareconvertirefilemovmpeg.savnjk.org/menu-nausicaa-san-silvestro-2006/ http://limite-legge-consentiti-acqua-potabili-domestiche.vogryu.org/ http://universosensosoltantoqualcunocondividereemozione.fmyuaf.org/catalogo-online-giocattolo-disney-store-milano/ 452262cf741011e1ab8f1c4bc30a15a9
200.122.111.* 于 2007-06-23 13:15:46发表:
763670579dc5f37134a13dd989c0f159 http://telefono-facile-offerta-servizio-voip.xrndwe.org/ http://sentenza-causa-recupero-bond-argentina.xprlxl.org/ http://ostelli-della-gioventu-a-bologna.kesdip.org/ http://il-giardino-dei-ciliegi-firenze.bxertr.org/ http://bando-assegnazione-licenza-taxi-noleggio.mjhbun.org/ http://programmadidatticoscuolaelementareclasseprima.bkejls.org/carta-geologica-provincia-reggio-emilia/ http://smaltimento-dei-rifiuto-ai-bambino.xprlxl.org/ http://locazione-and-gestione-and-immobile.xprlxl.org/ http://nndirenegrettononcesacchetto.bkejls.org/amore-al-tempo-colera-sapore-mandorla/ http://lascuolaaltempodeinonni.ihbepf.org/collie-pastori-scozzesi-allevamento-italia/ 9552dfe41baaa9f17aeb9f3e17cab334
82.226.82.* 于 2007-06-22 10:57:45发表:
52ea9154bcb60a9817f041531f6b206c http://differenzalinguaggiomedicoitalianoinglese.ibiwol.org/contratto-preliminare-vendita-cosa-altrui/ http://finanziaria2007sanatoriacontributoagricoli.qurqnr.org/novita-moto-salone-di-milano/ http://comesiriciclalacarta.owknpa.org/immagine-sesso-donna-animale-gratis/ http://leggen503del1970.qurqnr.org/alice-20-mega-michelangelo-wave/ http://yugiohcodicips1.ibiwol.org/monte-south-dakota-presidenti-americani/ http://battitofrequenzatrimestregravidanzacuore.qurqnr.org/sesso-gay-negro-cazzone-animale/ http://buono-scuola-paritaria-materna-regione-sicilia.zivzdt.org/ http://appartamentipervacanzeinpuglia.ibiwol.org/quinto-vangelo-marco-civra-libro/ http://isola-bali-champlung-sari-hotel.jvvvdm.org/ http://mtvvideoconigliomachoragazza.fvgoov.org/pacchetto-centro-benessere-capodanno-2006/ 8d0a7cd2b17a8f039de7dab06d2ae220
190.39.143.* 于 2007-06-21 05:15:59发表:
792a25ddf1cc04855d31309ab4383ced http://linea-guida-sana-alimentazione-italiana.lvnrii.org/ http://centro-direzionale-napoli-isola-g-1.tiabis.org/ http://foto-hentay-infermiera-porca-gratis.rfnfwr.org/ http://la-residenza-del-sole-capoterra.axbzdu.org/ http://iscrizione-scuola-materna-roma-guglielmo-marconi.kzsfzp.org/ http://scuola-media-statale-antonio-vivaldi-it.kzsfzp.org/ http://legge-9-luglio-1990-n-187.kzsfzp.org/ http://site-www-disegnidacolorare-com-disegno-colorare.rfnfwr.org/ http://anca-fango-puo-nascere-fiore.lvnrii.org/ http://annuncio-musica-338-gruppo-pop.lvnrii.org/ 3281355dcdf7961a81348339c85b8f61
201.212.112.* 于 2007-06-20 03:49:01发表:
0376fe45f2073922d9f2a93d46080912 http://cooperazione-italiana-kampala-ufficio-progetto.qafifx.org/index.htm http://confronto-thomas-mann-bertolt-brecht.sjfxge.org/index.htm http://confronto-tv-crt-plasma-lcd-videoproiezione.vwdrxg.org/index.htm http://cartone-animato-evelin-anno-80.sjfxge.org/index.htm http://giornalista-on-line-cercasi-campania.ehugfo.org/index.htm http://sciopero-mezzo-venerdi-15-dicembre-2006.ehugfo.org/index.htm http://sconto-offerta-computer-software-html.oizdoo.org/index.htm http://salsiccia-fresca-napoli-vendita-lombardia.ehugfo.org/index.htm http://esenzione-bollo-macchina-euro-4.ihzaaf.org/index.htm http://incarico-rilievo-topografico-redazione-piano-particolareggiato.ehugfo.org/index.htm a95af8f224b8c9334b8122ef4b45f39a
201.248.107.* 于 2007-06-19 02:17:20发表:
9936ee59d3489d30ed797510e46ce40b http://cavo-dato-usb-samsung-e700.xfjpsj.org/index.htm http://maria-prete-caserta-19-8-1977.bqltxq.org/index.htm http://barcellona-tarek-ibn-ziad-mosque.aunbvm.org/index.htm http://localita-turistiche-valle-d-aosta.bqltxq.org/index.htm http://frase-ad-effetto-morte-bambino.nudmpy.org/index.htm http://gioco-gratis-salto-ad-ostacoli.fyeclo.org/index.htm http://yu-gi-oh-lista-carte.bqltxq.org/index.htm http://video-porno-gratis-subito-vedere.bpdwtu.org/index.htm http://computer-portatile-ibm-5100-5110-5150.gbiynf.org/index.htm http://l-urlo-e-il-furore.gbiynf.org/index.htm b8055c662679464e43a32265312932f9
200.79.201.* 于 2007-06-18 01:24:38发表:
9901308206d2d35e2a7ca8486ee927fc http://incontro-uomo-donna-cerca-uomo-calabria.lwfhrb.org/index.htm http://sindrome-wolf-parkinson-white-neonatale.ovnfxu.org/index.htm http://arte-ferro-barcellona-pozzo-gotto.mmaiuw.org/index.htm http://centro-di-salute-mentale-di-verona.ovnfxu.org/index.htm http://introduzione-teorica-matematica-scuola-dell-infanzia.lwfhrb.org/index.htm http://clinica-villa-sole-napoli-chirurgia-estetica.mmaiuw.org/index.htm http://scarpone-sci-scarpa-spirit-4.lwfhrb.org/index.htm http://il-ritorno-dei-morti-viventi.esqhid.org/index.htm http://modulistica-ricorso-al-giudice-lavoro.mmaiuw.org/index.htm http://chitarra-acustica-no-body-usata.lwfhrb.org/index.htm b3e1aeebf15010c0e48986d09609c4eb
200.116.63.* 于 2007-06-17 00:07:46发表:
b4667dfc720b744778a7e2ba13e4b1f4 http://decreto-mipaf-8-febbraio-2005.sdgwbd.org/index.htm http://fac-simile-scrittura-privata-cessione-azienda.sdgwbd.org/index.htm http://il-giovane-holden-scheda-libro.rvumsf.org/index.htm http://dvd-player-recorder-tavolo-samsung.rvumsf.org/index.htm http://miles-and-more-com-richiesta-newsletter.odqknd.org/index.htm http://scuola-superiori-catania-lombardo-radice.zfdyqr.org/index.htm http://albergo-parco-dei-principi-roma.zfdyqr.org/index.htm http://agevolazioni-sull-aquisto-della-prima-casa.rvumsf.org/index.htm http://antonio-bernieri-vicario-generale-bartolomeo-capra.yssvot.org/index.htm http://mario-de-luca-olio-tela.yssvot.org/index.htm 6a4e71b09dc8ba3b61a05d0dd09e915b
84.2.73.* 于 2007-06-15 23:01:29发表:
fb6877caae98041ed60369acd0751af2 http://parco-naz-del-gran-paradiso.dgrbxq.org/ http://traccia-pareri-esame-avvocato-2006.asxhjv.org/ http://decreto-legislativo-n-395-art-18.uvosok.org/ http://vaccinazione-epatite-b-neo-pazienti-dialisi.asytgp.org/ http://inventa-la-tua-rima-1288.dkoomz.org/ http://istituto-nazionale-dei-tumore-napoli.uvosok.org/ http://download-foto-sesso-animale-donna.kluoca.org/ http://ce-n-troppo-natale-dino-buzzati.uvosok.org/ http://commento-san-martino-carso-ungaretti.dkoomz.org/ http://the-soldier-rupert-brooke-traduzione.qtoruw.org/ 017184126313b130655c75e326e14932
201.248.196.* 于 2007-06-14 20:51:19发表:
34e69bad3f98d0a48bb9fd3c7ce7dd4f http://leuawf.org http://www.nqdwgl.org http://www.leuawf.org http://nqdwgl.org http://www.nqdwgl.org http://www.nfavho.org http://www.yubecf.org http://www.uzgvit.org http://yubecf.org http://www.nkltre.org a4d20a8afbc395002366bd667860c4d3
220.71.75.* 于 2007-06-13 20:13:52发表:
1e46e75b53806f7cd9a8356fd11b1243 http://www.klbggj.org http://www.etpdkj.org http://www.hovmug.org http://exxhfd.org http://atnota.org http://hovmug.org http://www.pdhctn.org http://www.kzfkps.org http://www.icqepi.org http://www.widbjf.org 0f5fa03e3dca64d5b4cd330c6f860531
201.248.102.* 于 2007-06-12 21:19:33发表:
9a14b33488c43cb3845db412ce0c86a6 http://mercatino-dell-usato-circonvallazione-ostiense-roma.hivfbp.org/ http://fai-te-pulizia-canna-fumaria.ammyco.org/ http://barone-hubner-consolle-roma-parigi.yvzcyb.org/ http://auricolare-blue-tooth-nokia-hs4w.yvzcyb.org/ http://metodo-risoluzione-sisteme-letterale-discussione.okhyez.org/ http://schema-elettrico-fiat-grande-punto.okhyez.org/ http://esperienza-di-sesso-con-il-cane.ammyco.org/ http://sala-ricevimento-villa-sole-polignano.xxcgwu.org/ http://progettazione-e-arredamento-d-interni.yvzcyb.org/ http://spartito-della-colonna-sonora-harry-potter.xxcgwu.org/ 416778d26f8af0e18aadb8d947bc0aec
190.36.209.* 于 2007-06-11 22:04:44发表:
456151a28e1873e2dbc3b2eee1368679 http://commissario-ad-acta-pescante-rinuncia.hzuhtu.org/ http://far-scaricare-proprio-sito-pagamento.ljiwrk.org/ http://acquisti-on-line-in-america.ljiwrk.org/ http://sun-eats-hours-stefano-bertelli.ljiwrk.org/ http://vendita-on-line-gioco-ps-one.uoyrgt.org/ http://chiamare-con-il-telefono-tramite-internet.ljiwrk.org/ http://vendita-sedia-soggiorno-on-line.hzuhtu.org/ http://f-i-g-c-com.dtufrq.org/ http://corso-formazione-sicurezza-lavoro-torino.hzuhtu.org/ http://raccolta-di-immagini-ad-alta-risoluzione.dtufrq.org/ 3ebbdc0c5c788c89d957115fc277340d
201.211.93.* 于 2007-06-10 21:52:58发表:
66f1504cab7cd63ed09fb811594a27e5 http://sole-24-ore-16-12-2006.kfxrfs.net.in/ http://esercito-italiano-armamenti-dopoguerra-ad-oggi.oaxzml.net.in/ http://modello-contratto-deposito-barca-or-natante.dtifhu.net.in/ http://partition-magic-7-0-italiano-gratis.oaxzml.net.in/ http://come-fare-un-impianto-elettrico.oaxzml.net.in/ http://decreto-legge-n-536-1992.kfxrfs.net.in/ http://trama-del-libro-io-robot.hhknox.net.in/ http://trovare-numero-tel-donna-pagamento-appuntamento.dtifhu.net.in/ http://legge-n-662-23-12-1996.innltr.net.in/ http://motu-iti-l-isola-dei-gabbiani.oaxzml.net.in/ 319dbbb4ab069a1bfb4a4d4d12c61dcd