-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget.php
executable file
·84 lines (79 loc) · 3.71 KB
/
get.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
/*
:....................,:,
,.`,,,::;;;;;;;;;;;;;;;;:;`
`...`,::;:::::;;;;;;;;;;;;;::'
,..``,,,::::::::::::::::;:;;:::;
:.,,``..::;;,,,,,,,,,,,,,:;;;;;::;`
,.,,,`...,:.:,,,,,,,,,,,,,:;:;;;;:;;
`..,,``...;;,;::::::::::::::'';';';:''
,,,,,``..:;,;;:::::::::::::;';;';';;'';
,,,,,``....;,,:::::::;;;;;;;;':'''';''+;
:,::```....,,,:;;;;;;;;;;;;;;;''''';';';;
`,,::``.....,,,;;;;;;;;;;;;;;;;'''''';';;;'
:;:::``......,;;;;;;;;:::::;;;;'''''';;;;:
;;;::,`.....,::;;::::::;;;;;;;;'''''';;,;;,
;:;;:;`....,:::::::::::::::::;;;;'''':;,;;;
';;;;;.,,,,::::::::::::::::::;;;;;''':::;;'
;';;;;.;,,,,::::::::::::::::;;;;;;;''::;;;'
;'';;:;..,,,;;;:;;:::;;;;;;;;;;;;;;;':::;;'
;'';;;;;.,,;:;;;;;;;;;;;;;;;;;;;;;;;;;:;':;
;''';;:;;.;;;;;;;;;;;;;;;;;;;;;;;;;;;''';:.
:';';;;;;;::,,,,,,,,,,,,,,:;;;;;;;;;;'''';
'';;;;:;;;.,,,,,,,,,,,,,,,,:;;;;;;;;'''''
'''';;;;;:..,,,,,,,,,,,,,,,,,;;;;;;;''':,
.'''';;;;....,,,,,,,,,,,,,,,,,,,:;;;''''
''''';;;;....,,,,,,,,,,,,,,,,,,;;;''';.
'''';;;::.......,,,,,,,,,,,,,:;;;''''
`''';;;;:,......,,,,,,,,,,,,,;;;;;''
.'';;;;;:.....,,,,,,,,,,,,,,:;;;;'
`;;;;;:,....,,,,,,,,,,,,,,,:;;''
;';;,,..,.,,,,,,,,,,,,,,,;;',
'';:,,,,,,,,,,,,,,,::;;;:
`:;'''''''''''''''';:.
,,,::::::::::::::::::::::::;;;;,::::::::::::::::::::::::
,::::::::::::::::::::::::::;;;;,::::::::::::::::::::::::
,:; ## ## ## ##### #### ## ## ## ## ## ;::
,,; ## ## ## ## ## ## ## ## ## ## ## ;::
,,; ## ## ## ## ## ## #### ## ## ## ## ## ;::
,,' ## ## ## ## ## ## ## ## ## ## ## ## :::
,:: ######## #### ###### ######## ### :::
,,,:,,:,,:::,,,:;:::::::::::::::;;;:::;:;:::::::::::::::
,,,,,,,,,,,,,,,,,,,,,,,,:,::::::;;;;:::::;;;;::::;;;;:::
(c) WDGWV. 2013, http://www.wdgwv.nl
websites, Apps, Hosting, Services, Development.
PHP Ajax IRC Chat (PAIC)
Version: 0.0.0.1 Alpha
Website: http://www.wdgwv.com
Revision: 100
Last Edit: 27-NOV-2013 21:00 By WdG
Authors: WdG, Wesley de Groot, [email protected], http://www.wdgwv.com
Your initials, Your name, your mail, your website
*/
error_reporting(E_ALL ^E_PARSE);
if ( isset ( $_GET['sid'] ) )
{
#IRC.PHP TRY`D TO KILL ME!
/* include "irc.php";
$irc = new WdgssAjaxIrc ( ) ;
$x = $irc -> EncodeIp ( $_SERVER['REMOTE_ADDR'] ) ;
echo $irc -> GetText ( $_SERVER['REMOTE_ADDR'] ) ;*/
$file = "data/{$_SERVER['REMOTE_ADDR']}.txt.sock";
if ( file_exists ( $file ) )
{
//$this -> sent_raw_command ( "NAMES #{$_SESSION['chan']}" ) ;
echo "<font color='black'>" .
file_get_contents($file) .
"</font>";
if ( ! ( @unlink ( $file ) ) )
{
echo "<font color='red'>(".date('H:i:s').") <System> Error: Can`t Delete Your Old Messages...</font><br>";
}
}
}
else
{
# MISSING SID: Session ID.
echo "ERROR [No Get]";
}
?>