Major changes to build system in order to fix these bugs:
[privoxy.git] / killpopup.c
1 const char killpopup_rcs[] = "$Id: killpopup.c,v 1.6 2001/07/19 19:11:35 haroon Exp $";
2 /*********************************************************************
3  *
4  * File        :  $Source: /cvsroot/ijbswa/current/killpopup.c,v $
5  *
6  * Purpose     :  Handles the filtering of popups.
7  *
8  * Copyright   :  Written by and Copyright (C) 2001 the SourceForge
9  *                IJBSWA team.  http://ijbswa.sourceforge.net
10  *
11  *                Based on the Internet Junkbuster originally written
12  *                by and Copyright (C) 1997 Anonymous Coders and 
13  *                Junkbusters Corporation.  http://www.junkbusters.com
14  *
15  *                This program is free software; you can redistribute it 
16  *                and/or modify it under the terms of the GNU General
17  *                Public License as published by the Free Software
18  *                Foundation; either version 2 of the License, or (at
19  *                your option) any later version.
20  *
21  *                This program is distributed in the hope that it will
22  *                be useful, but WITHOUT ANY WARRANTY; without even the
23  *                implied warranty of MERCHANTABILITY or FITNESS FOR A
24  *                PARTICULAR PURPOSE.  See the GNU General Public
25  *                License for more details.
26  *
27  *                The GNU General Public License should be included with
28  *                this file.  If not, you can view it at
29  *                http://www.gnu.org/copyleft/gpl.html
30  *                or write to the Free Software Foundation, Inc., 59
31  *                Temple Place - Suite 330, Boston, MA  02111-1307, USA.
32  *
33  * Revisions   :
34  *    $Log: killpopup.c,v $
35  *    Revision 1.6  2001/07/19 19:11:35  haroon
36  *    - Implemented Guy's idea of replacing window.open( with 1;''.concat(
37  *    - Implemented Guy's idea of replacing .resizeTo( with .scrollTo(
38  *
39  *    Revision 1.5  2001/07/18 15:02:52  haroon
40  *    improved nuking of window.open
41  *
42  *    Revision 1.4  2001/06/29 13:29:55  oes
43  *    Added FIXMEs (and didn't repair, hehe)
44  *
45  *    Revision 1.3  2001/05/22 18:56:28  oes
46  *    CRLF -> LF
47  *
48  *    Revision 1.2  2001/05/20 01:21:20  jongfoster
49  *    Version 2.9.4 checkin.
50  *    - Merged popupfile and cookiefile, and added control over PCRS
51  *      filtering, in new "permissionsfile".
52  *    - Implemented LOG_LEVEL_FATAL, so that if there is a configuration
53  *      file error you now get a message box (in the Win32 GUI) rather
54  *      than the program exiting with no explanation.
55  *    - Made killpopup use the PCRS MIME-type checking and HTTP-header
56  *      skipping.
57  *    - Removed tabs from "config"
58  *    - Moved duplicated url parsing code in "loaders.c" to a new funcition.
59  *    - Bumped up version number.
60  *
61  *    Revision 1.1.1.1  2001/05/15 13:58:58  oes
62  *    Initial import of version 2.9.3 source tree
63  *
64  *
65  *********************************************************************/
66 \f
67
68 #include "config.h"
69
70 #include <stdio.h>
71 #include <stdlib.h>
72 #include <sys/types.h>
73 #include <string.h>
74 #include <malloc.h>
75 #include <errno.h>
76 #include <sys/stat.h>
77 #include <ctype.h>
78
79 #ifndef _WIN32
80 #include <unistd.h>
81 #endif
82
83 #include "project.h"
84 #include "killpopup.h"
85 #include "jcc.h"
86 #include "errlog.h"
87
88 const char killpopup_h_rcs[] = KILLPOPUP_H_VERSION;
89
90 #ifdef KILLPOPUPS
91
92 /*********************************************************************
93  *
94  * Function    :  filter_popups
95  *
96  * Description :  Filter the block of data that's been read from the server.
97  *                Caller is responsible for checking permissons list
98  *                to determine if this function should be called.
99  *                Remember not to change the content length (substitute char by char)
100  *
101  * Parameters  :
102  *          1  :  buff = Buffer to scan and modify.  Null terminated.
103  *          2  :  size = Buffer size, excluding null terminator.
104  *
105  * Returns     :  void
106  *
107  *********************************************************************/
108 void filter_popups(char *buff, int size)
109 {
110    char *popup = NULL;
111    char *close = NULL;
112    char *p     = NULL;
113
114    while ((popup = strstr( buff, "window.open(" )) != NULL)
115    {
116       if ( popup )
117       {
118          /*
119           * replace the window.open( with a harmless JavaScript replacement (notice the two single quotes)
120           * Guy's idea (thanks)
121           */
122          strncpy(popup, "1;''.concat(", 12);
123          log_error(LOG_LEVEL_POPUPS, "Blocked popup window open");
124       }
125    }
126    
127    while ((popup = strstr( buff, ".resizeTo(" )) != NULL)
128    {
129       if ( popup )
130       {
131          /*
132           * replace the .resizeTo( with a harmless JavaScript replacement
133           * Guy's idea (thanks)
134           */
135          strncpy(popup, ".scrollTo(", 10);
136          log_error(LOG_LEVEL_POPUPS, "Blocked popup window resize");
137       }
138    }
139
140    /* Filter all other crap like onUnload onExit etc.  (by BREITENB) NEW!*/
141    popup=strstr( buff, "<body");
142    if (!popup) popup=strstr( buff, "<BODY");
143    if (!popup) popup=strstr( buff, "<Body");
144    if (!popup) popup=strstr( buff, "<BOdy");
145    if (popup)
146    {
147       close=strchr(popup,'>');
148       if (close)
149       {
150          /* we are now between <body and the ending > FIXME: No, we're anywhere! --oes*/
151          p=strstr(popup, "onUnload");
152          if (p)
153          {
154             strncpy(p,"_nU_",4);
155          }
156          p=strstr(popup, "onExit");
157          if (p)
158          {
159             strncpy(p,"_nE_",4);
160          }
161       }
162    }
163
164 }
165
166 #endif /* def KILLPOPUPS */
167
168 /*
169   Local Variables:
170   tab-width: 3
171   end:
172 */