diff --git a/doc/FAQ.html b/doc/FAQ.html new file mode 100644 index 000000000..93a3ed208 --- /dev/null +++ b/doc/FAQ.html @@ -0,0 +1,246 @@ + + + + + sqlmap - Frequently Asked Questions + + +

sqlmap - Frequently Asked Questions

+ +

by +Bernardo Damele A. G., +Miroslav Stampar

+
+This document contains frequently asked questions for +sqlmap. +
+

+

1. Frequently Asked Questions

+ + + +
+

1. Frequently Asked Questions

+ +

1.1 What is sqlmap? +

+ +

sqlmap is an open source penetration testing tool that automates the +process of detecting and exploiting SQL injection flaws and taking over +of database servers. It comes with a powerful detection engine, many niche +features for the ultimate penetration tester and a broad range of switches +lasting from database fingerprinting, over data fetching from the +database, to accessing the underlying file system and executing commands +on the operating system via out-of-band connections.

+ +

1.2 How do I execute sqlmap? +

+ +

If you are running on a Unix/Linux system type the following command +from a terminal: +

+
+python sqlmap.py -h
+
+
+

+ +

If you are running on a Windows system type the following command +from a terminal: +

+
+C:\Python26\python.exe sqlmap.py -h
+
+
+

+ +

Where C:\Python26 is the path where you installed +Python >= 2.6.

+ +

1.3 Can I integrate sqlmap with a security tool I am developing? +

+ +

Yes. sqlmap is released under the terms of the GPLv2, which means that any +derivative work must be distributed without further restrictions on the +rights granted by the GPL itself. If this constitutes a problem, feel free +to contact us so we can find a solution.

+ +

1.4 How can I integrate sqlmap with my own tool? +

+ +

TODO

+ +

1.5 Will you support other database management systems? +

+ +

Yes. There are plans to support also IBM DB2, Informix and Ingres at some +point.

+ +

1.6 How can I occasionally contribute? +

+ +

All help is greatly appreciated. First of all download the tool, make sure +you are running the latest development version from the Subversion +repository, read the user's manual carefully, have fun with it during your +penetration tests. +If you find bugs or have ideas for possible improvements, feel free to +get in touch on the mailing list. Many people have +contributed in different ways to the sqlmap development. +You can be the next!

+ +

1.7 Can I actively contribute in the long-term development? +

+ +

Yes, we are looking for people who can write some clean Python code, are +up to do security research, know about web application security, database +assessment and takeover, software refactoring and are motivated to join +the development team. +If this sounds interesting to you, +get in touch!

+ +

1.8 How can I support the development? +

+ +

If you think that sqlmap is a great tool, it really played well during +your penetration tests, or you simply like it, you, or your boss, can +donate some money to the developers via PayPal.

+ +

1.9 Can you hack a site for me? +

+ +

No.

+ +

1.10 When sqlmap will switch to the Python 3? +

+ +

Currently there is no huge pressure on Python projects to switch to the new +version of Python interpreter, as the process of switching, especially on +larger projects can be cumbersome (due to the few backward incompatibilities). +The switch will take place eventually, but currently it's a very low priority task.

+ +

1.11 What does "WARNING unknown charset '...'" mean? +

+ +

sqlmap needs to properly decode page content to be able to properly +detect and deal with internationalized characters. In some cases web developers +are doing mistakes when declaring used web page charset (e.g. iso_8859 instead +of standardized name iso-8859), which can cause problems. As a failsafe mechanism +we've incorporated heuristic detection engine +chardet, +so in most cases sqlmap will deal with this kind of problems automatically. +Nevertheless, you are strongly advised to report us back those typographic "mistakes" +so we could handle them manually inside the code.

+ +

Question(s): +#1 +#2 +#3

+ +

1.12 How to use sqlmap with mod_rewrite enabled? +

+ +

Just put * to the place where sqlmap should check for injections in URI +itself. In example: ./sqlmap.py -u "www.site.com/id1/1*/id2/2" sqlmap +will try to inject the payloads just at that place marked with * character.

+ +

Question(s): +#1 +#2 +#3

+ +

1.13 Why is sqlmap not able to get password hashes in some cases? +

+ +

You most probably don't have enough permissions for querying on a system +table containing password hashes.

+ +

Question(s): +#1

+ +

1.14 What is --text-only switch? +

+ +

Switch --text-only is used for removing non-textual data (tags, +javascripts, styles,...) from the retrieved page content to further +improve detection capabilities.

+ +

Question(s): +#1

+ +

1.15 sqlmap is retrieving weird characters for even simplest data (e.g. --banner)? +

+ +

If everything you retrieve from the target is garbled, then you are +most probably dealing with false positive blind injection. Please +report the problem to the +developers.

+ +

Question(s): +#1 +#2

+ +

1.16 I am getting "CRITICAL connection timed" while I am able to browse the site normally? +

+ +

There are few IDSes that filter out all sqlmap requests based on default +User-Agent HTTP header used (e.g. "User-agent: sqlmap/1.0-dev"). To prevent this +kind of situations you are advised to use switch --random-agent. +If you are getting those kind of messages for all targets then you +most probably need to properly set up your proxy settings (switches --proxy +and/or --ignore-proxy)

+ +

Question(s): +#1

+ +

1.17 Is it possible to use "INSERT/UPDATE" SQL commands via --sql-query +and/or --sql-shell?

+ +

It is possible to use those commands, but only if the stacked injection is supported +by the vulnerable target.

+ +

Question(s): +#1

+ +

1.18 I am getting "finally: SyntaxError: invalid syntax" when trying to run sqlmap? +

+ +

You are most probably using outdated version of Python. sqlmap is generally +supported by Python versions in range 2.5, 2.6 and 2.7, while you are strongly +advised to use versions 2.6 and 2.7.

+ +

Question(s): +#1

+ +

1.19 sqlmap is not able to detect/exploit injection while other commercial tools are? +

+ +

Currently there are only two of us working on a pure good will and donating our +free time to the community. If you are not willing to help us achive better tool +you are strongly advised to buy those commercial tool(s) and just +forget about the sqlmap.

+ +

Question(s): +#1

+ + + diff --git a/doc/FAQ.pdf b/doc/FAQ.pdf new file mode 100644 index 000000000..c963f28d2 Binary files /dev/null and b/doc/FAQ.pdf differ diff --git a/doc/FAQ.sgml b/doc/FAQ.sgml index 2cccee351..151bfa04d 100644 --- a/doc/FAQ.sgml +++ b/doc/FAQ.sgml @@ -7,7 +7,7 @@ This document contains frequently asked questions for . +url="http://www.sqlmap.org" name="sqlmap">. @@ -72,7 +72,7 @@ you are running the latest development version from the Subversion repository, read the user's manual carefully, have fun with it during your penetration tests. If you find bugs or have ideas for possible improvements, feel free to -. Many people have in different ways to the sqlmap development. @@ -86,14 +86,14 @@ up to do security research, know about web application security, database assessment and takeover, software refactoring and are motivated to join the development team. If this sounds interesting to you, ! +url="http://www.sqlmap.org/#developers" name="get in touch">! How can I support the development?

If you think that sqlmap is a great tool, it really played well during your penetration tests, or you simply like it, you, or your boss, can - to the developers via PayPal. Can you hack a site for me? diff --git a/doc/README.html b/doc/README.html index dd22cd9f4..3b28407ae 100644 --- a/doc/README.html +++ b/doc/README.html @@ -12,7 +12,7 @@ Miroslav Stamparversion 1.0-dev, XXX XX, 2011


This document is the user's manual to use -sqlmap. +sqlmap.

1. Introduction

@@ -123,7 +123,7 @@ for the database management system that you are going to attack:

  • Microsoft SQL Server: python-pymssql.
  • MySQL: -python-mysqldb.
  • +python pymysql.
  • Oracle: python cx_Oracle.
  • PostgreSQL: @@ -562,7 +562,7 @@ the

    • April 10, -Bernardo and Miroslav release sqlmap +Bernardo and Miroslav release sqlmap 0.9 featuring a totally rewritten and powerful SQL injection detection engine, the possibility to connect directly to a database server, support for time-based blind SQL injection and error-based SQL @@ -576,7 +576,7 @@ injection, support for four new database management systems and much more.
      • December, -Bernardo and Miroslav have enhanced sqlmap a +Bernardo and Miroslav have enhanced sqlmap a lot during the whole year and prepare to release sqlmap 0.9 within the first quarter of 2011.
      • June 3, Bernardo @@ -584,7 +584,7 @@ within the first quarter of 2011.
      • a talk titled Got database access? Own the network! at AthCon 2010 in Athens (Greece).
      • March 14, -Bernardo and Miroslav release stable version of +Bernardo and Miroslav release stable version of sqlmap 0.8 featuring many features. Amongst these, support to enumerate and dump all databases' tables containing user provided column(s), stabilization and enhancements to the takeover functionalities, @@ -616,7 +616,7 @@ for developers.
      • December 4, sqlmap-devel mailing list has been merged into sqlmap-users -mailing list. +mailing list.
      • November 20, Bernardo and Guido present again their research on stealth database server takeover at CONfidence 2009 in Warsaw, @@ -739,7 +739,7 @@ more options to enumerate and dump specific information are added, brand new installation packages for Debian, Red Hat, Windows and much more.
      • August, two public -mailing lists are created on SourceForge. +mailing lists are created on SourceForge.
      • January, sqlmap subversion development repository is moved away from SourceForge and goes private for a while.
      • @@ -848,7 +848,7 @@ $ svn update

        This is strongly recommended before reporting any bug to the -mailing list.

        +mailing list.

        5. Usage

        @@ -859,7 +859,7 @@ $ svn update $ python sqlmap.py -h sqlmap/1.0 - automatic SQL injection and database takeover tool - http://sqlmap.sourceforge.net + http://www.sqlmap.org Usage: python sqlmap.py [options] @@ -1229,7 +1229,7 @@ header value:

        -sqlmap/0.9 (http://sqlmap.sourceforge.net)
        +sqlmap/0.9 (http://www.sqlmap.org)
         

        @@ -3032,7 +3032,7 @@ by right-clicking in Windows Explorer into your sqlmap working copy and clicking on Update.

        This is strongly recommended before reporting any bug to the -mailing lists.

        +mailing lists.

        Save options in a configuration INI file

        @@ -3177,7 +3177,7 @@ sqlite:///software/sqlmap/output/192.168.136.131/dump/testdb.sqlite3 --tablesqlmap is released under the terms of the General Public License v2. sqlmap is copyrighted by its -developers.

        +developers.

        7. Disclaimer

        diff --git a/doc/README.pdf b/doc/README.pdf index a3d136738..3b6ed71d3 100644 --- a/doc/README.pdf +++ b/doc/README.pdf @@ -769,7 +769,7 @@ endobj /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [251.615 678.858 282.797 689.981] -/Subtype/Link/A<> +/Subtype/Link/A<> >> endobj 494 0 obj << /Type /Annot @@ -1744,23 +1744,19 @@ endobj /ProcSet [ /PDF /Text ] >> endobj 664 0 obj << -/Length 2194 +/Length 2198 /Filter /FlateDecode >> stream -xn=_HBm2)fI;.b(hyGۈRR}ye9V>L^$gn/~|_4\yT=g;sZ$xŷWaȽ< j0"/ŪX|pof9se:},]æMc gI!<`nąO.\uY1x `D)17~/ ~WmDx2WnfN}:EoO'\= @ =7#~.5C:,ߗsj! -h#7$̐+a?aߦi5 I|5g( wu@Pt ;7̀HUX -D<8 -y&=cr0/R1 - u S 3xRRffym8s龖BF1Ō*H})݁mPϼQ#2/MSDz7S}d di7S6=N -@xӗ#\=_sEH8>66 es9u'{, adO\)mؒs+Yִܶ||;5qﵾ& 34ez^89Z5#J0Y-r# \Գ`J=)Ax&1Pzk@bI^(0Mμ!ODwң_eW|XWA /$TG.okT%^il6ԣtDHҚbl0:l?hO -G=!&Uf ->Of.Z?ޗfɮObtjB ؅_c@S9֪|ڱ3yp~z18;mkam(H!9L+ִv LN7tv0J h6!2!CPP$wl^yY:2uր5b/r1N⽩ cIҴі}x̬N|-=z>8궞Mu}sF E,*l1!'"!߃Y~H]5!HsƷ)ltEc1ᅱqsp7LkwRqdXSo^@>{Ma2pC8R3zgK68џ8hJz~X,#?`ҵշ84U[ -Jl>TFv=o{ͽ09dϛ#mcl1O)đP85PSsE,'K"Y";rͭMh9x=ۤYAuG4^%'lDt4DТ0V捻$Rw@gB%Mm&zKaYէA -,A t;"*ZZl1Lyk:(*)9-8ԎA$ƞO^1A7Op';^o^TӔ1gY~S'v5Z_iAώ*?C!m֘fXZi 8V}h*'8rNڞ(5Gm&d!91x ƋdJ*c^g6PjPϽRcLBƴ98ҤVu *B.ju3BzwMI! -&,i`~|ډy'NGnǓl!^g3mc cL_(ZڬXͬ{LE=_=+rܟ?*O5i9YwqFM7x2D7 ӖFƄ ϤbMk ^\H/^|EggO4r {z`3#2DB8 9vG &#]wh ؙ#8O2*'?s$B<*M 8Z=n ۇ"jq Ql bD-U¿ts OYo}ՐIXsl aL5{lG{Ӏ7sM]WCIf> +/Rect [135.89 594.355 207.382 605.145] +/Subtype/Link/A<> >> endobj 650 0 obj << /Type /Annot @@ -2202,13 +2198,13 @@ endobj /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [143.819 192.997 246.615 203.802] -/Subtype/Link/A<> +/Subtype/Link/A<> >> endobj 706 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [152.043 93.079 253.954 103.883] -/Subtype/Link/A<> +/Subtype/Link/A<> >> endobj 712 0 obj << /D [710 0 R /XYZ 71 806.89 null] @@ -2267,7 +2263,7 @@ endobj /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [153.344 712.546 258.919 723.35] -/Subtype/Link/A<> +/Subtype/Link/A<> >> endobj 713 0 obj << /Type /Annot @@ -2297,7 +2293,7 @@ endobj /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [428.893 486.429 479.635 497.234] -/Subtype/Link/A<> +/Subtype/Link/A<> >> endobj 718 0 obj << /Type /Annot @@ -2511,7 +2507,7 @@ endobj /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [186.778 265.063 241.449 275.868] -/Subtype/Link/A<> +/Subtype/Link/A<> >> endobj 749 0 obj << /Type /Annot @@ -2533,19 +2529,19 @@ endobj /ProcSet [ /PDF /Text ] >> endobj 767 0 obj << -/Length 1845 +/Length 1840 /Filter /FlateDecode >> stream -xڵXɒ6+xȁ07;+r|HŘ"hgil)q%ɉ 6_~h0 - -->-0\) ꤽAp ) gug?Ic},(J ̳$Q]{F J"EqN8H'B\m]|iR8l􅤍`8) /;z|z71QK" cXՖ)+EɰԡDbkV%N`Fò.Wvv7ڟ4OvRK0SnlνZ}aMfdƌq<4脭4rX[FT6 ߽+; [=)k]Z.JseA+Kyq3AbK uDyP2 >akF&ȇ+Em%|;F4nͮ5(sHJCBJCXs?5˒TSGw -"J% -wS>>p+h^{^CXbȎ~9@h˵QVBi4Bs6<^DǥjcV6Z\ %j/*Fhy[c|Bn7eɌ@Qǧ~H`o [ &J> ->Cs2㥽,ȣS2 HoZ(K.aǷ۩`3«OW?1«}mW(a呱F%Ng4;)+R:rPtJxFB#`/j8UUٔD"YQZO8|Ʉ/ڵi.p غֻ̈́r n1D&k+!# fQmIuɄ7Ly;T4tV3#) [kGY2ZY+k>`"};E`7;()ᆻ %TjHJ> m9[hO 1߼Ԯl}dR eoғ8mù,ՁwF LHOn=Ow鑖F;}]} IuB)^.}4 #ɸ+~$fh8 G쏎p&l9?EVۻ6GP~ﺦ}tu3-PseWWv13^ik~'|)O وǤbr]yc'[Ѓ1{~LW~ m} !YXIirwJ*E -MZ\ -j[vL5 >: x07zƯ* +xڵXKs6W5ă/ߜēILKĚ".HiOIp x&?&xq b3xKx~wofm<%pͽ`/EiD"ڠ(w|$eR&0)J%Gg8da)^fEA"Rǃw#.tR,qDoywSwZ6G~#Ҏ$^Y1QJZG)JҰc٘=B=kbJb)??ېJ%0ŜuP4R+ǧM+c/r{,VUm}؀3Ńƈ7E$z-M} vSZ;^G>AR)/Vꍽ*H F;2ϒFx.D(po*ZxY0A~I/IS([Wt|71QI" cXUe) +QԡDWbiV%uc$Y)?/UmHeLP7kb.ԝPm`Lb̘Z+Ö|k@`i߈\¦O/>Fh /MV]u9Uph + zXoD A.- aH {Ci{3 'L\"I"@r򝊅h]]KkP?~*H,bM͛&(D(+۔S]m*5$v6%7mr'}P,kuCֶ>%_դSj;%r`(r~Zp8:~V7aH5Gp~Vd-rS*QUcGl%.nOfR<\":)k 5 j#I+% +W[i#ixG@8x#f?EV荫-(B?XuY d A/]čg ScC612x{B19pg:ۈ1>CCkY>͚EBo0<nԗuS9j%UжJPԐ X5GS[_eݿPTj +݀wvض%7>}kͼ4c8z F+18EI7M{Qڋ>6*['[Ѓ1{~HW~ m} !YXIiRwJ*"sﬣAx7b½}.'j endstream endobj 766 0 obj << @@ -2620,7 +2616,7 @@ endobj /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [350.858 210.059 401.6 220.863] -/Subtype/Link/A<> +/Subtype/Link/A<> >> endobj 768 0 obj << /D [766 0 R /XYZ 71 806.89 null] @@ -2838,7 +2834,7 @@ endobj /ProcSet [ /PDF /Text ] >> endobj 795 0 obj << -/Length 2592 +/Length 2588 /Filter /FlateDecode >> stream @@ -2854,7 +2850,7 @@ j Z1D<*pMIjY ƇGOPm㇈lz7Ke[KRR ZŁ~Jy/i"ǟ? y8ۡb;DrLq2.7"4%! x `0&zI3׉Z8gHqBhiwk?D4#T.ik|5 NksYZ@@CSЭ|T.ESww8׮BH2)khgc.oo^@5;,@i|Dugm= e(Rl|`KiNi35<*a1JR'5 u%jrR1DbWX^(W/n%0\[v>!˨0) \ܕ9EPR9f;fd;=gsCjI粪;撠8b2~vAa#S*6WSx(O)IMh'5fjfm#-^Tu)k -i80k7ȥ[X/F^91C-jjzHad#;'] {[I*jF\G[,a`8.P-VXpiŔ\v)@3{fؽqKb6͋Ŧp=vt?4z.JKMq%_t;D%2{$ !emU'/;vw )ofEDlRRcnFʹ۟4-U{}%V^ycpAד.桨`K_"dֿ?߼zEY`ҶG.bf{(h +i80k7ȥ[X/F^91C-jjzHad#;'] {[I*jF\G[,a`8.P-VXpiŔ\v)@3{fؽqKb6͋Ŧp=vt?4z.JKMq%_t;D%2{$ !emU'/;vw )ofEDlRRcnFʹ۟4-U{}%V^ycpAד.桨`K_"dֿ?߼z$hŗlN7 endstream endobj 794 0 obj << @@ -3969,7 +3965,7 @@ endobj /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [350.858 270.151 405.529 280.956] -/Subtype/Link/A<> +/Subtype/Link/A<> >> endobj 919 0 obj << /D [917 0 R /XYZ 71 806.89 null] @@ -4072,7 +4068,7 @@ endobj /Type /Annot /Border[0 0 0]/H/I/C[0 1 1] /Rect [493.823 284.907 540.996 295.698] -/Subtype/Link/A<> +/Subtype/Link/A<> >> endobj 932 0 obj << /D [930 0 R /XYZ 71 806.89 null] @@ -10526,8 +10522,8 @@ endobj >> endobj 1488 0 obj << /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.10)/Keywords() -/CreationDate (D:20110618135801+01'00') -/ModDate (D:20110618135801+01'00') +/CreationDate (D:20110707195757+01'00') +/ModDate (D:20110707195757+01'00') /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.1415926-1.40.10-2.2 (TeX Live 2009/Debian) kpathsea version 5.0.0) >> endobj @@ -10535,1498 +10531,1498 @@ xref 0 1489 0000000000 65535 f 0000000015 00000 n -0000041951 00000 n -0000361581 00000 n +0000041943 00000 n +0000361501 00000 n 0000000060 00000 n 0000000090 00000 n -0000042006 00000 n -0000361511 00000 n +0000041998 00000 n +0000361431 00000 n 0000000140 00000 n 0000000170 00000 n -0000047699 00000 n -0000361390 00000 n +0000047692 00000 n +0000361310 00000 n 0000000220 00000 n 0000000247 00000 n -0000047755 00000 n -0000361316 00000 n +0000047748 00000 n +0000361236 00000 n 0000000303 00000 n 0000000356 00000 n -0000052419 00000 n -0000361242 00000 n +0000052412 00000 n +0000361162 00000 n 0000000412 00000 n 0000000482 00000 n -0000056224 00000 n -0000361156 00000 n +0000056217 00000 n +0000361076 00000 n 0000000533 00000 n 0000000562 00000 n -0000056280 00000 n -0000361083 00000 n +0000056273 00000 n +0000361003 00000 n 0000000613 00000 n 0000000636 00000 n -0000056336 00000 n -0000360958 00000 n +0000056329 00000 n +0000360878 00000 n 0000000682 00000 n 0000000709 00000 n -0000060762 00000 n -0000360884 00000 n +0000060755 00000 n +0000360804 00000 n 0000000760 00000 n 0000000795 00000 n -0000066258 00000 n -0000360797 00000 n +0000066251 00000 n +0000360717 00000 n 0000000846 00000 n 0000000901 00000 n -0000066314 00000 n -0000360723 00000 n +0000066307 00000 n +0000360643 00000 n 0000000952 00000 n 0000000988 00000 n -0000070954 00000 n -0000360597 00000 n +0000070931 00000 n +0000360517 00000 n 0000001034 00000 n 0000001060 00000 n -0000071010 00000 n -0000360523 00000 n +0000070987 00000 n +0000360443 00000 n 0000001111 00000 n 0000001134 00000 n -0000071066 00000 n -0000360436 00000 n +0000071043 00000 n +0000360356 00000 n 0000001185 00000 n 0000001208 00000 n -0000079486 00000 n -0000360349 00000 n +0000079447 00000 n +0000360269 00000 n 0000001259 00000 n 0000001282 00000 n -0000086239 00000 n -0000360262 00000 n +0000086192 00000 n +0000360182 00000 n 0000001333 00000 n 0000001356 00000 n -0000086295 00000 n -0000360175 00000 n +0000086248 00000 n +0000360095 00000 n 0000001407 00000 n 0000001430 00000 n -0000090819 00000 n -0000360101 00000 n +0000090759 00000 n +0000360021 00000 n 0000001481 00000 n 0000001504 00000 n -0000090874 00000 n -0000360012 00000 n +0000090814 00000 n +0000359932 00000 n 0000001550 00000 n 0000001588 00000 n -0000090930 00000 n -0000359883 00000 n +0000090870 00000 n +0000359803 00000 n 0000001634 00000 n 0000001658 00000 n -0000099087 00000 n -0000359809 00000 n +0000099027 00000 n +0000359729 00000 n 0000001709 00000 n 0000001744 00000 n -0000099142 00000 n -0000359683 00000 n +0000099082 00000 n +0000359603 00000 n 0000001795 00000 n 0000001820 00000 n -0000101775 00000 n -0000359609 00000 n +0000101715 00000 n +0000359529 00000 n 0000001876 00000 n 0000001905 00000 n -0000101831 00000 n -0000359522 00000 n +0000101771 00000 n +0000359442 00000 n 0000001961 00000 n 0000002027 00000 n -0000101887 00000 n -0000359433 00000 n +0000101827 00000 n +0000359353 00000 n 0000002083 00000 n 0000002132 00000 n -0000101943 00000 n -0000359342 00000 n +0000101883 00000 n +0000359262 00000 n 0000002189 00000 n 0000002256 00000 n -0000102000 00000 n -0000359264 00000 n +0000101940 00000 n +0000359184 00000 n 0000002313 00000 n 0000002375 00000 n -0000102056 00000 n -0000359133 00000 n +0000101996 00000 n +0000359053 00000 n 0000002427 00000 n 0000002454 00000 n -0000105085 00000 n -0000359054 00000 n +0000105021 00000 n +0000358974 00000 n 0000002511 00000 n 0000002540 00000 n -0000105142 00000 n -0000358961 00000 n +0000105078 00000 n +0000358881 00000 n 0000002597 00000 n 0000002635 00000 n -0000105198 00000 n -0000358868 00000 n +0000105134 00000 n +0000358788 00000 n 0000002692 00000 n 0000002734 00000 n -0000107898 00000 n -0000358775 00000 n +0000107834 00000 n +0000358695 00000 n 0000002791 00000 n 0000002830 00000 n -0000107955 00000 n -0000358682 00000 n +0000107891 00000 n +0000358602 00000 n 0000002887 00000 n 0000002925 00000 n -0000108012 00000 n -0000358589 00000 n +0000107948 00000 n +0000358509 00000 n 0000002982 00000 n 0000003030 00000 n -0000111231 00000 n -0000358496 00000 n +0000111167 00000 n +0000358416 00000 n 0000003087 00000 n 0000003147 00000 n -0000111288 00000 n -0000358403 00000 n +0000111224 00000 n +0000358323 00000 n 0000003204 00000 n 0000003239 00000 n -0000111345 00000 n -0000358310 00000 n +0000111281 00000 n +0000358230 00000 n 0000003296 00000 n 0000003347 00000 n -0000111402 00000 n -0000358217 00000 n +0000111338 00000 n +0000358137 00000 n 0000003405 00000 n 0000003466 00000 n -0000111459 00000 n -0000358124 00000 n +0000111395 00000 n +0000358044 00000 n 0000003524 00000 n 0000003603 00000 n -0000111516 00000 n -0000358031 00000 n +0000111452 00000 n +0000357951 00000 n 0000003661 00000 n 0000003747 00000 n -0000114065 00000 n -0000357952 00000 n +0000114001 00000 n +0000357872 00000 n 0000003805 00000 n 0000003896 00000 n -0000114122 00000 n -0000357821 00000 n +0000114058 00000 n +0000357741 00000 n 0000003948 00000 n 0000003980 00000 n -0000114179 00000 n -0000357742 00000 n +0000114115 00000 n +0000357662 00000 n 0000004037 00000 n 0000004076 00000 n -0000114236 00000 n -0000357649 00000 n +0000114172 00000 n +0000357569 00000 n 0000004133 00000 n 0000004170 00000 n -0000117835 00000 n -0000357556 00000 n +0000117771 00000 n +0000357476 00000 n 0000004227 00000 n 0000004262 00000 n -0000117892 00000 n -0000357463 00000 n +0000117828 00000 n +0000357383 00000 n 0000004319 00000 n 0000004359 00000 n -0000117949 00000 n -0000357384 00000 n +0000117885 00000 n +0000357304 00000 n 0000004416 00000 n 0000004465 00000 n -0000118006 00000 n -0000357253 00000 n +0000117942 00000 n +0000357173 00000 n 0000004517 00000 n 0000004546 00000 n -0000118063 00000 n -0000357174 00000 n +0000117999 00000 n +0000357094 00000 n 0000004603 00000 n 0000004646 00000 n -0000120825 00000 n -0000357081 00000 n +0000120761 00000 n +0000357001 00000 n 0000004703 00000 n 0000004742 00000 n -0000120882 00000 n -0000356988 00000 n +0000120818 00000 n +0000356908 00000 n 0000004799 00000 n 0000004860 00000 n -0000123474 00000 n -0000356895 00000 n +0000123410 00000 n +0000356815 00000 n 0000004917 00000 n 0000004995 00000 n -0000123531 00000 n -0000356802 00000 n +0000123467 00000 n +0000356722 00000 n 0000005052 00000 n 0000005096 00000 n -0000126066 00000 n -0000356723 00000 n +0000126002 00000 n +0000356643 00000 n 0000005153 00000 n 0000005194 00000 n -0000129361 00000 n -0000356592 00000 n +0000129297 00000 n +0000356512 00000 n 0000005246 00000 n 0000005275 00000 n -0000129418 00000 n -0000356513 00000 n +0000129354 00000 n +0000356433 00000 n 0000005332 00000 n 0000005357 00000 n -0000129475 00000 n -0000356420 00000 n +0000129411 00000 n +0000356340 00000 n 0000005414 00000 n 0000005438 00000 n -0000129532 00000 n -0000356341 00000 n +0000129468 00000 n +0000356261 00000 n 0000005495 00000 n 0000005530 00000 n -0000132786 00000 n -0000356210 00000 n +0000132722 00000 n +0000356130 00000 n 0000005582 00000 n 0000005612 00000 n -0000132843 00000 n -0000356131 00000 n +0000132779 00000 n +0000356051 00000 n 0000005669 00000 n 0000005725 00000 n -0000132900 00000 n -0000356038 00000 n +0000132836 00000 n +0000355958 00000 n 0000005782 00000 n 0000005871 00000 n -0000135982 00000 n -0000355945 00000 n +0000135918 00000 n +0000355865 00000 n 0000005928 00000 n 0000005994 00000 n -0000136039 00000 n -0000355866 00000 n +0000135975 00000 n +0000355786 00000 n 0000006051 00000 n 0000006125 00000 n -0000136096 00000 n -0000355735 00000 n +0000136032 00000 n +0000355655 00000 n 0000006177 00000 n 0000006208 00000 n -0000136152 00000 n -0000355670 00000 n +0000136088 00000 n +0000355590 00000 n 0000006265 00000 n 0000006333 00000 n -0000136209 00000 n -0000355538 00000 n +0000136145 00000 n +0000355458 00000 n 0000006385 00000 n 0000006416 00000 n -0000136266 00000 n -0000355459 00000 n +0000136202 00000 n +0000355379 00000 n 0000006473 00000 n 0000006499 00000 n -0000138459 00000 n -0000355366 00000 n +0000138395 00000 n +0000355286 00000 n 0000006556 00000 n 0000006588 00000 n -0000138516 00000 n -0000355273 00000 n +0000138452 00000 n +0000355193 00000 n 0000006645 00000 n 0000006681 00000 n -0000138573 00000 n -0000355180 00000 n +0000138509 00000 n +0000355100 00000 n 0000006738 00000 n 0000006824 00000 n -0000138630 00000 n -0000355087 00000 n +0000138566 00000 n +0000355007 00000 n 0000006881 00000 n 0000006938 00000 n -0000138687 00000 n -0000354994 00000 n +0000138623 00000 n +0000354914 00000 n 0000006995 00000 n 0000007078 00000 n -0000141033 00000 n -0000354901 00000 n +0000140969 00000 n +0000354821 00000 n 0000007135 00000 n 0000007203 00000 n -0000141090 00000 n -0000354808 00000 n +0000141026 00000 n +0000354728 00000 n 0000007260 00000 n 0000007323 00000 n -0000141147 00000 n -0000354715 00000 n +0000141083 00000 n +0000354635 00000 n 0000007380 00000 n 0000007443 00000 n -0000141204 00000 n -0000354622 00000 n +0000141140 00000 n +0000354542 00000 n 0000007501 00000 n 0000007548 00000 n -0000143424 00000 n -0000354529 00000 n +0000143360 00000 n +0000354449 00000 n 0000007606 00000 n 0000007658 00000 n -0000143481 00000 n -0000354436 00000 n +0000143417 00000 n +0000354356 00000 n 0000007716 00000 n 0000007779 00000 n -0000143538 00000 n -0000354343 00000 n +0000143474 00000 n +0000354263 00000 n 0000007837 00000 n 0000007898 00000 n -0000146630 00000 n -0000354250 00000 n +0000146566 00000 n +0000354170 00000 n 0000007956 00000 n 0000008003 00000 n -0000146687 00000 n -0000354157 00000 n +0000146623 00000 n +0000354077 00000 n 0000008061 00000 n 0000008114 00000 n -0000149426 00000 n -0000354064 00000 n +0000149362 00000 n +0000353984 00000 n 0000008172 00000 n 0000008231 00000 n -0000149482 00000 n -0000353985 00000 n +0000149418 00000 n +0000353905 00000 n 0000008289 00000 n 0000008333 00000 n -0000152249 00000 n -0000353854 00000 n +0000152185 00000 n +0000353774 00000 n 0000008386 00000 n 0000008417 00000 n -0000152306 00000 n -0000353775 00000 n +0000152242 00000 n +0000353695 00000 n 0000008475 00000 n 0000008519 00000 n -0000155021 00000 n -0000353696 00000 n +0000154957 00000 n +0000353616 00000 n 0000008577 00000 n 0000008622 00000 n -0000155078 00000 n -0000353565 00000 n +0000155014 00000 n +0000353485 00000 n 0000008675 00000 n 0000008726 00000 n -0000155135 00000 n -0000353500 00000 n +0000155071 00000 n +0000353420 00000 n 0000008784 00000 n 0000008848 00000 n -0000158437 00000 n -0000353369 00000 n +0000158373 00000 n +0000353289 00000 n 0000008901 00000 n 0000008939 00000 n -0000158494 00000 n -0000353290 00000 n +0000158430 00000 n +0000353210 00000 n 0000008997 00000 n 0000009067 00000 n -0000158551 00000 n -0000353211 00000 n +0000158487 00000 n +0000353131 00000 n 0000009125 00000 n 0000009195 00000 n -0000161585 00000 n -0000353080 00000 n +0000161521 00000 n +0000353000 00000 n 0000009248 00000 n 0000009293 00000 n -0000161642 00000 n -0000353001 00000 n +0000161578 00000 n +0000352921 00000 n 0000009351 00000 n 0000009409 00000 n -0000164760 00000 n -0000352922 00000 n +0000164696 00000 n +0000352842 00000 n 0000009467 00000 n 0000009544 00000 n -0000173337 00000 n -0000352791 00000 n +0000173273 00000 n +0000352711 00000 n 0000009597 00000 n 0000009640 00000 n -0000173394 00000 n -0000352712 00000 n +0000173330 00000 n +0000352632 00000 n 0000009698 00000 n 0000009751 00000 n -0000173451 00000 n -0000352619 00000 n +0000173387 00000 n +0000352539 00000 n 0000009809 00000 n 0000009863 00000 n -0000173508 00000 n -0000352526 00000 n +0000173444 00000 n +0000352446 00000 n 0000009921 00000 n 0000009970 00000 n -0000173565 00000 n -0000352447 00000 n +0000173501 00000 n +0000352367 00000 n 0000010028 00000 n 0000010075 00000 n -0000176142 00000 n -0000352316 00000 n +0000176078 00000 n +0000352236 00000 n 0000010128 00000 n 0000010155 00000 n -0000176199 00000 n -0000352237 00000 n +0000176135 00000 n +0000352157 00000 n 0000010213 00000 n 0000010272 00000 n -0000176256 00000 n -0000352144 00000 n +0000176192 00000 n +0000352064 00000 n 0000010330 00000 n 0000010394 00000 n -0000176313 00000 n -0000352051 00000 n +0000176249 00000 n +0000351971 00000 n 0000010452 00000 n 0000010490 00000 n -0000176370 00000 n -0000351958 00000 n +0000176306 00000 n +0000351878 00000 n 0000010548 00000 n 0000010612 00000 n -0000176427 00000 n -0000351865 00000 n +0000176363 00000 n +0000351785 00000 n 0000010670 00000 n 0000010715 00000 n -0000179222 00000 n -0000351772 00000 n +0000179150 00000 n +0000351692 00000 n 0000010773 00000 n 0000010806 00000 n -0000179279 00000 n -0000351679 00000 n +0000179207 00000 n +0000351599 00000 n 0000010864 00000 n 0000010924 00000 n -0000179335 00000 n -0000351600 00000 n +0000179263 00000 n +0000351520 00000 n 0000010982 00000 n 0000011029 00000 n -0000182166 00000 n -0000351482 00000 n +0000182094 00000 n +0000351402 00000 n 0000011082 00000 n 0000011115 00000 n -0000182223 00000 n -0000351403 00000 n +0000182151 00000 n +0000351323 00000 n 0000011173 00000 n 0000011231 00000 n -0000182280 00000 n -0000351310 00000 n +0000182208 00000 n +0000351230 00000 n 0000011289 00000 n 0000011352 00000 n -0000182337 00000 n -0000351217 00000 n +0000182265 00000 n +0000351137 00000 n 0000011410 00000 n 0000011491 00000 n -0000182394 00000 n -0000351124 00000 n +0000182322 00000 n +0000351044 00000 n 0000011549 00000 n 0000011603 00000 n -0000182451 00000 n -0000351031 00000 n +0000182379 00000 n +0000350951 00000 n 0000011661 00000 n 0000011731 00000 n -0000182508 00000 n -0000350938 00000 n +0000182436 00000 n +0000350858 00000 n 0000011789 00000 n 0000011827 00000 n -0000185640 00000 n -0000350845 00000 n +0000185560 00000 n +0000350765 00000 n 0000011885 00000 n 0000011953 00000 n -0000185697 00000 n -0000350752 00000 n +0000185617 00000 n +0000350672 00000 n 0000012011 00000 n 0000012076 00000 n -0000185754 00000 n -0000350659 00000 n +0000185674 00000 n +0000350579 00000 n 0000012134 00000 n 0000012199 00000 n -0000185811 00000 n -0000350580 00000 n +0000185731 00000 n +0000350500 00000 n 0000012258 00000 n 0000012320 00000 n -0000185868 00000 n -0000350487 00000 n +0000185788 00000 n +0000350407 00000 n 0000012367 00000 n 0000012408 00000 n -0000185925 00000 n -0000350393 00000 n +0000185845 00000 n +0000350313 00000 n 0000012455 00000 n 0000012485 00000 n -0000187519 00000 n -0000350313 00000 n +0000187439 00000 n +0000350233 00000 n 0000012532 00000 n 0000012559 00000 n 0000013939 00000 n 0000014310 00000 n 0000014488 00000 n 0000014669 00000 n -0000014846 00000 n -0000014997 00000 n -0000015153 00000 n -0000015308 00000 n -0000015470 00000 n -0000015632 00000 n -0000015788 00000 n -0000015944 00000 n -0000016094 00000 n -0000016250 00000 n -0000016406 00000 n -0000016561 00000 n -0000016712 00000 n -0000016868 00000 n -0000017024 00000 n -0000017180 00000 n -0000017336 00000 n -0000017492 00000 n -0000017648 00000 n -0000017799 00000 n -0000017950 00000 n -0000018106 00000 n -0000018260 00000 n -0000018421 00000 n -0000018583 00000 n -0000018745 00000 n -0000018907 00000 n -0000021414 00000 n -0000019236 00000 n +0000014838 00000 n +0000014989 00000 n +0000015145 00000 n +0000015300 00000 n +0000015462 00000 n +0000015624 00000 n +0000015780 00000 n +0000015936 00000 n +0000016086 00000 n +0000016242 00000 n +0000016398 00000 n +0000016553 00000 n +0000016704 00000 n +0000016860 00000 n +0000017016 00000 n +0000017172 00000 n +0000017328 00000 n +0000017484 00000 n +0000017640 00000 n +0000017791 00000 n +0000017942 00000 n +0000018098 00000 n +0000018252 00000 n +0000018413 00000 n +0000018575 00000 n +0000018737 00000 n +0000018899 00000 n +0000021406 00000 n +0000019228 00000 n 0000012611 00000 n -0000019066 00000 n -0000019122 00000 n -0000333162 00000 n -0000327310 00000 n -0000304685 00000 n -0000298839 00000 n -0000019179 00000 n -0000285826 00000 n -0000349020 00000 n -0000021570 00000 n -0000021731 00000 n -0000021892 00000 n -0000022054 00000 n -0000022216 00000 n -0000022378 00000 n -0000022540 00000 n -0000022701 00000 n -0000022862 00000 n -0000023024 00000 n -0000023187 00000 n -0000023350 00000 n -0000023512 00000 n -0000023675 00000 n -0000023831 00000 n -0000023992 00000 n -0000024154 00000 n -0000024316 00000 n -0000024478 00000 n -0000024640 00000 n -0000024795 00000 n -0000024955 00000 n -0000025117 00000 n -0000025279 00000 n -0000025441 00000 n -0000025603 00000 n -0000025765 00000 n -0000025921 00000 n -0000026082 00000 n -0000026243 00000 n -0000026405 00000 n -0000026561 00000 n -0000026723 00000 n -0000026885 00000 n -0000027047 00000 n -0000027208 00000 n -0000029518 00000 n -0000027417 00000 n -0000020987 00000 n -0000019360 00000 n -0000027361 00000 n -0000263762 00000 n -0000029680 00000 n -0000029836 00000 n -0000029998 00000 n -0000030160 00000 n -0000030321 00000 n -0000030483 00000 n -0000030645 00000 n -0000030806 00000 n -0000030968 00000 n -0000031130 00000 n -0000031292 00000 n -0000031455 00000 n -0000031617 00000 n -0000031780 00000 n -0000031943 00000 n -0000032104 00000 n -0000032267 00000 n -0000032430 00000 n -0000032593 00000 n -0000032750 00000 n -0000032912 00000 n -0000033074 00000 n -0000033231 00000 n -0000033392 00000 n -0000033548 00000 n -0000033711 00000 n -0000033874 00000 n -0000034030 00000 n -0000034191 00000 n -0000034354 00000 n -0000034511 00000 n -0000034674 00000 n -0000034837 00000 n -0000035000 00000 n -0000035163 00000 n -0000035319 00000 n -0000038179 00000 n -0000035536 00000 n -0000029091 00000 n -0000027515 00000 n -0000035480 00000 n -0000038341 00000 n -0000038504 00000 n -0000038667 00000 n -0000038830 00000 n -0000038993 00000 n -0000039156 00000 n -0000039319 00000 n -0000039475 00000 n -0000039638 00000 n -0000039801 00000 n -0000039964 00000 n -0000040127 00000 n -0000040288 00000 n -0000040451 00000 n -0000040614 00000 n -0000040776 00000 n -0000040939 00000 n -0000041103 00000 n -0000041254 00000 n -0000041404 00000 n -0000041554 00000 n -0000041720 00000 n -0000044706 00000 n -0000044875 00000 n -0000045054 00000 n -0000042061 00000 n -0000037864 00000 n -0000035621 00000 n -0000041895 00000 n -0000242058 00000 n -0000045292 00000 n -0000045475 00000 n -0000045652 00000 n -0000045830 00000 n -0000046013 00000 n -0000046194 00000 n -0000046367 00000 n -0000046546 00000 n -0000046725 00000 n -0000046909 00000 n -0000047080 00000 n -0000047274 00000 n -0000047466 00000 n -0000051580 00000 n -0000051748 00000 n -0000051957 00000 n -0000047811 00000 n -0000044447 00000 n -0000042172 00000 n -0000047643 00000 n -0000348875 00000 n -0000224310 00000 n -0000052175 00000 n -0000052475 00000 n -0000051417 00000 n -0000047948 00000 n -0000052363 00000 n -0000201413 00000 n -0000055983 00000 n -0000056392 00000 n -0000055844 00000 n -0000052612 00000 n -0000056168 00000 n -0000349138 00000 n -0000060150 00000 n -0000060327 00000 n -0000060538 00000 n -0000060818 00000 n -0000059995 00000 n -0000056542 00000 n -0000060706 00000 n -0000064180 00000 n -0000064348 00000 n -0000064524 00000 n -0000064757 00000 n -0000064989 00000 n -0000065218 00000 n -0000065448 00000 n -0000065956 00000 n -0000066369 00000 n -0000063977 00000 n -0000060942 00000 n -0000066202 00000 n -0000348731 00000 n -0000065702 00000 n -0000069667 00000 n -0000069879 00000 n -0000070091 00000 n -0000070309 00000 n -0000070521 00000 n -0000070710 00000 n -0000074947 00000 n -0000075165 00000 n -0000071122 00000 n -0000069488 00000 n -0000066506 00000 n -0000070898 00000 n -0000075353 00000 n -0000075534 00000 n -0000075713 00000 n -0000075899 00000 n -0000076127 00000 n -0000076308 00000 n -0000076499 00000 n -0000076675 00000 n -0000076906 00000 n -0000077152 00000 n -0000077594 00000 n -0000077774 00000 n -0000077992 00000 n -0000078173 00000 n -0000078594 00000 n -0000078762 00000 n -0000079220 00000 n -0000083205 00000 n -0000083424 00000 n -0000083666 00000 n -0000083921 00000 n -0000079542 00000 n -0000074640 00000 n -0000071259 00000 n -0000079430 00000 n -0000077374 00000 n -0000078385 00000 n -0000078991 00000 n -0000084353 00000 n -0000084563 00000 n -0000084775 00000 n -0000084994 00000 n -0000085202 00000 n -0000085432 00000 n -0000085601 00000 n -0000085790 00000 n -0000085971 00000 n -0000088620 00000 n -0000086351 00000 n -0000082962 00000 n -0000079666 00000 n -0000086183 00000 n -0000084138 00000 n -0000088813 00000 n -0000089048 00000 n -0000089230 00000 n -0000089407 00000 n -0000089797 00000 n -0000089990 00000 n -0000090193 00000 n -0000090393 00000 n -0000090584 00000 n -0000090986 00000 n -0000088401 00000 n -0000086475 00000 n -0000090763 00000 n -0000089603 00000 n -0000349256 00000 n -0000093146 00000 n -0000092971 00000 n -0000091123 00000 n -0000093090 00000 n -0000095034 00000 n -0000094859 00000 n -0000093244 00000 n -0000094978 00000 n -0000096723 00000 n -0000096548 00000 n -0000095132 00000 n -0000096667 00000 n -0000099198 00000 n -0000098912 00000 n -0000096821 00000 n -0000099031 00000 n -0000101331 00000 n -0000101508 00000 n -0000102113 00000 n -0000101184 00000 n -0000099335 00000 n -0000101719 00000 n -0000105255 00000 n -0000104910 00000 n -0000102237 00000 n -0000105029 00000 n -0000349374 00000 n -0000108069 00000 n -0000107723 00000 n -0000105379 00000 n -0000107842 00000 n -0000110831 00000 n -0000111005 00000 n -0000111573 00000 n -0000110684 00000 n -0000108193 00000 n -0000111175 00000 n -0000114293 00000 n -0000113890 00000 n -0000111671 00000 n -0000114009 00000 n -0000117202 00000 n -0000117590 00000 n -0000118120 00000 n -0000117047 00000 n -0000114443 00000 n -0000117779 00000 n -0000117397 00000 n -0000120564 00000 n -0000120939 00000 n -0000120425 00000 n -0000118257 00000 n -0000120769 00000 n -0000123587 00000 n -0000123299 00000 n -0000121076 00000 n -0000123418 00000 n -0000349492 00000 n -0000126123 00000 n -0000125891 00000 n -0000123711 00000 n -0000126010 00000 n -0000129589 00000 n -0000129186 00000 n -0000126247 00000 n -0000129305 00000 n -0000132957 00000 n -0000132611 00000 n -0000129713 00000 n -0000132730 00000 n -0000136323 00000 n -0000135807 00000 n -0000133081 00000 n -0000135926 00000 n -0000138744 00000 n -0000138284 00000 n -0000136434 00000 n -0000138403 00000 n -0000141261 00000 n -0000140858 00000 n -0000138855 00000 n -0000140977 00000 n -0000349610 00000 n -0000143594 00000 n -0000143249 00000 n -0000141372 00000 n -0000143368 00000 n -0000146744 00000 n -0000146455 00000 n -0000143705 00000 n -0000146574 00000 n -0000149539 00000 n -0000149251 00000 n -0000146855 00000 n -0000149370 00000 n -0000152363 00000 n -0000152074 00000 n -0000149676 00000 n -0000152193 00000 n -0000157620 00000 n -0000155192 00000 n -0000154846 00000 n -0000152513 00000 n -0000154965 00000 n -0000157874 00000 n -0000158128 00000 n -0000158608 00000 n -0000157465 00000 n -0000155342 00000 n -0000158381 00000 n -0000349728 00000 n -0000161275 00000 n -0000161698 00000 n -0000161136 00000 n -0000158732 00000 n -0000161529 00000 n -0000167514 00000 n -0000164817 00000 n -0000164585 00000 n -0000161835 00000 n -0000164704 00000 n -0000167722 00000 n -0000168143 00000 n -0000168398 00000 n -0000168700 00000 n -0000167343 00000 n -0000164941 00000 n -0000168644 00000 n -0000167933 00000 n -0000170497 00000 n -0000170322 00000 n -0000168824 00000 n -0000170441 00000 n -0000172853 00000 n -0000173071 00000 n -0000173622 00000 n -0000172706 00000 n -0000170595 00000 n -0000173281 00000 n -0000176484 00000 n -0000175967 00000 n -0000173746 00000 n -0000176086 00000 n -0000349846 00000 n -0000178985 00000 n -0000179392 00000 n -0000178846 00000 n -0000176621 00000 n -0000179166 00000 n -0000181943 00000 n -0000182565 00000 n -0000181804 00000 n -0000179503 00000 n -0000182110 00000 n -0000185194 00000 n -0000185395 00000 n -0000186689 00000 n -0000186868 00000 n -0000185982 00000 n -0000185047 00000 n -0000182702 00000 n -0000185584 00000 n -0000187076 00000 n -0000187256 00000 n -0000187576 00000 n -0000186526 00000 n -0000186106 00000 n -0000187463 00000 n -0000187674 00000 n -0000187709 00000 n -0000187994 00000 n -0000188269 00000 n -0000188449 00000 n -0000188682 00000 n -0000188880 00000 n -0000189072 00000 n -0000189434 00000 n -0000189744 00000 n -0000190044 00000 n -0000190400 00000 n -0000190730 00000 n -0000191056 00000 n -0000191407 00000 n -0000191691 00000 n -0000192063 00000 n -0000192410 00000 n -0000192816 00000 n -0000193152 00000 n -0000193447 00000 n -0000193781 00000 n -0000194074 00000 n -0000194368 00000 n -0000194635 00000 n -0000194953 00000 n -0000195227 00000 n -0000195524 00000 n -0000195841 00000 n -0000196151 00000 n -0000196419 00000 n -0000196715 00000 n -0000197044 00000 n -0000197297 00000 n -0000197644 00000 n -0000197950 00000 n -0000198221 00000 n -0000198540 00000 n -0000198830 00000 n -0000199093 00000 n -0000199374 00000 n -0000199633 00000 n -0000199930 00000 n -0000200216 00000 n -0000200535 00000 n -0000200832 00000 n -0000201156 00000 n -0000201664 00000 n -0000202049 00000 n -0000202522 00000 n -0000203165 00000 n -0000203424 00000 n -0000203680 00000 n -0000203931 00000 n -0000204107 00000 n -0000204357 00000 n -0000204550 00000 n -0000204743 00000 n -0000204969 00000 n -0000205152 00000 n -0000205347 00000 n -0000205565 00000 n -0000205806 00000 n -0000206001 00000 n -0000206210 00000 n -0000206389 00000 n -0000206619 00000 n -0000206808 00000 n -0000207033 00000 n -0000207219 00000 n -0000207404 00000 n -0000207599 00000 n -0000207832 00000 n -0000208148 00000 n -0000208443 00000 n -0000208700 00000 n -0000208957 00000 n -0000209220 00000 n -0000209496 00000 n -0000209751 00000 n -0000209981 00000 n -0000210209 00000 n -0000210489 00000 n -0000210692 00000 n -0000210883 00000 n -0000211181 00000 n -0000211393 00000 n -0000211648 00000 n -0000211913 00000 n -0000212152 00000 n -0000212404 00000 n -0000212672 00000 n -0000212943 00000 n -0000213232 00000 n -0000213443 00000 n -0000213690 00000 n -0000213944 00000 n -0000214208 00000 n -0000214499 00000 n -0000214764 00000 n -0000215024 00000 n -0000215287 00000 n -0000215555 00000 n -0000215808 00000 n -0000216081 00000 n -0000216341 00000 n -0000216573 00000 n -0000216890 00000 n -0000217129 00000 n -0000217345 00000 n -0000217580 00000 n -0000217864 00000 n -0000218062 00000 n -0000218304 00000 n -0000218534 00000 n -0000218784 00000 n -0000219061 00000 n -0000219337 00000 n -0000219574 00000 n -0000219834 00000 n -0000220058 00000 n -0000220277 00000 n -0000220529 00000 n -0000220779 00000 n -0000221046 00000 n -0000221339 00000 n -0000221579 00000 n -0000221851 00000 n -0000222067 00000 n -0000222351 00000 n -0000222642 00000 n -0000222906 00000 n -0000223176 00000 n -0000223474 00000 n -0000223734 00000 n -0000224014 00000 n -0000224564 00000 n -0000225113 00000 n -0000225625 00000 n -0000226866 00000 n -0000226890 00000 n -0000227077 00000 n -0000227255 00000 n -0000227524 00000 n -0000227841 00000 n -0000228152 00000 n -0000228442 00000 n -0000228697 00000 n -0000229079 00000 n -0000229265 00000 n -0000229625 00000 n -0000229993 00000 n -0000230326 00000 n -0000230712 00000 n -0000230956 00000 n -0000231246 00000 n -0000231706 00000 n -0000232020 00000 n -0000232331 00000 n -0000232627 00000 n -0000232930 00000 n -0000233238 00000 n -0000233487 00000 n -0000233850 00000 n -0000234099 00000 n -0000234312 00000 n -0000234580 00000 n -0000234882 00000 n -0000235071 00000 n -0000235362 00000 n -0000235606 00000 n -0000235901 00000 n -0000236210 00000 n -0000236529 00000 n -0000236772 00000 n -0000237077 00000 n -0000237332 00000 n -0000237580 00000 n -0000237878 00000 n -0000238236 00000 n -0000238585 00000 n -0000238875 00000 n -0000239168 00000 n -0000239376 00000 n -0000239724 00000 n -0000240064 00000 n -0000240362 00000 n -0000240697 00000 n -0000241043 00000 n -0000241339 00000 n -0000241711 00000 n -0000242313 00000 n -0000242730 00000 n -0000243170 00000 n -0000243930 00000 n -0000244204 00000 n -0000244473 00000 n -0000244669 00000 n -0000244867 00000 n -0000245053 00000 n -0000245306 00000 n -0000245524 00000 n -0000245705 00000 n -0000245944 00000 n -0000246133 00000 n -0000246370 00000 n -0000246562 00000 n -0000246747 00000 n -0000246932 00000 n -0000247182 00000 n -0000247503 00000 n -0000247848 00000 n -0000248121 00000 n -0000248387 00000 n -0000248659 00000 n -0000248959 00000 n -0000249224 00000 n -0000249453 00000 n -0000249680 00000 n -0000249989 00000 n -0000250191 00000 n -0000250381 00000 n -0000250619 00000 n -0000250919 00000 n -0000251124 00000 n -0000251383 00000 n -0000251659 00000 n -0000251911 00000 n -0000252167 00000 n -0000252458 00000 n -0000252737 00000 n -0000253055 00000 n -0000253261 00000 n -0000253510 00000 n -0000253781 00000 n -0000254060 00000 n -0000254334 00000 n -0000254607 00000 n -0000254876 00000 n -0000255140 00000 n -0000255415 00000 n -0000255698 00000 n -0000255934 00000 n -0000256269 00000 n -0000256512 00000 n -0000256726 00000 n -0000256977 00000 n -0000257257 00000 n -0000257454 00000 n -0000257707 00000 n -0000257944 00000 n -0000258209 00000 n -0000258491 00000 n -0000258784 00000 n -0000259024 00000 n -0000259291 00000 n -0000259528 00000 n -0000259758 00000 n -0000260026 00000 n -0000260282 00000 n -0000260566 00000 n -0000260885 00000 n -0000261143 00000 n -0000261428 00000 n -0000261651 00000 n -0000261955 00000 n -0000262263 00000 n -0000262552 00000 n -0000262875 00000 n -0000263140 00000 n -0000263435 00000 n -0000264016 00000 n -0000264549 00000 n -0000265106 00000 n -0000266231 00000 n -0000266513 00000 n -0000266791 00000 n -0000267014 00000 n -0000267239 00000 n -0000267423 00000 n -0000267616 00000 n -0000267794 00000 n -0000267969 00000 n -0000268221 00000 n -0000268489 00000 n -0000268726 00000 n -0000269022 00000 n -0000269432 00000 n -0000269770 00000 n -0000270060 00000 n -0000270405 00000 n -0000270683 00000 n -0000270949 00000 n -0000271190 00000 n -0000271534 00000 n -0000271738 00000 n -0000271921 00000 n -0000272170 00000 n -0000272515 00000 n -0000272735 00000 n -0000273070 00000 n -0000273413 00000 n -0000273744 00000 n -0000273991 00000 n -0000274390 00000 n -0000274705 00000 n -0000275050 00000 n -0000275284 00000 n -0000275562 00000 n -0000275989 00000 n -0000276270 00000 n -0000276543 00000 n -0000276809 00000 n -0000277087 00000 n -0000277360 00000 n -0000277597 00000 n -0000277943 00000 n -0000278182 00000 n -0000278386 00000 n -0000278641 00000 n -0000278921 00000 n -0000279108 00000 n -0000279378 00000 n -0000279611 00000 n -0000279869 00000 n -0000280143 00000 n -0000280425 00000 n -0000280651 00000 n -0000280920 00000 n -0000281152 00000 n -0000281383 00000 n -0000281664 00000 n -0000281982 00000 n -0000282278 00000 n -0000282605 00000 n -0000282887 00000 n -0000283157 00000 n -0000283361 00000 n -0000283674 00000 n -0000283993 00000 n -0000284263 00000 n -0000284574 00000 n -0000284891 00000 n -0000285173 00000 n -0000285507 00000 n -0000286080 00000 n -0000286582 00000 n -0000287045 00000 n -0000288086 00000 n -0000288495 00000 n -0000288915 00000 n -0000289255 00000 n -0000289529 00000 n -0000289734 00000 n -0000289921 00000 n -0000290160 00000 n -0000290475 00000 n -0000290827 00000 n -0000291152 00000 n -0000291487 00000 n -0000291813 00000 n -0000292219 00000 n -0000292487 00000 n -0000292707 00000 n -0000292896 00000 n -0000293210 00000 n -0000293476 00000 n -0000293789 00000 n -0000294126 00000 n -0000294377 00000 n -0000294718 00000 n -0000294986 00000 n -0000295255 00000 n -0000295646 00000 n -0000296038 00000 n -0000296257 00000 n -0000296640 00000 n -0000297027 00000 n -0000297334 00000 n -0000297701 00000 n -0000298097 00000 n -0000298418 00000 n -0000299093 00000 n -0000299400 00000 n -0000299802 00000 n -0000300318 00000 n -0000300502 00000 n -0000300669 00000 n -0000300855 00000 n -0000301120 00000 n -0000301381 00000 n -0000301650 00000 n -0000301925 00000 n -0000302148 00000 n -0000302325 00000 n -0000302496 00000 n -0000302743 00000 n -0000302962 00000 n -0000303234 00000 n -0000303505 00000 n -0000303776 00000 n -0000303991 00000 n -0000304261 00000 n -0000304476 00000 n -0000304938 00000 n -0000305186 00000 n -0000305422 00000 n -0000305726 00000 n -0000305997 00000 n -0000306267 00000 n -0000306452 00000 n -0000306643 00000 n -0000306855 00000 n -0000307068 00000 n -0000307244 00000 n -0000307479 00000 n -0000307662 00000 n -0000307884 00000 n -0000308073 00000 n -0000308249 00000 n -0000308453 00000 n -0000308707 00000 n -0000308964 00000 n -0000309199 00000 n -0000309489 00000 n -0000309901 00000 n -0000310168 00000 n -0000310485 00000 n -0000310776 00000 n -0000311118 00000 n -0000311394 00000 n -0000311657 00000 n -0000311905 00000 n -0000312241 00000 n -0000312448 00000 n -0000312636 00000 n -0000312883 00000 n -0000313208 00000 n -0000313430 00000 n -0000313756 00000 n -0000314081 00000 n -0000314402 00000 n -0000314651 00000 n -0000315042 00000 n -0000315345 00000 n -0000315683 00000 n -0000315915 00000 n -0000316188 00000 n -0000316510 00000 n -0000316899 00000 n -0000317260 00000 n -0000317573 00000 n -0000317859 00000 n -0000318139 00000 n -0000318403 00000 n -0000318683 00000 n -0000318954 00000 n -0000319177 00000 n -0000319496 00000 n -0000319733 00000 n -0000319937 00000 n -0000320169 00000 n -0000320447 00000 n -0000320637 00000 n -0000320896 00000 n -0000321125 00000 n -0000321395 00000 n -0000321673 00000 n -0000321957 00000 n -0000322179 00000 n -0000322456 00000 n -0000322689 00000 n -0000322924 00000 n -0000323189 00000 n -0000323504 00000 n -0000323796 00000 n -0000324097 00000 n -0000324362 00000 n -0000324632 00000 n -0000324835 00000 n -0000325145 00000 n -0000325462 00000 n -0000325732 00000 n -0000326040 00000 n -0000326365 00000 n -0000326644 00000 n -0000326991 00000 n -0000327564 00000 n -0000328093 00000 n -0000328606 00000 n -0000329773 00000 n -0000329975 00000 n -0000330345 00000 n -0000330734 00000 n -0000330911 00000 n -0000331250 00000 n -0000331519 00000 n -0000331895 00000 n -0000332266 00000 n -0000332522 00000 n -0000332894 00000 n -0000333417 00000 n -0000333641 00000 n -0000333829 00000 n -0000334016 00000 n -0000341159 00000 n -0000341394 00000 n -0000348502 00000 n -0000349956 00000 n -0000350076 00000 n -0000350164 00000 n -0000350237 00000 n -0000361690 00000 n -0000361864 00000 n -0000362035 00000 n -0000362204 00000 n -0000362373 00000 n -0000362544 00000 n -0000362714 00000 n -0000362885 00000 n -0000363050 00000 n -0000363233 00000 n -0000363436 00000 n -0000363657 00000 n -0000363881 00000 n -0000364116 00000 n -0000364342 00000 n -0000364595 00000 n -0000364870 00000 n -0000365145 00000 n -0000365420 00000 n -0000365697 00000 n -0000365965 00000 n -0000366236 00000 n -0000366505 00000 n -0000366772 00000 n -0000367039 00000 n -0000367306 00000 n -0000367575 00000 n -0000367850 00000 n -0000368119 00000 n -0000368296 00000 n -0000368414 00000 n -0000368538 00000 n -0000368675 00000 n -0000368817 00000 n -0000368948 00000 n -0000369069 00000 n -0000369109 00000 n -0000369241 00000 n +0000019058 00000 n +0000019114 00000 n +0000333082 00000 n +0000327230 00000 n +0000304605 00000 n +0000298759 00000 n +0000019171 00000 n +0000285746 00000 n +0000348940 00000 n +0000021562 00000 n +0000021723 00000 n +0000021884 00000 n +0000022046 00000 n +0000022208 00000 n +0000022370 00000 n +0000022532 00000 n +0000022693 00000 n +0000022854 00000 n +0000023016 00000 n +0000023179 00000 n +0000023342 00000 n +0000023504 00000 n +0000023667 00000 n +0000023823 00000 n +0000023984 00000 n +0000024146 00000 n +0000024308 00000 n +0000024470 00000 n +0000024632 00000 n +0000024787 00000 n +0000024947 00000 n +0000025109 00000 n +0000025271 00000 n +0000025433 00000 n +0000025595 00000 n +0000025757 00000 n +0000025913 00000 n +0000026074 00000 n +0000026235 00000 n +0000026397 00000 n +0000026553 00000 n +0000026715 00000 n +0000026877 00000 n +0000027039 00000 n +0000027200 00000 n +0000029510 00000 n +0000027409 00000 n +0000020979 00000 n +0000019352 00000 n +0000027353 00000 n +0000263682 00000 n +0000029672 00000 n +0000029828 00000 n +0000029990 00000 n +0000030152 00000 n +0000030313 00000 n +0000030475 00000 n +0000030637 00000 n +0000030798 00000 n +0000030960 00000 n +0000031122 00000 n +0000031284 00000 n +0000031447 00000 n +0000031609 00000 n +0000031772 00000 n +0000031935 00000 n +0000032096 00000 n +0000032259 00000 n +0000032422 00000 n +0000032585 00000 n +0000032742 00000 n +0000032904 00000 n +0000033066 00000 n +0000033223 00000 n +0000033384 00000 n +0000033540 00000 n +0000033703 00000 n +0000033866 00000 n +0000034022 00000 n +0000034183 00000 n +0000034346 00000 n +0000034503 00000 n +0000034666 00000 n +0000034829 00000 n +0000034992 00000 n +0000035155 00000 n +0000035311 00000 n +0000038171 00000 n +0000035528 00000 n +0000029083 00000 n +0000027507 00000 n +0000035472 00000 n +0000038333 00000 n +0000038496 00000 n +0000038659 00000 n +0000038822 00000 n +0000038985 00000 n +0000039148 00000 n +0000039311 00000 n +0000039467 00000 n +0000039630 00000 n +0000039793 00000 n +0000039956 00000 n +0000040119 00000 n +0000040280 00000 n +0000040443 00000 n +0000040606 00000 n +0000040768 00000 n +0000040931 00000 n +0000041095 00000 n +0000041246 00000 n +0000041396 00000 n +0000041546 00000 n +0000041712 00000 n +0000044702 00000 n +0000044871 00000 n +0000045050 00000 n +0000042053 00000 n +0000037856 00000 n +0000035613 00000 n +0000041887 00000 n +0000241978 00000 n +0000045288 00000 n +0000045471 00000 n +0000045648 00000 n +0000045826 00000 n +0000046006 00000 n +0000046187 00000 n +0000046360 00000 n +0000046539 00000 n +0000046718 00000 n +0000046902 00000 n +0000047073 00000 n +0000047267 00000 n +0000047459 00000 n +0000051573 00000 n +0000051741 00000 n +0000051950 00000 n +0000047804 00000 n +0000044443 00000 n +0000042164 00000 n +0000047636 00000 n +0000348795 00000 n +0000224230 00000 n +0000052168 00000 n +0000052468 00000 n +0000051410 00000 n +0000047941 00000 n +0000052356 00000 n +0000201333 00000 n +0000055976 00000 n +0000056385 00000 n +0000055837 00000 n +0000052605 00000 n +0000056161 00000 n +0000349058 00000 n +0000060143 00000 n +0000060320 00000 n +0000060531 00000 n +0000060811 00000 n +0000059988 00000 n +0000056535 00000 n +0000060699 00000 n +0000064173 00000 n +0000064341 00000 n +0000064517 00000 n +0000064750 00000 n +0000064982 00000 n +0000065211 00000 n +0000065441 00000 n +0000065949 00000 n +0000066362 00000 n +0000063970 00000 n +0000060935 00000 n +0000066195 00000 n +0000348651 00000 n +0000065695 00000 n +0000069660 00000 n +0000069872 00000 n +0000070084 00000 n +0000070302 00000 n +0000070514 00000 n +0000070695 00000 n +0000074924 00000 n +0000075142 00000 n +0000071099 00000 n +0000069481 00000 n +0000066499 00000 n +0000070875 00000 n +0000075322 00000 n +0000075503 00000 n +0000075682 00000 n +0000075868 00000 n +0000076096 00000 n +0000076269 00000 n +0000076460 00000 n +0000076636 00000 n +0000076867 00000 n +0000077113 00000 n +0000077555 00000 n +0000077735 00000 n +0000077953 00000 n +0000078134 00000 n +0000078555 00000 n +0000078723 00000 n +0000079181 00000 n +0000083166 00000 n +0000083385 00000 n +0000083627 00000 n +0000083882 00000 n +0000079503 00000 n +0000074617 00000 n +0000071236 00000 n +0000079391 00000 n +0000077335 00000 n +0000078346 00000 n +0000078952 00000 n +0000084314 00000 n +0000084524 00000 n +0000084736 00000 n +0000084955 00000 n +0000085163 00000 n +0000085393 00000 n +0000085562 00000 n +0000085751 00000 n +0000085924 00000 n +0000088568 00000 n +0000086304 00000 n +0000082923 00000 n +0000079627 00000 n +0000086136 00000 n +0000084099 00000 n +0000088761 00000 n +0000088996 00000 n +0000089178 00000 n +0000089355 00000 n +0000089745 00000 n +0000089938 00000 n +0000090141 00000 n +0000090341 00000 n +0000090532 00000 n +0000090926 00000 n +0000088349 00000 n +0000086428 00000 n +0000090703 00000 n +0000089551 00000 n +0000349176 00000 n +0000093086 00000 n +0000092911 00000 n +0000091063 00000 n +0000093030 00000 n +0000094974 00000 n +0000094799 00000 n +0000093184 00000 n +0000094918 00000 n +0000096663 00000 n +0000096488 00000 n +0000095072 00000 n +0000096607 00000 n +0000099138 00000 n +0000098852 00000 n +0000096761 00000 n +0000098971 00000 n +0000101271 00000 n +0000101448 00000 n +0000102053 00000 n +0000101124 00000 n +0000099275 00000 n +0000101659 00000 n +0000105191 00000 n +0000104846 00000 n +0000102177 00000 n +0000104965 00000 n +0000349294 00000 n +0000108005 00000 n +0000107659 00000 n +0000105315 00000 n +0000107778 00000 n +0000110767 00000 n +0000110941 00000 n +0000111509 00000 n +0000110620 00000 n +0000108129 00000 n +0000111111 00000 n +0000114229 00000 n +0000113826 00000 n +0000111607 00000 n +0000113945 00000 n +0000117138 00000 n +0000117526 00000 n +0000118056 00000 n +0000116983 00000 n +0000114379 00000 n +0000117715 00000 n +0000117333 00000 n +0000120500 00000 n +0000120875 00000 n +0000120361 00000 n +0000118193 00000 n +0000120705 00000 n +0000123523 00000 n +0000123235 00000 n +0000121012 00000 n +0000123354 00000 n +0000349412 00000 n +0000126059 00000 n +0000125827 00000 n +0000123647 00000 n +0000125946 00000 n +0000129525 00000 n +0000129122 00000 n +0000126183 00000 n +0000129241 00000 n +0000132893 00000 n +0000132547 00000 n +0000129649 00000 n +0000132666 00000 n +0000136259 00000 n +0000135743 00000 n +0000133017 00000 n +0000135862 00000 n +0000138680 00000 n +0000138220 00000 n +0000136370 00000 n +0000138339 00000 n +0000141197 00000 n +0000140794 00000 n +0000138791 00000 n +0000140913 00000 n +0000349530 00000 n +0000143530 00000 n +0000143185 00000 n +0000141308 00000 n +0000143304 00000 n +0000146680 00000 n +0000146391 00000 n +0000143641 00000 n +0000146510 00000 n +0000149475 00000 n +0000149187 00000 n +0000146791 00000 n +0000149306 00000 n +0000152299 00000 n +0000152010 00000 n +0000149612 00000 n +0000152129 00000 n +0000157556 00000 n +0000155128 00000 n +0000154782 00000 n +0000152449 00000 n +0000154901 00000 n +0000157810 00000 n +0000158064 00000 n +0000158544 00000 n +0000157401 00000 n +0000155278 00000 n +0000158317 00000 n +0000349648 00000 n +0000161211 00000 n +0000161634 00000 n +0000161072 00000 n +0000158668 00000 n +0000161465 00000 n +0000167450 00000 n +0000164753 00000 n +0000164521 00000 n +0000161771 00000 n +0000164640 00000 n +0000167658 00000 n +0000168079 00000 n +0000168334 00000 n +0000168636 00000 n +0000167279 00000 n +0000164877 00000 n +0000168580 00000 n +0000167869 00000 n +0000170433 00000 n +0000170258 00000 n +0000168760 00000 n +0000170377 00000 n +0000172789 00000 n +0000173007 00000 n +0000173558 00000 n +0000172642 00000 n +0000170531 00000 n +0000173217 00000 n +0000176420 00000 n +0000175903 00000 n +0000173682 00000 n +0000176022 00000 n +0000349766 00000 n +0000178921 00000 n +0000179320 00000 n +0000178782 00000 n +0000176557 00000 n +0000179094 00000 n +0000181871 00000 n +0000182493 00000 n +0000181732 00000 n +0000179431 00000 n +0000182038 00000 n +0000185122 00000 n +0000185323 00000 n +0000186609 00000 n +0000186788 00000 n +0000185902 00000 n +0000184975 00000 n +0000182630 00000 n +0000185504 00000 n +0000186996 00000 n +0000187176 00000 n +0000187496 00000 n +0000186446 00000 n +0000186026 00000 n +0000187383 00000 n +0000187594 00000 n +0000187629 00000 n +0000187914 00000 n +0000188189 00000 n +0000188369 00000 n +0000188602 00000 n +0000188800 00000 n +0000188992 00000 n +0000189354 00000 n +0000189664 00000 n +0000189964 00000 n +0000190320 00000 n +0000190650 00000 n +0000190976 00000 n +0000191327 00000 n +0000191611 00000 n +0000191983 00000 n +0000192330 00000 n +0000192736 00000 n +0000193072 00000 n +0000193367 00000 n +0000193701 00000 n +0000193994 00000 n +0000194288 00000 n +0000194555 00000 n +0000194873 00000 n +0000195147 00000 n +0000195444 00000 n +0000195761 00000 n +0000196071 00000 n +0000196339 00000 n +0000196635 00000 n +0000196964 00000 n +0000197217 00000 n +0000197564 00000 n +0000197870 00000 n +0000198141 00000 n +0000198460 00000 n +0000198750 00000 n +0000199013 00000 n +0000199294 00000 n +0000199553 00000 n +0000199850 00000 n +0000200136 00000 n +0000200455 00000 n +0000200752 00000 n +0000201076 00000 n +0000201584 00000 n +0000201969 00000 n +0000202442 00000 n +0000203085 00000 n +0000203344 00000 n +0000203600 00000 n +0000203851 00000 n +0000204027 00000 n +0000204277 00000 n +0000204470 00000 n +0000204663 00000 n +0000204889 00000 n +0000205072 00000 n +0000205267 00000 n +0000205485 00000 n +0000205726 00000 n +0000205921 00000 n +0000206130 00000 n +0000206309 00000 n +0000206539 00000 n +0000206728 00000 n +0000206953 00000 n +0000207139 00000 n +0000207324 00000 n +0000207519 00000 n +0000207752 00000 n +0000208068 00000 n +0000208363 00000 n +0000208620 00000 n +0000208877 00000 n +0000209140 00000 n +0000209416 00000 n +0000209671 00000 n +0000209901 00000 n +0000210129 00000 n +0000210409 00000 n +0000210612 00000 n +0000210803 00000 n +0000211101 00000 n +0000211313 00000 n +0000211568 00000 n +0000211833 00000 n +0000212072 00000 n +0000212324 00000 n +0000212592 00000 n +0000212863 00000 n +0000213152 00000 n +0000213363 00000 n +0000213610 00000 n +0000213864 00000 n +0000214128 00000 n +0000214419 00000 n +0000214684 00000 n +0000214944 00000 n +0000215207 00000 n +0000215475 00000 n +0000215728 00000 n +0000216001 00000 n +0000216261 00000 n +0000216493 00000 n +0000216810 00000 n +0000217049 00000 n +0000217265 00000 n +0000217500 00000 n +0000217784 00000 n +0000217982 00000 n +0000218224 00000 n +0000218454 00000 n +0000218704 00000 n +0000218981 00000 n +0000219257 00000 n +0000219494 00000 n +0000219754 00000 n +0000219978 00000 n +0000220197 00000 n +0000220449 00000 n +0000220699 00000 n +0000220966 00000 n +0000221259 00000 n +0000221499 00000 n +0000221771 00000 n +0000221987 00000 n +0000222271 00000 n +0000222562 00000 n +0000222826 00000 n +0000223096 00000 n +0000223394 00000 n +0000223654 00000 n +0000223934 00000 n +0000224484 00000 n +0000225033 00000 n +0000225545 00000 n +0000226786 00000 n +0000226810 00000 n +0000226997 00000 n +0000227175 00000 n +0000227444 00000 n +0000227761 00000 n +0000228072 00000 n +0000228362 00000 n +0000228617 00000 n +0000228999 00000 n +0000229185 00000 n +0000229545 00000 n +0000229913 00000 n +0000230246 00000 n +0000230632 00000 n +0000230876 00000 n +0000231166 00000 n +0000231626 00000 n +0000231940 00000 n +0000232251 00000 n +0000232547 00000 n +0000232850 00000 n +0000233158 00000 n +0000233407 00000 n +0000233770 00000 n +0000234019 00000 n +0000234232 00000 n +0000234500 00000 n +0000234802 00000 n +0000234991 00000 n +0000235282 00000 n +0000235526 00000 n +0000235821 00000 n +0000236130 00000 n +0000236449 00000 n +0000236692 00000 n +0000236997 00000 n +0000237252 00000 n +0000237500 00000 n +0000237798 00000 n +0000238156 00000 n +0000238505 00000 n +0000238795 00000 n +0000239088 00000 n +0000239296 00000 n +0000239644 00000 n +0000239984 00000 n +0000240282 00000 n +0000240617 00000 n +0000240963 00000 n +0000241259 00000 n +0000241631 00000 n +0000242233 00000 n +0000242650 00000 n +0000243090 00000 n +0000243850 00000 n +0000244124 00000 n +0000244393 00000 n +0000244589 00000 n +0000244787 00000 n +0000244973 00000 n +0000245226 00000 n +0000245444 00000 n +0000245625 00000 n +0000245864 00000 n +0000246053 00000 n +0000246290 00000 n +0000246482 00000 n +0000246667 00000 n +0000246852 00000 n +0000247102 00000 n +0000247423 00000 n +0000247768 00000 n +0000248041 00000 n +0000248307 00000 n +0000248579 00000 n +0000248879 00000 n +0000249144 00000 n +0000249373 00000 n +0000249600 00000 n +0000249909 00000 n +0000250111 00000 n +0000250301 00000 n +0000250539 00000 n +0000250839 00000 n +0000251044 00000 n +0000251303 00000 n +0000251579 00000 n +0000251831 00000 n +0000252087 00000 n +0000252378 00000 n +0000252657 00000 n +0000252975 00000 n +0000253181 00000 n +0000253430 00000 n +0000253701 00000 n +0000253980 00000 n +0000254254 00000 n +0000254527 00000 n +0000254796 00000 n +0000255060 00000 n +0000255335 00000 n +0000255618 00000 n +0000255854 00000 n +0000256189 00000 n +0000256432 00000 n +0000256646 00000 n +0000256897 00000 n +0000257177 00000 n +0000257374 00000 n +0000257627 00000 n +0000257864 00000 n +0000258129 00000 n +0000258411 00000 n +0000258704 00000 n +0000258944 00000 n +0000259211 00000 n +0000259448 00000 n +0000259678 00000 n +0000259946 00000 n +0000260202 00000 n +0000260486 00000 n +0000260805 00000 n +0000261063 00000 n +0000261348 00000 n +0000261571 00000 n +0000261875 00000 n +0000262183 00000 n +0000262472 00000 n +0000262795 00000 n +0000263060 00000 n +0000263355 00000 n +0000263936 00000 n +0000264469 00000 n +0000265026 00000 n +0000266151 00000 n +0000266433 00000 n +0000266711 00000 n +0000266934 00000 n +0000267159 00000 n +0000267343 00000 n +0000267536 00000 n +0000267714 00000 n +0000267889 00000 n +0000268141 00000 n +0000268409 00000 n +0000268646 00000 n +0000268942 00000 n +0000269352 00000 n +0000269690 00000 n +0000269980 00000 n +0000270325 00000 n +0000270603 00000 n +0000270869 00000 n +0000271110 00000 n +0000271454 00000 n +0000271658 00000 n +0000271841 00000 n +0000272090 00000 n +0000272435 00000 n +0000272655 00000 n +0000272990 00000 n +0000273333 00000 n +0000273664 00000 n +0000273911 00000 n +0000274310 00000 n +0000274625 00000 n +0000274970 00000 n +0000275204 00000 n +0000275482 00000 n +0000275909 00000 n +0000276190 00000 n +0000276463 00000 n +0000276729 00000 n +0000277007 00000 n +0000277280 00000 n +0000277517 00000 n +0000277863 00000 n +0000278102 00000 n +0000278306 00000 n +0000278561 00000 n +0000278841 00000 n +0000279028 00000 n +0000279298 00000 n +0000279531 00000 n +0000279789 00000 n +0000280063 00000 n +0000280345 00000 n +0000280571 00000 n +0000280840 00000 n +0000281072 00000 n +0000281303 00000 n +0000281584 00000 n +0000281902 00000 n +0000282198 00000 n +0000282525 00000 n +0000282807 00000 n +0000283077 00000 n +0000283281 00000 n +0000283594 00000 n +0000283913 00000 n +0000284183 00000 n +0000284494 00000 n +0000284811 00000 n +0000285093 00000 n +0000285427 00000 n +0000286000 00000 n +0000286502 00000 n +0000286965 00000 n +0000288006 00000 n +0000288415 00000 n +0000288835 00000 n +0000289175 00000 n +0000289449 00000 n +0000289654 00000 n +0000289841 00000 n +0000290080 00000 n +0000290395 00000 n +0000290747 00000 n +0000291072 00000 n +0000291407 00000 n +0000291733 00000 n +0000292139 00000 n +0000292407 00000 n +0000292627 00000 n +0000292816 00000 n +0000293130 00000 n +0000293396 00000 n +0000293709 00000 n +0000294046 00000 n +0000294297 00000 n +0000294638 00000 n +0000294906 00000 n +0000295175 00000 n +0000295566 00000 n +0000295958 00000 n +0000296177 00000 n +0000296560 00000 n +0000296947 00000 n +0000297254 00000 n +0000297621 00000 n +0000298017 00000 n +0000298338 00000 n +0000299013 00000 n +0000299320 00000 n +0000299722 00000 n +0000300238 00000 n +0000300422 00000 n +0000300589 00000 n +0000300775 00000 n +0000301040 00000 n +0000301301 00000 n +0000301570 00000 n +0000301845 00000 n +0000302068 00000 n +0000302245 00000 n +0000302416 00000 n +0000302663 00000 n +0000302882 00000 n +0000303154 00000 n +0000303425 00000 n +0000303696 00000 n +0000303911 00000 n +0000304181 00000 n +0000304396 00000 n +0000304858 00000 n +0000305106 00000 n +0000305342 00000 n +0000305646 00000 n +0000305917 00000 n +0000306187 00000 n +0000306372 00000 n +0000306563 00000 n +0000306775 00000 n +0000306988 00000 n +0000307164 00000 n +0000307399 00000 n +0000307582 00000 n +0000307804 00000 n +0000307993 00000 n +0000308169 00000 n +0000308373 00000 n +0000308627 00000 n +0000308884 00000 n +0000309119 00000 n +0000309409 00000 n +0000309821 00000 n +0000310088 00000 n +0000310405 00000 n +0000310696 00000 n +0000311038 00000 n +0000311314 00000 n +0000311577 00000 n +0000311825 00000 n +0000312161 00000 n +0000312368 00000 n +0000312556 00000 n +0000312803 00000 n +0000313128 00000 n +0000313350 00000 n +0000313676 00000 n +0000314001 00000 n +0000314322 00000 n +0000314571 00000 n +0000314962 00000 n +0000315265 00000 n +0000315603 00000 n +0000315835 00000 n +0000316108 00000 n +0000316430 00000 n +0000316819 00000 n +0000317180 00000 n +0000317493 00000 n +0000317779 00000 n +0000318059 00000 n +0000318323 00000 n +0000318603 00000 n +0000318874 00000 n +0000319097 00000 n +0000319416 00000 n +0000319653 00000 n +0000319857 00000 n +0000320089 00000 n +0000320367 00000 n +0000320557 00000 n +0000320816 00000 n +0000321045 00000 n +0000321315 00000 n +0000321593 00000 n +0000321877 00000 n +0000322099 00000 n +0000322376 00000 n +0000322609 00000 n +0000322844 00000 n +0000323109 00000 n +0000323424 00000 n +0000323716 00000 n +0000324017 00000 n +0000324282 00000 n +0000324552 00000 n +0000324755 00000 n +0000325065 00000 n +0000325382 00000 n +0000325652 00000 n +0000325960 00000 n +0000326285 00000 n +0000326564 00000 n +0000326911 00000 n +0000327484 00000 n +0000328013 00000 n +0000328526 00000 n +0000329693 00000 n +0000329895 00000 n +0000330265 00000 n +0000330654 00000 n +0000330831 00000 n +0000331170 00000 n +0000331439 00000 n +0000331815 00000 n +0000332186 00000 n +0000332442 00000 n +0000332814 00000 n +0000333337 00000 n +0000333561 00000 n +0000333749 00000 n +0000333936 00000 n +0000341079 00000 n +0000341314 00000 n +0000348422 00000 n +0000349876 00000 n +0000349996 00000 n +0000350084 00000 n +0000350157 00000 n +0000361610 00000 n +0000361784 00000 n +0000361955 00000 n +0000362124 00000 n +0000362293 00000 n +0000362464 00000 n +0000362634 00000 n +0000362805 00000 n +0000362970 00000 n +0000363153 00000 n +0000363356 00000 n +0000363577 00000 n +0000363801 00000 n +0000364036 00000 n +0000364262 00000 n +0000364515 00000 n +0000364790 00000 n +0000365065 00000 n +0000365340 00000 n +0000365617 00000 n +0000365885 00000 n +0000366156 00000 n +0000366425 00000 n +0000366692 00000 n +0000366959 00000 n +0000367226 00000 n +0000367495 00000 n +0000367770 00000 n +0000368039 00000 n +0000368216 00000 n +0000368334 00000 n +0000368458 00000 n +0000368595 00000 n +0000368737 00000 n +0000368868 00000 n +0000368989 00000 n +0000369029 00000 n +0000369161 00000 n trailer << /Size 1489 /Root 1487 0 R /Info 1488 0 R -/ID [ ] >> +/ID [ ] >> startxref -369568 +369488 %%EOF diff --git a/doc/README.sgml b/doc/README.sgml index e7553e0bd..06ec545c3 100644 --- a/doc/README.sgml +++ b/doc/README.sgml @@ -6,7 +6,7 @@ by , version 1.0-dev, XXX XX, 2011 -This document is the user's manual to use . +This document is the user's manual to use . @@ -488,7 +488,7 @@ name="MS10-015">).

        April 10, release sqlmap +url="http://www.sqlmap.org/#developers"> release sqlmap 0.9 featuring a totally rewritten and powerful SQL injection detection engine, the possibility to connect directly to a database server, support for time-based blind SQL injection and error-based SQL @@ -500,7 +500,7 @@ injection, support for four new database management systems and much more.

        December, have enhanced sqlmap a +url="http://www.sqlmap.org/#developers"> have enhanced sqlmap a lot during the whole year and prepare to release sqlmap 0.9 within the first quarter of 2011. June 3, Bernardo a talk titled Got database access? Own the network! at AthCon 2010 in Athens (Greece). March 14, release stable version of +url="http://www.sqlmap.org/#developers"> release stable version of sqlmap 0.8 featuring many features. Amongst these, support to enumerate and dump all databases' tables containing user provided column(s), stabilization and enhancements to the takeover functionalities, @@ -537,7 +537,7 @@ achieved during these first three years of the project and launches a call for developers. December 4, sqlmap-devel mailing list has been merged into -sqlmap-users . +sqlmap-users . November 20, Bernardo and Guido present again their research on stealth database server takeover at CONfidence 2009 in Warsaw, @@ -662,7 +662,7 @@ more options to enumerate and dump specific information are added, brand new installation packages for Debian, Red Hat, Windows and much more. August, two public are created on SourceForge. +url="http://www.sqlmap.org/#ml"> are created on SourceForge. January, sqlmap subversion development repository is moved away from SourceForge and goes private for a while. @@ -763,7 +763,7 @@ $ svn update

        This is strongly recommended before reporting any bug to the -. +. Usage @@ -773,7 +773,7 @@ This is strongly recommended before reporting any bug to the $ python sqlmap.py -h sqlmap/1.0 - automatic SQL injection and database takeover tool - http://sqlmap.sourceforge.net + http://www.sqlmap.org Usage: python sqlmap.py [options] @@ -1162,7 +1162,7 @@ By default sqlmap performs HTTP requests with the following User-Agent header value: -sqlmap/0.9 (http://sqlmap.sourceforge.net) +sqlmap/0.9 (http://www.sqlmap.org)

        @@ -3142,7 +3142,7 @@ clicking on Update.

        This is strongly recommended before reporting any bug to the -. +. Save options in a configuration INI file @@ -3314,7 +3314,7 @@ Do you really want to know?

        sqlmap is released under the terms of the . -sqlmap is copyrighted by its . +sqlmap is copyrighted by its . Disclaimer diff --git a/extra/__init__.py b/extra/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/extra/__init__.py +++ b/extra/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/extra/cloak/__init__.py b/extra/cloak/__init__.py index 70b6d1cc2..3b898a722 100755 --- a/extra/cloak/__init__.py +++ b/extra/cloak/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/extra/cloak/cloak.py b/extra/cloak/cloak.py index 051b28113..6e027f6ff 100755 --- a/extra/cloak/cloak.py +++ b/extra/cloak/cloak.py @@ -5,7 +5,7 @@ $Id$ cloak.py - Simple file encryption/compression utility -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/extra/dbgtool/__init__.py b/extra/dbgtool/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/extra/dbgtool/__init__.py +++ b/extra/dbgtool/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/extra/dbgtool/dbgtool.py b/extra/dbgtool/dbgtool.py index 759de2bda..07f8b9689 100755 --- a/extra/dbgtool/dbgtool.py +++ b/extra/dbgtool/dbgtool.py @@ -5,7 +5,7 @@ $Id$ dbgtool.py - Portable executable to ASCII debug script converter -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/extra/msfauxmod/sqlmap.rb b/extra/msfauxmod/sqlmap.rb index ad6b19ff8..38f8653a4 100644 --- a/extra/msfauxmod/sqlmap.rb +++ b/extra/msfauxmod/sqlmap.rb @@ -39,7 +39,7 @@ class Metasploit3 < Msf::Auxiliary 'Version' => '$Revision: 9212 $', 'References' => [ - ['URL', 'http://sqlmap.sourceforge.net'], + ['URL', 'http://www.sqlmap.org'], ] )) diff --git a/extra/mssqlsig/update.py b/extra/mssqlsig/update.py index 071561abe..9aae0d7ae 100644 --- a/extra/mssqlsig/update.py +++ b/extra/mssqlsig/update.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/extra/safe2bin/__init__.py b/extra/safe2bin/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/extra/safe2bin/__init__.py +++ b/extra/safe2bin/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/extra/safe2bin/safe2bin.py b/extra/safe2bin/safe2bin.py index 14e5898f9..ff2ee07c0 100755 --- a/extra/safe2bin/safe2bin.py +++ b/extra/safe2bin/safe2bin.py @@ -5,7 +5,7 @@ $Id$ safe2bin.py - Simple safe(hex) to binary format converter -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/extra/shutils/blanks.sh b/extra/shutils/blanks.sh index 2b640a41a..85d7c8a31 100755 --- a/extra/shutils/blanks.sh +++ b/extra/shutils/blanks.sh @@ -2,7 +2,7 @@ # $Id$ -# Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +# Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) # See the file 'doc/COPYING' for copying permission # Removes trailing spaces from blank lines inside project files diff --git a/extra/shutils/duplicates.py b/extra/shutils/duplicates.py index c9c299b02..2181aa7af 100644 --- a/extra/shutils/duplicates.py +++ b/extra/shutils/duplicates.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/extra/shutils/id.sh b/extra/shutils/id.sh index 5320610fa..3c53f1672 100755 --- a/extra/shutils/id.sh +++ b/extra/shutils/id.sh @@ -2,7 +2,7 @@ # $Id$ -# Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +# Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) # See the file 'doc/COPYING' for copying permission # Adds SVN property 'Id' to project files diff --git a/extra/socks/__init__.py b/extra/socks/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/extra/socks/__init__.py +++ b/extra/socks/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/extra/sqlharvest/__init__.py b/extra/sqlharvest/__init__.py index 70b6d1cc2..3b898a722 100755 --- a/extra/sqlharvest/__init__.py +++ b/extra/sqlharvest/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/extra/sqlharvest/sqlharvest.py b/extra/sqlharvest/sqlharvest.py index 3c4fb246d..23f51723a 100644 --- a/extra/sqlharvest/sqlharvest.py +++ b/extra/sqlharvest/sqlharvest.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/__init__.py b/lib/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/lib/__init__.py +++ b/lib/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/controller/__init__.py b/lib/controller/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/lib/controller/__init__.py +++ b/lib/controller/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/controller/action.py b/lib/controller/action.py index 2ea42556f..4f2bb0863 100644 --- a/lib/controller/action.py +++ b/lib/controller/action.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/controller/checks.py b/lib/controller/checks.py index a3623e254..d86ece261 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/controller/controller.py b/lib/controller/controller.py index 3fbda9739..e9d531609 100644 --- a/lib/controller/controller.py +++ b/lib/controller/controller.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/controller/handler.py b/lib/controller/handler.py index 1b3117c19..b69477253 100644 --- a/lib/controller/handler.py +++ b/lib/controller/handler.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/__init__.py b/lib/core/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/lib/core/__init__.py +++ b/lib/core/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/agent.py b/lib/core/agent.py index c1ba3833d..c77efb313 100644 --- a/lib/core/agent.py +++ b/lib/core/agent.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/common.py b/lib/core/common.py index b96ff1a0d..6b67afb18 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/convert.py b/lib/core/convert.py index 6746a1fa6..97fd678a0 100644 --- a/lib/core/convert.py +++ b/lib/core/convert.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/data.py b/lib/core/data.py index 8336ff00f..53b5635bb 100644 --- a/lib/core/data.py +++ b/lib/core/data.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/datatype.py b/lib/core/datatype.py index 1405b7c1e..33402a394 100644 --- a/lib/core/datatype.py +++ b/lib/core/datatype.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/defaults.py b/lib/core/defaults.py index fd42db4c4..4e4617578 100644 --- a/lib/core/defaults.py +++ b/lib/core/defaults.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/dicts.py b/lib/core/dicts.py index d097e4a74..6d970c8e9 100644 --- a/lib/core/dicts.py +++ b/lib/core/dicts.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/dump.py b/lib/core/dump.py index a66c7461f..17d3108a2 100644 --- a/lib/core/dump.py +++ b/lib/core/dump.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/enums.py b/lib/core/enums.py index 6c86f2f1c..dfee64c5f 100644 --- a/lib/core/enums.py +++ b/lib/core/enums.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/exception.py b/lib/core/exception.py index b61c8f4e4..434b2a213 100644 --- a/lib/core/exception.py +++ b/lib/core/exception.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/option.py b/lib/core/option.py index 879bbdeb1..745335f7a 100644 --- a/lib/core/option.py +++ b/lib/core/option.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/optiondict.py b/lib/core/optiondict.py index 1b50f23d5..e9f32e810 100644 --- a/lib/core/optiondict.py +++ b/lib/core/optiondict.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/profiling.py b/lib/core/profiling.py index 995f40028..945d081ec 100644 --- a/lib/core/profiling.py +++ b/lib/core/profiling.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/progress.py b/lib/core/progress.py index 0754846de..a27dadbee 100644 --- a/lib/core/progress.py +++ b/lib/core/progress.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/readlineng.py b/lib/core/readlineng.py index 39be437a8..9987a004b 100644 --- a/lib/core/readlineng.py +++ b/lib/core/readlineng.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/replication.py b/lib/core/replication.py index d4bd1861e..a1ee8cab3 100644 --- a/lib/core/replication.py +++ b/lib/core/replication.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/revision.py b/lib/core/revision.py index e96811759..9b71fc9e8 100644 --- a/lib/core/revision.py +++ b/lib/core/revision.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/session.py b/lib/core/session.py index 6645a8915..335d86a9e 100644 --- a/lib/core/session.py +++ b/lib/core/session.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/settings.py b/lib/core/settings.py index 3bb7983a5..ce10eaddd 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/shell.py b/lib/core/shell.py index 2172d10e6..9038b2263 100644 --- a/lib/core/shell.py +++ b/lib/core/shell.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/subprocessng.py b/lib/core/subprocessng.py index 02bde695c..c4bf9f54b 100644 --- a/lib/core/subprocessng.py +++ b/lib/core/subprocessng.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/target.py b/lib/core/target.py index a009f7ec6..c09dab81e 100644 --- a/lib/core/target.py +++ b/lib/core/target.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/testing.py b/lib/core/testing.py index 14432ec3e..45d1b95a4 100644 --- a/lib/core/testing.py +++ b/lib/core/testing.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/threads.py b/lib/core/threads.py index 0266c14b5..1d45bc373 100644 --- a/lib/core/threads.py +++ b/lib/core/threads.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/unescaper.py b/lib/core/unescaper.py index 74b03bffa..ba5227f94 100644 --- a/lib/core/unescaper.py +++ b/lib/core/unescaper.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/core/update.py b/lib/core/update.py index b90bd8277..2451b2b74 100644 --- a/lib/core/update.py +++ b/lib/core/update.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/parse/__init__.py b/lib/parse/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/lib/parse/__init__.py +++ b/lib/parse/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/parse/banner.py b/lib/parse/banner.py index cfd083831..d3f2b5573 100644 --- a/lib/parse/banner.py +++ b/lib/parse/banner.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/parse/cmdline.py b/lib/parse/cmdline.py index edf5c890f..8fc6dbb31 100644 --- a/lib/parse/cmdline.py +++ b/lib/parse/cmdline.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/parse/configfile.py b/lib/parse/configfile.py index 1871d4033..f10f1caed 100644 --- a/lib/parse/configfile.py +++ b/lib/parse/configfile.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/parse/handler.py b/lib/parse/handler.py index 375099fd4..d40212fd3 100644 --- a/lib/parse/handler.py +++ b/lib/parse/handler.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/parse/headers.py b/lib/parse/headers.py index 7fcb56bca..8430ea29b 100644 --- a/lib/parse/headers.py +++ b/lib/parse/headers.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/parse/html.py b/lib/parse/html.py index 022c4053f..5cf43f98f 100644 --- a/lib/parse/html.py +++ b/lib/parse/html.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/parse/payloads.py b/lib/parse/payloads.py index c99c455de..c54e74361 100644 --- a/lib/parse/payloads.py +++ b/lib/parse/payloads.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/request/__init__.py b/lib/request/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/lib/request/__init__.py +++ b/lib/request/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/request/basic.py b/lib/request/basic.py index 2b93f48de..c946b2437 100644 --- a/lib/request/basic.py +++ b/lib/request/basic.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/request/basicauthhandler.py b/lib/request/basicauthhandler.py index d6567e571..8b3fa18c4 100644 --- a/lib/request/basicauthhandler.py +++ b/lib/request/basicauthhandler.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/request/certhandler.py b/lib/request/certhandler.py index 0691fb19a..af9310677 100644 --- a/lib/request/certhandler.py +++ b/lib/request/certhandler.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/request/comparison.py b/lib/request/comparison.py index 2b3fcbd65..ad626cfc3 100644 --- a/lib/request/comparison.py +++ b/lib/request/comparison.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/request/connect.py b/lib/request/connect.py index 0986a9509..716be2106 100644 --- a/lib/request/connect.py +++ b/lib/request/connect.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/request/direct.py b/lib/request/direct.py index d808ef69d..1dac86290 100644 --- a/lib/request/direct.py +++ b/lib/request/direct.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/request/inject.py b/lib/request/inject.py index 2f488a060..61911e100 100644 --- a/lib/request/inject.py +++ b/lib/request/inject.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/request/methodrequest.py b/lib/request/methodrequest.py index 4df12f893..57207a815 100644 --- a/lib/request/methodrequest.py +++ b/lib/request/methodrequest.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/request/proxy.py b/lib/request/proxy.py index 5ffc188b2..c01c5a87c 100644 --- a/lib/request/proxy.py +++ b/lib/request/proxy.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/request/rangehandler.py b/lib/request/rangehandler.py index 0b96c018c..d0902a2c8 100644 --- a/lib/request/rangehandler.py +++ b/lib/request/rangehandler.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/request/redirecthandler.py b/lib/request/redirecthandler.py index 8ac7ab9b4..458f598ad 100644 --- a/lib/request/redirecthandler.py +++ b/lib/request/redirecthandler.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/request/templates.py b/lib/request/templates.py index f15a18265..c0b06c754 100644 --- a/lib/request/templates.py +++ b/lib/request/templates.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/takeover/__init__.py b/lib/takeover/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/lib/takeover/__init__.py +++ b/lib/takeover/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/takeover/abstraction.py b/lib/takeover/abstraction.py index 759197939..5514df4b8 100644 --- a/lib/takeover/abstraction.py +++ b/lib/takeover/abstraction.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/takeover/icmpsh.py b/lib/takeover/icmpsh.py index 2c83c5046..9b3818cf8 100644 --- a/lib/takeover/icmpsh.py +++ b/lib/takeover/icmpsh.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/takeover/metasploit.py b/lib/takeover/metasploit.py index ad2338889..9ec4e00db 100644 --- a/lib/takeover/metasploit.py +++ b/lib/takeover/metasploit.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/takeover/registry.py b/lib/takeover/registry.py index 0c1d843b8..2bb70961c 100644 --- a/lib/takeover/registry.py +++ b/lib/takeover/registry.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/takeover/udf.py b/lib/takeover/udf.py index 8c0fcb292..42d4eadd8 100644 --- a/lib/takeover/udf.py +++ b/lib/takeover/udf.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/takeover/web.py b/lib/takeover/web.py index fa725c164..a76a25ec1 100644 --- a/lib/takeover/web.py +++ b/lib/takeover/web.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/takeover/xp_cmdshell.py b/lib/takeover/xp_cmdshell.py index d685fef33..cb125f66c 100644 --- a/lib/takeover/xp_cmdshell.py +++ b/lib/takeover/xp_cmdshell.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/techniques/__init__.py b/lib/techniques/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/lib/techniques/__init__.py +++ b/lib/techniques/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/techniques/blind/__init__.py b/lib/techniques/blind/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/lib/techniques/blind/__init__.py +++ b/lib/techniques/blind/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/techniques/blind/inference.py b/lib/techniques/blind/inference.py index f11855cd4..a21ccb30f 100644 --- a/lib/techniques/blind/inference.py +++ b/lib/techniques/blind/inference.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/techniques/brute/__init__.py b/lib/techniques/brute/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/lib/techniques/brute/__init__.py +++ b/lib/techniques/brute/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/techniques/brute/use.py b/lib/techniques/brute/use.py index f87ef0d0a..25caf5c37 100644 --- a/lib/techniques/brute/use.py +++ b/lib/techniques/brute/use.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/techniques/error/__init__.py b/lib/techniques/error/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/lib/techniques/error/__init__.py +++ b/lib/techniques/error/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/techniques/error/use.py b/lib/techniques/error/use.py index 47828f474..0f9dde4a0 100644 --- a/lib/techniques/error/use.py +++ b/lib/techniques/error/use.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/techniques/union/__init__.py b/lib/techniques/union/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/lib/techniques/union/__init__.py +++ b/lib/techniques/union/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/techniques/union/test.py b/lib/techniques/union/test.py index a883d3b51..f074b41e2 100644 --- a/lib/techniques/union/test.py +++ b/lib/techniques/union/test.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/techniques/union/use.py b/lib/techniques/union/use.py index 4aa1a3a76..aea8267e1 100644 --- a/lib/techniques/union/use.py +++ b/lib/techniques/union/use.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/utils/__init__.py b/lib/utils/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/lib/utils/__init__.py +++ b/lib/utils/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/utils/checkpayload.py b/lib/utils/checkpayload.py index dce6f9057..aff9d02b5 100644 --- a/lib/utils/checkpayload.py +++ b/lib/utils/checkpayload.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/utils/crawler.py b/lib/utils/crawler.py index caf54ae20..7fed32006 100644 --- a/lib/utils/crawler.py +++ b/lib/utils/crawler.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/utils/deps.py b/lib/utils/deps.py index e577f3d35..db95df5f9 100644 --- a/lib/utils/deps.py +++ b/lib/utils/deps.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/utils/getch.py b/lib/utils/getch.py index 6d4e470d4..0cb019efb 100644 --- a/lib/utils/getch.py +++ b/lib/utils/getch.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/utils/google.py b/lib/utils/google.py index 638df835f..ae0e25462 100644 --- a/lib/utils/google.py +++ b/lib/utils/google.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/utils/hash.py b/lib/utils/hash.py index e24a0eb4b..8c5f10532 100644 --- a/lib/utils/hash.py +++ b/lib/utils/hash.py @@ -4,7 +4,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/utils/resume.py b/lib/utils/resume.py index e03cdbbec..718d4b73a 100644 --- a/lib/utils/resume.py +++ b/lib/utils/resume.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/lib/utils/timeout.py b/lib/utils/timeout.py index ab0909864..45dcf53e8 100644 --- a/lib/utils/timeout.py +++ b/lib/utils/timeout.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/__init__.py b/plugins/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/plugins/__init__.py +++ b/plugins/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/__init__.py b/plugins/dbms/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/plugins/dbms/__init__.py +++ b/plugins/dbms/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/access/__init__.py b/plugins/dbms/access/__init__.py index 53805b446..43c93eaef 100644 --- a/plugins/dbms/access/__init__.py +++ b/plugins/dbms/access/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/access/connector.py b/plugins/dbms/access/connector.py index a63391362..d0cd0d502 100644 --- a/plugins/dbms/access/connector.py +++ b/plugins/dbms/access/connector.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/access/enumeration.py b/plugins/dbms/access/enumeration.py index 0254a92ee..cd7171132 100644 --- a/plugins/dbms/access/enumeration.py +++ b/plugins/dbms/access/enumeration.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/access/filesystem.py b/plugins/dbms/access/filesystem.py index bc22daf2e..e59806e1a 100644 --- a/plugins/dbms/access/filesystem.py +++ b/plugins/dbms/access/filesystem.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/access/fingerprint.py b/plugins/dbms/access/fingerprint.py index 6a2c92ba9..0652b4d96 100644 --- a/plugins/dbms/access/fingerprint.py +++ b/plugins/dbms/access/fingerprint.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/access/syntax.py b/plugins/dbms/access/syntax.py index 5b73a99d0..e33564e87 100644 --- a/plugins/dbms/access/syntax.py +++ b/plugins/dbms/access/syntax.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/access/takeover.py b/plugins/dbms/access/takeover.py index 1b2083fd6..8e85f46b0 100644 --- a/plugins/dbms/access/takeover.py +++ b/plugins/dbms/access/takeover.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/db2/__init__.py b/plugins/dbms/db2/__init__.py index d699ecccc..cf049d6c7 100644 --- a/plugins/dbms/db2/__init__.py +++ b/plugins/dbms/db2/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/db2/connector.py b/plugins/dbms/db2/connector.py index 8de77e2a9..00e0ad865 100644 --- a/plugins/dbms/db2/connector.py +++ b/plugins/dbms/db2/connector.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/db2/enumeration.py b/plugins/dbms/db2/enumeration.py index 974e87746..da4354b84 100644 --- a/plugins/dbms/db2/enumeration.py +++ b/plugins/dbms/db2/enumeration.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/db2/filesystem.py b/plugins/dbms/db2/filesystem.py index c28a3da1a..4c2d39bb7 100644 --- a/plugins/dbms/db2/filesystem.py +++ b/plugins/dbms/db2/filesystem.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/db2/fingerprint.py b/plugins/dbms/db2/fingerprint.py index 3951c7058..dd7843979 100644 --- a/plugins/dbms/db2/fingerprint.py +++ b/plugins/dbms/db2/fingerprint.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/db2/syntax.py b/plugins/dbms/db2/syntax.py index 4fc810056..fbc65c2a8 100644 --- a/plugins/dbms/db2/syntax.py +++ b/plugins/dbms/db2/syntax.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/db2/takeover.py b/plugins/dbms/db2/takeover.py index d490276ec..8b862a342 100644 --- a/plugins/dbms/db2/takeover.py +++ b/plugins/dbms/db2/takeover.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/firebird/__init__.py b/plugins/dbms/firebird/__init__.py index 94131b98f..43656fa29 100644 --- a/plugins/dbms/firebird/__init__.py +++ b/plugins/dbms/firebird/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/firebird/connector.py b/plugins/dbms/firebird/connector.py index 65d5b3e5e..6b3f45510 100644 --- a/plugins/dbms/firebird/connector.py +++ b/plugins/dbms/firebird/connector.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/firebird/enumeration.py b/plugins/dbms/firebird/enumeration.py index b84ae0596..30cf21338 100644 --- a/plugins/dbms/firebird/enumeration.py +++ b/plugins/dbms/firebird/enumeration.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/firebird/filesystem.py b/plugins/dbms/firebird/filesystem.py index 31963a4cd..76a6a8a10 100644 --- a/plugins/dbms/firebird/filesystem.py +++ b/plugins/dbms/firebird/filesystem.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/firebird/fingerprint.py b/plugins/dbms/firebird/fingerprint.py index b6e2b5c93..a4bb55785 100644 --- a/plugins/dbms/firebird/fingerprint.py +++ b/plugins/dbms/firebird/fingerprint.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/firebird/syntax.py b/plugins/dbms/firebird/syntax.py index 61c4c3f27..cbcbddc2e 100644 --- a/plugins/dbms/firebird/syntax.py +++ b/plugins/dbms/firebird/syntax.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/firebird/takeover.py b/plugins/dbms/firebird/takeover.py index d335909d0..1be727ebf 100644 --- a/plugins/dbms/firebird/takeover.py +++ b/plugins/dbms/firebird/takeover.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/maxdb/__init__.py b/plugins/dbms/maxdb/__init__.py index 30900325e..262a91615 100644 --- a/plugins/dbms/maxdb/__init__.py +++ b/plugins/dbms/maxdb/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/maxdb/connector.py b/plugins/dbms/maxdb/connector.py index f756bab5b..5582e37b4 100644 --- a/plugins/dbms/maxdb/connector.py +++ b/plugins/dbms/maxdb/connector.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/maxdb/enumeration.py b/plugins/dbms/maxdb/enumeration.py index a14ba4dc9..3613e3156 100644 --- a/plugins/dbms/maxdb/enumeration.py +++ b/plugins/dbms/maxdb/enumeration.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/maxdb/filesystem.py b/plugins/dbms/maxdb/filesystem.py index 27c4f5a9f..237aa5c89 100644 --- a/plugins/dbms/maxdb/filesystem.py +++ b/plugins/dbms/maxdb/filesystem.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/maxdb/fingerprint.py b/plugins/dbms/maxdb/fingerprint.py index b60aa1ec6..9303d3ac0 100644 --- a/plugins/dbms/maxdb/fingerprint.py +++ b/plugins/dbms/maxdb/fingerprint.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/maxdb/syntax.py b/plugins/dbms/maxdb/syntax.py index b9218a1b4..a291695ba 100644 --- a/plugins/dbms/maxdb/syntax.py +++ b/plugins/dbms/maxdb/syntax.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/maxdb/takeover.py b/plugins/dbms/maxdb/takeover.py index d26ae2e33..65a17d640 100644 --- a/plugins/dbms/maxdb/takeover.py +++ b/plugins/dbms/maxdb/takeover.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/mssqlserver/__init__.py b/plugins/dbms/mssqlserver/__init__.py index b1e52c516..2824e5a04 100644 --- a/plugins/dbms/mssqlserver/__init__.py +++ b/plugins/dbms/mssqlserver/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/mssqlserver/connector.py b/plugins/dbms/mssqlserver/connector.py index fe344a24f..bdade1757 100644 --- a/plugins/dbms/mssqlserver/connector.py +++ b/plugins/dbms/mssqlserver/connector.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/mssqlserver/enumeration.py b/plugins/dbms/mssqlserver/enumeration.py index 90b79cb4f..3a1ee6415 100644 --- a/plugins/dbms/mssqlserver/enumeration.py +++ b/plugins/dbms/mssqlserver/enumeration.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/mssqlserver/filesystem.py b/plugins/dbms/mssqlserver/filesystem.py index ba6ee494e..2b798d216 100644 --- a/plugins/dbms/mssqlserver/filesystem.py +++ b/plugins/dbms/mssqlserver/filesystem.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/mssqlserver/fingerprint.py b/plugins/dbms/mssqlserver/fingerprint.py index c8024431f..1a752587f 100644 --- a/plugins/dbms/mssqlserver/fingerprint.py +++ b/plugins/dbms/mssqlserver/fingerprint.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/mssqlserver/syntax.py b/plugins/dbms/mssqlserver/syntax.py index 796462249..02c305c4a 100644 --- a/plugins/dbms/mssqlserver/syntax.py +++ b/plugins/dbms/mssqlserver/syntax.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/mssqlserver/takeover.py b/plugins/dbms/mssqlserver/takeover.py index 94bab78a2..a3139a04a 100644 --- a/plugins/dbms/mssqlserver/takeover.py +++ b/plugins/dbms/mssqlserver/takeover.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/mysql/__init__.py b/plugins/dbms/mysql/__init__.py index 7781c01ea..d945d8092 100644 --- a/plugins/dbms/mysql/__init__.py +++ b/plugins/dbms/mysql/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/mysql/connector.py b/plugins/dbms/mysql/connector.py index 80f35d2de..cad8c4ac3 100644 --- a/plugins/dbms/mysql/connector.py +++ b/plugins/dbms/mysql/connector.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/mysql/enumeration.py b/plugins/dbms/mysql/enumeration.py index 7915a7886..c7b65897a 100644 --- a/plugins/dbms/mysql/enumeration.py +++ b/plugins/dbms/mysql/enumeration.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/mysql/filesystem.py b/plugins/dbms/mysql/filesystem.py index 6973fed22..de4796ae5 100644 --- a/plugins/dbms/mysql/filesystem.py +++ b/plugins/dbms/mysql/filesystem.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/mysql/fingerprint.py b/plugins/dbms/mysql/fingerprint.py index d06b9a791..cc2b59c3f 100644 --- a/plugins/dbms/mysql/fingerprint.py +++ b/plugins/dbms/mysql/fingerprint.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/mysql/syntax.py b/plugins/dbms/mysql/syntax.py index 1c3f23c29..98ebc750f 100644 --- a/plugins/dbms/mysql/syntax.py +++ b/plugins/dbms/mysql/syntax.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/mysql/takeover.py b/plugins/dbms/mysql/takeover.py index 42f0cf49b..4d8dbe132 100644 --- a/plugins/dbms/mysql/takeover.py +++ b/plugins/dbms/mysql/takeover.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/oracle/__init__.py b/plugins/dbms/oracle/__init__.py index 800942cca..3ce571610 100644 --- a/plugins/dbms/oracle/__init__.py +++ b/plugins/dbms/oracle/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/oracle/connector.py b/plugins/dbms/oracle/connector.py index 1a185d965..1afb6c83b 100644 --- a/plugins/dbms/oracle/connector.py +++ b/plugins/dbms/oracle/connector.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/oracle/enumeration.py b/plugins/dbms/oracle/enumeration.py index 51e3914b7..ce39df1f7 100644 --- a/plugins/dbms/oracle/enumeration.py +++ b/plugins/dbms/oracle/enumeration.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/oracle/filesystem.py b/plugins/dbms/oracle/filesystem.py index 070f94ba6..96d7376eb 100644 --- a/plugins/dbms/oracle/filesystem.py +++ b/plugins/dbms/oracle/filesystem.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/oracle/fingerprint.py b/plugins/dbms/oracle/fingerprint.py index 5e754f40c..c8c4a5a59 100644 --- a/plugins/dbms/oracle/fingerprint.py +++ b/plugins/dbms/oracle/fingerprint.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/oracle/syntax.py b/plugins/dbms/oracle/syntax.py index 94707ad2d..f1745bfa1 100644 --- a/plugins/dbms/oracle/syntax.py +++ b/plugins/dbms/oracle/syntax.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/oracle/takeover.py b/plugins/dbms/oracle/takeover.py index 3f7f1d885..ac23357a2 100644 --- a/plugins/dbms/oracle/takeover.py +++ b/plugins/dbms/oracle/takeover.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/postgresql/__init__.py b/plugins/dbms/postgresql/__init__.py index 43d29f728..9824fc3be 100644 --- a/plugins/dbms/postgresql/__init__.py +++ b/plugins/dbms/postgresql/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/postgresql/connector.py b/plugins/dbms/postgresql/connector.py index 39bdeefc7..ae3bc39ac 100644 --- a/plugins/dbms/postgresql/connector.py +++ b/plugins/dbms/postgresql/connector.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/postgresql/enumeration.py b/plugins/dbms/postgresql/enumeration.py index f3af9a374..6b0136e00 100644 --- a/plugins/dbms/postgresql/enumeration.py +++ b/plugins/dbms/postgresql/enumeration.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/postgresql/filesystem.py b/plugins/dbms/postgresql/filesystem.py index d8d29b26a..7dc44855e 100644 --- a/plugins/dbms/postgresql/filesystem.py +++ b/plugins/dbms/postgresql/filesystem.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/postgresql/fingerprint.py b/plugins/dbms/postgresql/fingerprint.py index 280a44095..3f007f434 100644 --- a/plugins/dbms/postgresql/fingerprint.py +++ b/plugins/dbms/postgresql/fingerprint.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/postgresql/syntax.py b/plugins/dbms/postgresql/syntax.py index 5e431a057..852a43643 100644 --- a/plugins/dbms/postgresql/syntax.py +++ b/plugins/dbms/postgresql/syntax.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/postgresql/takeover.py b/plugins/dbms/postgresql/takeover.py index 859631df7..1dc1d8bb8 100644 --- a/plugins/dbms/postgresql/takeover.py +++ b/plugins/dbms/postgresql/takeover.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/sqlite/__init__.py b/plugins/dbms/sqlite/__init__.py index 85a752b68..d1f380606 100644 --- a/plugins/dbms/sqlite/__init__.py +++ b/plugins/dbms/sqlite/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/sqlite/connector.py b/plugins/dbms/sqlite/connector.py index da4e5e8f7..e3c22db5f 100644 --- a/plugins/dbms/sqlite/connector.py +++ b/plugins/dbms/sqlite/connector.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/sqlite/enumeration.py b/plugins/dbms/sqlite/enumeration.py index 85312d525..ddb4c0297 100644 --- a/plugins/dbms/sqlite/enumeration.py +++ b/plugins/dbms/sqlite/enumeration.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/sqlite/filesystem.py b/plugins/dbms/sqlite/filesystem.py index 427ed1990..4e15690c2 100644 --- a/plugins/dbms/sqlite/filesystem.py +++ b/plugins/dbms/sqlite/filesystem.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/sqlite/fingerprint.py b/plugins/dbms/sqlite/fingerprint.py index 18085f198..2e8e908da 100644 --- a/plugins/dbms/sqlite/fingerprint.py +++ b/plugins/dbms/sqlite/fingerprint.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/sqlite/syntax.py b/plugins/dbms/sqlite/syntax.py index 162bad26a..4babe035b 100644 --- a/plugins/dbms/sqlite/syntax.py +++ b/plugins/dbms/sqlite/syntax.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/sqlite/takeover.py b/plugins/dbms/sqlite/takeover.py index cc55e7159..e97a6bcc4 100644 --- a/plugins/dbms/sqlite/takeover.py +++ b/plugins/dbms/sqlite/takeover.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/sybase/__init__.py b/plugins/dbms/sybase/__init__.py index 9450e3a5e..a4e6704d9 100644 --- a/plugins/dbms/sybase/__init__.py +++ b/plugins/dbms/sybase/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/sybase/connector.py b/plugins/dbms/sybase/connector.py index fe344a24f..bdade1757 100644 --- a/plugins/dbms/sybase/connector.py +++ b/plugins/dbms/sybase/connector.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/sybase/enumeration.py b/plugins/dbms/sybase/enumeration.py index 52344a48f..378a38f5e 100644 --- a/plugins/dbms/sybase/enumeration.py +++ b/plugins/dbms/sybase/enumeration.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/sybase/filesystem.py b/plugins/dbms/sybase/filesystem.py index 288c8f477..c5e5c9a78 100644 --- a/plugins/dbms/sybase/filesystem.py +++ b/plugins/dbms/sybase/filesystem.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/sybase/fingerprint.py b/plugins/dbms/sybase/fingerprint.py index c2a37f382..e95a69cf7 100644 --- a/plugins/dbms/sybase/fingerprint.py +++ b/plugins/dbms/sybase/fingerprint.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/sybase/syntax.py b/plugins/dbms/sybase/syntax.py index 3fc85ee2a..9046d42e0 100644 --- a/plugins/dbms/sybase/syntax.py +++ b/plugins/dbms/sybase/syntax.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/dbms/sybase/takeover.py b/plugins/dbms/sybase/takeover.py index 456d23cfd..38c36b889 100644 --- a/plugins/dbms/sybase/takeover.py +++ b/plugins/dbms/sybase/takeover.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/generic/__init__.py b/plugins/generic/__init__.py index 70b6d1cc2..3b898a722 100644 --- a/plugins/generic/__init__.py +++ b/plugins/generic/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/generic/connector.py b/plugins/generic/connector.py index b2dc0a553..aa349707c 100644 --- a/plugins/generic/connector.py +++ b/plugins/generic/connector.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/generic/enumeration.py b/plugins/generic/enumeration.py index 98e5acc96..9c19bc424 100644 --- a/plugins/generic/enumeration.py +++ b/plugins/generic/enumeration.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/generic/filesystem.py b/plugins/generic/filesystem.py index 58f524f80..bb07632fb 100644 --- a/plugins/generic/filesystem.py +++ b/plugins/generic/filesystem.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/generic/fingerprint.py b/plugins/generic/fingerprint.py index d2910f99c..107d9aa85 100644 --- a/plugins/generic/fingerprint.py +++ b/plugins/generic/fingerprint.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/generic/misc.py b/plugins/generic/misc.py index b1480d503..993affec0 100644 --- a/plugins/generic/misc.py +++ b/plugins/generic/misc.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/generic/syntax.py b/plugins/generic/syntax.py index 52b5a1640..faf34045c 100644 --- a/plugins/generic/syntax.py +++ b/plugins/generic/syntax.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/plugins/generic/takeover.py b/plugins/generic/takeover.py index 80326d64d..44ccfd865 100644 --- a/plugins/generic/takeover.py +++ b/plugins/generic/takeover.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/sqlmap.py b/sqlmap.py index dbc9cbad2..71943ec93 100755 --- a/sqlmap.py +++ b/sqlmap.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/__init__.py b/tamper/__init__.py index 47d5a015d..ffa486a93 100644 --- a/tamper/__init__.py +++ b/tamper/__init__.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/apostrophemask.py b/tamper/apostrophemask.py index 1e899e3f8..a921e43fb 100644 --- a/tamper/apostrophemask.py +++ b/tamper/apostrophemask.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/appendnullbyte.py b/tamper/appendnullbyte.py index ba0b23a97..d330832e2 100644 --- a/tamper/appendnullbyte.py +++ b/tamper/appendnullbyte.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/between.py b/tamper/between.py index 5a112fb56..77d3f5a66 100644 --- a/tamper/between.py +++ b/tamper/between.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/chardoubleencode.py b/tamper/chardoubleencode.py index 57e0028aa..40dcb5f94 100644 --- a/tamper/chardoubleencode.py +++ b/tamper/chardoubleencode.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/charencode.py b/tamper/charencode.py index 39ac1cdd3..051ebc191 100644 --- a/tamper/charencode.py +++ b/tamper/charencode.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/charunicodeencode.py b/tamper/charunicodeencode.py index 7a7497e1d..fa34bab93 100644 --- a/tamper/charunicodeencode.py +++ b/tamper/charunicodeencode.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/equaltolike.py b/tamper/equaltolike.py index 513504c1f..2c9c55d3c 100644 --- a/tamper/equaltolike.py +++ b/tamper/equaltolike.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/halfversionedmorekeywords.py b/tamper/halfversionedmorekeywords.py index 88a64f485..4eef80031 100644 --- a/tamper/halfversionedmorekeywords.py +++ b/tamper/halfversionedmorekeywords.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/ifnull2ifisnull.py b/tamper/ifnull2ifisnull.py index 18946befa..18f596a94 100644 --- a/tamper/ifnull2ifisnull.py +++ b/tamper/ifnull2ifisnull.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/multiplespaces.py b/tamper/multiplespaces.py index 641127e3a..b0eead954 100644 --- a/tamper/multiplespaces.py +++ b/tamper/multiplespaces.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/randomcase.py b/tamper/randomcase.py index 4b027453f..e1cef816a 100644 --- a/tamper/randomcase.py +++ b/tamper/randomcase.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/randomcomments.py b/tamper/randomcomments.py index 62597fc72..9ea716a27 100644 --- a/tamper/randomcomments.py +++ b/tamper/randomcomments.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/space2comment.py b/tamper/space2comment.py index e6600ab6b..89f3dbca7 100644 --- a/tamper/space2comment.py +++ b/tamper/space2comment.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/space2extrarandomblank.py b/tamper/space2extrarandomblank.py index a91b53489..d9b08220d 100644 --- a/tamper/space2extrarandomblank.py +++ b/tamper/space2extrarandomblank.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/space2plus.py b/tamper/space2plus.py index d148bc266..1410c2841 100644 --- a/tamper/space2plus.py +++ b/tamper/space2plus.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/space2pound.py b/tamper/space2pound.py index 7f1241ec8..76b1aa988 100644 --- a/tamper/space2pound.py +++ b/tamper/space2pound.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/space2randomblank.py b/tamper/space2randomblank.py index cab611ded..b23a725b1 100644 --- a/tamper/space2randomblank.py +++ b/tamper/space2randomblank.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/versionedkeywords.py b/tamper/versionedkeywords.py index 246d7d011..2615911bb 100644 --- a/tamper/versionedkeywords.py +++ b/tamper/versionedkeywords.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """ diff --git a/tamper/versionedmorekeywords.py b/tamper/versionedmorekeywords.py index 93c8545b2..a32a7413c 100644 --- a/tamper/versionedmorekeywords.py +++ b/tamper/versionedmorekeywords.py @@ -3,7 +3,7 @@ """ $Id$ -Copyright (c) 2006-2011 sqlmap developers (http://sqlmap.sourceforge.net/) +Copyright (c) 2006-2011 sqlmap developers (http://www.sqlmap.org/) See the file 'doc/COPYING' for copying permission """