HtmlToText
wrapper script | > script written by matt mecham | > date started: 14th february 2002 | +-------------------------------------------------------------------------- */ //----------------------------------------------- // user configurable elements //----------------------------------------------- // root path $root_path = "./"; //----------------------------------------------- // no user editable sections below //----------------------------------------------- error_reporting (e_error | e_warning | e_parse); set_magic_quotes_runtime(0); class debug { function starttimer() { global $starttime; $mtime = microtime (); $mtime = explode (' ', $mtime); $mtime = $mtime[1] + $mtime[0]; $starttime = $mtime; } function endtimer() { global $starttime; $mtime = microtime (); $mtime = explode (' ', $mtime); $mtime = $mtime[1] + $mtime[0]; $endtime = $mtime; $totaltime = round (($endtime - $starttime), 5); return $totaltime; } } class info { var $member = array(); var $input = array(); var $session_id = ""; var $base_url = ""; var $vars = ""; var $skin_id = "0"; // skin dir name var $skin_rid = ""; // real skin id (numerical only) var $lang_id = "fr"; var $skin = ""; var $lang = ""; var $server_load = 0; var $version = "v1.1.2"; var $lastclick = ""; var $location = ""; var $debug_html = ""; function info() { global $sess, $std, $db, $root_path, $info; $this->vars = &$info; $this->vars['team_icon_url'] = $info['html_url'] . '/team_icons'; $this->vars['avatars_url'] = $info['html_url'] . '/avatars'; $this->vars['emoticons_url'] = $info['html_url'] . '/emoticons'; $this->vars['mime_img'] = $info['html_url'] . '/mime_types'; } } //-------------------------------- // import $info, now! //-------------------------------- require $root_path."conf_global.php"; //-------------------------------- // the clocks a' tickin' //-------------------------------- $debug = new debug; $debug->starttimer(); //-------------------------------- // require our global functions //-------------------------------- require $root_path."sources/functions.php"; $std = new func; $print = new display(); $sess = new session(); //-------------------------------- // load the db driver and such //-------------------------------- $info['sql_driver'] = !$info['sql_driver'] ? 'mysql' : $info['sql_driver']; $to_require = $root_path."sources/drivers/".$info['sql_driver'].".php"; require ($to_require); $db = new db_driver; $db->obj['sql_database'] = $info['sql_database']; $db->obj['sql_user'] = $info['sql_user']; $db->obj['sql_pass'] = $info['sql_pass']; $db->obj['sql_host'] = $info['sql_host']; $db->obj['sql_tbl_prefix'] = $info['sql_tbl_prefix']; $db->obj['debug'] = ($info['sql_debug'] == 1) ? $_get['debug'] : 0; // get a db connection $db->connect(); //-------------------------------- // wrap it all up in a nice easy to // transport super class //-------------------------------- $ibforums = new info(); //-------------------------------- // set up our vars //-------------------------------- $ibforums->input = $std->parse_incoming(); $ibforums->member = $sess->authorise(); $ibforums->skin = $std->load_skin(); $ibforums->lastclick = $sess->last_click; $ibforums->location = $sess->location; $ibforums->session_id = $sess->session_id; list($ppu,$tpu) = explode( "&", $ibforums->member['view_prefs'] ); $ibforums->vars['display_max_topics'] = ($tpu > 0) ? $tpu : $ibforums->vars['display_max_topics']; $ibforums->vars['display_max_posts'] = ($ppu > 0) ? $ppu : $ibforums->vars['display_max_posts']; if ($ibforums->member['id'] and ( $std->my_getcookie('hide_sess') ) ) { $ibforums->session_id = ""; } $ibforums->base_url = $ibforums->vars['board_url'].'/index.'.$ibforums->vars['php_ext'].'?s='.$ibforums->session_id; $ibforums->skin_rid = $ibforums->skin['set_id']; $ibforums->skin_id = 's'.$ibforums->skin['set_id']; $ibforums->vars['img_url'] = 'style_images/' . $ibforums->skin['img_dir']; //-------------------------------- // set up our language choice //-------------------------------- if ($ibforums->vars['default_language'] == "") { $ibforums->vars['default_language'] = 'fr'; } $ibforums->lang_id = $ibforums->member['language'] ? $ibforums->member['language'] : $ibforums->vars['default_language']; if ( ($ibforums->lang_id != $ibforums->vars['default_language']) and (! is_dir( $root_path."lang/".$ibforums->lang_id ) ) ) { $ibforums->lang_id = $ibforums->vars['default_language']; } $ibforums->lang = $std->load_words($ibforums->lang, 'lang_global', $ibforums->lang_id); //-------------------------------- $skin_universal = $std->load_template('skin_global'); //-------------------------------- if ($ibforums->input['act'] != 'login' and $ibforums->input['act'] != 'reg' and $ibforums->input['act'] != 'attach') { //-------------------------------- // do we have permission to view // the board? //-------------------------------- if ($ibforums->member['g_view_board'] != 1) { $std->error( array( 'level' => 1, 'msg' => 'no_view_board') ); } //-------------------------------- // is the board offline? //-------------------------------- if ($ibforums->vars['board_offline'] == 1) { if ($ibforums->member['g_access_offline'] != 1) { $std->board_offline(); } } //-------------------------------- // is log in enforced? //-------------------------------- if ( (! $ibforums->member['id']) and ($ibforums->vars['force_login'] == 1) ) { require $root_path."sources/login.php"; } } //-------------------------------- // decide what to do //-------------------------------- $choice = array( "idx" => "boards", "sf" => "forums", "sr" => "forums", "st" => "topics", "login" => "login", "post" => "post", "poll" => "lib/add_poll", "reg" => "register", "online" => "online", "members" => "memberlist", "help" => "help", "search" => "search", "mod" => "moderate", "print" => "misc/print_page", "forward" => "misc/forward_page", "mail" => "misc/contact_member", "invite" => "misc/contact_member", "icq" => "misc/contact_member", "aol" => "misc/contact_member", "yahoo" => "misc/contact_member", "msn" => "misc/contact_member", "report" => "misc/contact_member", "chat" => "misc/contact_member", "msg" => "messenger", "usercp" => "usercp", "profile" => "profile", "track" => "misc/tracker", "stats" => "misc/stats", "attach" => "misc/attach", 'ib3' => 'misc/ib3', 'legends' => 'misc/legends', 'modcp' => 'mod_cp', 'calendar' => "calendar", 'buddy' => "browsebuddy", ); /***************************************************/ $ibforums->input['act'] = $ibforums->input['act'] == '' ? "idx" : $ibforums->input['act']; // check to make sure the array key exits.. if (! isset($choice[ $ibforums->input['act'] ]) ) { $ibforums->input['act'] = 'idx'; } // require and run require $root_path."sources/".$choice[ $ibforums->input['act'] ].".php"; //+------------------------------------------------- // global routines //+------------------------------------------------- function fatal_error($message="", $help="") { echo("$message $help"); exit; } ?>
Informations Whois
Whois est un protocole qui permet d'accéder aux informations d'enregistrement.Vous pouvez atteindre quand le site Web a été enregistré, quand il va expirer, quelles sont les coordonnées du site avec les informations suivantes. En un mot, il comprend ces informations;
%%
%% This is the AFNIC Whois server.
%%
%% complete date format : YYYY-MM-DDThh:mm:ssZ
%% short date format : DD/MM
%% version : FRNIC-2.5
%%
%% Rights restricted by copyright.
%% See https://www.afnic.fr/en/products-and-services/services/whois/whois-special-notice/
%%
%% Use '-h' option to obtain more information about this service.
%%
%% [2600:3c03:0000:0000:f03c:91ff:feae:779d REQUEST] >> pagesperso-orange.fr
%%
%% RL Net [##########] - RL IP [#########.]
%%
domain: pagesperso-orange.fr
status: ACTIVE
hold: NO
holder-c: FT676-FRNIC
admin-c: O7335-FRNIC
tech-c: FT4170-FRNIC
zone-c: NFC1-FRNIC
nsl-id: NSL16830-FRNIC
registrar: NORDNET
Expiry Date: 2020-07-12T08:05:33Z
created: 2007-07-12T08:05:33Z
last-update: 2019-07-12T08:35:07Z
source: FRNIC
ns-list: NSL16830-FRNIC
nserver: ns1.fti.net
nserver: ns2.fti.net
nserver: ns3.fti.net
nserver: ns4.fti.net
nserver: ns5.fti.net
nserver: ns6.fti.net
source: FRNIC
registrar: NORDNET
type: Isp Option 1
address: 20 Rue Denis Papin
address: CS 20458
address: 59664 VILLENEUVE D'ASCQ CEDEX
country: FR
phone: +33 9 69 360 360
e-mail: contact@nordnet.net
website: https://www.nordnet.com/offres/pack_relais/presentation.php
anonymous: NO
registered: 1998-01-01T12:00:00Z
source: FRNIC
nic-hdl: FT676-FRNIC
type: ORGANIZATION
contact: ORANGE
address: 78, rue Olivier de Serres
address: 75015 Paris
country: FR
phone: +33 1 44 44 08 50
e-mail: gestionndd@francetelecom.biz
registrar: NORDNET
changed: 2015-10-15T10:42:45Z nic@nic.fr
anonymous: NO
obsoleted: NO
eligstatus: ok
eligsource: REGISTRY
eligdate: 2013-12-13T14:23:09Z
reachstatus: not identified
source: FRNIC
nic-hdl: O7335-FRNIC
type: ORGANIZATION
contact: Orange
address: 78, rue Olivier de Serres
address: 75015 Paris
country: FR
phone: +33 1 44 44 08 50
e-mail: gestionndd@francetelecom.biz
registrar: NORDNET
changed: 2013-07-02T14:24:15Z nic@nic.fr
anonymous: NO
obsoleted: NO
eligstatus: not identified
reachstatus: not identified
source: FRNIC
nic-hdl: FT4170-FRNIC
type: ORGANIZATION
contact: France Telecom
address: 1, avenue Nelson Mandela
address: 94745 Arcueil
country: FR
phone: +33 1 58 96 62 51
fax-no: +33 1 58 96 83 51
e-mail: domaines.portails@orange.com
registrar: NORDNET
changed: 2013-01-08T08:20:01Z nic@nic.fr
anonymous: NO
obsoleted: NO
eligstatus: not identified
reachstatus: not identified
source: FRNIC
REFERRER http://www.nic.fr
REGISTRAR AFNIC
SERVERS
SERVER fr.whois-servers.net
ARGS pagesperso-orange.fr
PORT 43
TYPE domain
RegrInfo
DISCLAIMER
%
% This is the AFNIC Whois server.
%
% complete date format : YYYY-MM-DDThh:mm:ssZ
% short date format : DD/MM
% version : FRNIC-2.5
%
% Rights restricted by copyright.
% See https://www.afnic.fr/en/products-and-services/services/whois/whois-special-notice/
%
% Use '-h' option to obtain more information about this service.
%
% [2600:3c03:0000:0000:f03c:91ff:feae:779d REQUEST] >> pagesperso-orange.fr
%
% RL Net [##########] - RL IP [#########.]
%
REGISTERED yes
ADMIN
HANDLE O7335-FRNIC
TYPE ORGANIZATION
CONTACT Orange
ADDRESS
78, rue Olivier de Serres
75015 Paris
COUNTRY FR
PHONE +33 1 44 44 08 50
EMAIL gestionndd@francetelecom.biz
SPONSOR NORDNET
CHANGED 2013-07-02
ANONYMOUS NO
OBSOLETED NO
ELIGSTATUS not identified
REACHSTATUS not identified
SOURCE FRNIC
TECH
HANDLE FT4170-FRNIC
TYPE ORGANIZATION
CONTACT France Telecom
ADDRESS
1, avenue Nelson Mandela
94745 Arcueil
COUNTRY FR
PHONE +33 1 58 96 62 51
FAX +33 1 58 96 83 51
EMAIL domaines.portails@orange.com
SPONSOR NORDNET
CHANGED 2013-01-08
ANONYMOUS NO
OBSOLETED NO
ELIGSTATUS not identified
REACHSTATUS not identified
SOURCE FRNIC
OWNER
HANDLE FT676-FRNIC
TYPE ORGANIZATION
CONTACT ORANGE
ADDRESS
78, rue Olivier de Serres
75015 Paris
COUNTRY FR
PHONE +33 1 44 44 08 50
EMAIL gestionndd@francetelecom.biz
SPONSOR NORDNET
CHANGED 2015-10-15
ANONYMOUS NO
OBSOLETED NO
ELIGSTATUS ok
ELIGSOURCE REGISTRY
ELIGDATE 2013-12-13T14:23:09Z
REACHSTATUS not identified
SOURCE FRNIC
DOMAIN
STATUS ACTIVE
HOLD NO
SPONSOR NORDNET
EXPIRY DATE 2020-07-12T08:05:33Z
CREATED 2007-07-12
CHANGED 2019-07-12
SOURCE FRNIC
HANDLE NSL16830-FRNIC
NSERVER
NS1.FTI.NET 193.252.149.49
NS2.FTI.NET 193.252.149.50
NS3.FTI.NET 193.252.121.105
NS4.FTI.NET 193.252.121.107
NS5.FTI.NET 81.52.142.107
NS6.FTI.NET 81.52.142.103
NAME pagesperso-orange.fr
Go to top